
/* ============================================
   ANALITIX - ESTILOS CORPORATIVOS DE SERVICIOS
   ============================================ */

/* ==================
   VARIABLES GLOBALES
   ================== */
:root {
  --brand-green: #10B981;
  --brand-green-dark: #059669;
  --brand-green-light: #D1FAE5;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --border-color: #e5e7eb;
  --shadow-soft: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-hover: 0 4px 12px rgba(16, 185, 129, 0.15);
  --spacing-section: 2rem;
  --spacing-reduced: 1.25rem;
}

/* ==================
   BULLETS CUADRADOS VERDES
   ================== */
.service-section ul li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: var(--brand-green);
  margin-right: 10px;
  vertical-align: middle;
  flex-shrink: 0;
}

.service-section ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.65rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

.service-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0.75rem 0;
}

/* ==================
   GRID DE 2 Y 3 COLUMNAS
   ================== */
.service-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.25rem 0;
}

.service-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 1.25rem 0;
}

.service-grid-item {
  background: #fff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.service-grid-item:hover {
  border-color: var(--brand-green);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.service-grid-item h4 {
  color: var(--brand-green);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.service-grid-item p,
.service-grid-item ul {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-dark);
}

/* ==================
   TÍTULOS DE SECCIÓN
   ================== */
.service-section h2 {
  color: var(--text-dark);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  border-bottom: 3px solid var(--brand-green);
  padding-bottom: 0.5rem;
}

.service-section h3 {
  color: var(--brand-green);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem 0;
}

.service-section h4 {
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.25rem 0 0.65rem 0;
}

/* ==================
   ESPACIADO REDUCIDO
   ================== */
.service-section {
  margin-bottom: var(--spacing-reduced);
  padding-bottom: var(--spacing-reduced);
}

.service-section p {
  margin-bottom: 0.75rem;
  line-height: 1.5;
  font-size: 0.95rem;
}

/* ==================
   CARDS ESPECIALES
   ================== */
.service-card {
  background: var(--brand-green-light);
  border-left: 4px solid var(--brand-green);
  border-radius: 8px;
  padding: 1rem;
  margin: 1rem 0;
}

.service-card h4 {
  color: var(--brand-green-dark);
  margin-bottom: 0.65rem;
  font-size: 1rem;
}

.service-card p {
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.4;
}

/* ==================
   ICONOS
   ================== */
.icon-black {
  width: 28px;
  height: 28px;
  color: #1f2937;
  stroke-width: 1.5;
}

.icon-green {
  width: 32px;
  height: 32px;
  color: var(--brand-green);
  stroke-width: 1.5;
}

/* ==================
   RESPONSIVE
   ================== */
@media (max-width: 768px) {
  .service-grid-2,
  .service-grid-3 {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .service-section h2 {
    font-size: 1.5rem;
  }
  
  .service-section h3 {
    font-size: 1.2rem;
  }
  
  .service-section h4 {
    font-size: 1rem;
  }
}
