/* =======================================
   RESET BÁSICO Y TIPOGRAFÍA GLOBAL
   ======================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  margin: 0;
  background-color: #0f172a; /* fondo oscuro elegante */
  color: #e5e7eb;
  line-height: 1.6;
}

/* Eliminar subrayado en links por defecto */
a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* =======================================
   CONTENEDOR Y SECCIONES
   ======================================= */

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.main-content {
  padding-top: 80px; /* Espacio bajo el header fijo */
}

.section {
  padding: 4.5rem 0;
}

.section--gray {
  background: #020617;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.9rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #e5e7eb;
}

/* =======================================
   HEADER Y NAVEGACIÓN
   ======================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(15, 23, 42, 0.96);
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
  backdrop-filter: blur(10px);
  z-index: 1000;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: 0.03em;
  color: #ffffff;
}

/* Navegación escritorio */
.nav {
  display: flex;
  gap: 1.5rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: #cbd5f5;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav a:hover {
  color: #ffffff;
  border-bottom-color: #1d4ed8;
}

.nav a.active {
  color: #ffffff;
  border-bottom-color: #38bdf8;
}

/* Botón hamburguesa (solo móvil) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  height: 2px;
  width: 100%;
  background: #e5e7eb;
  border-radius: 999px;
}

/* =======================================
   HERO PRINCIPAL CON IMAGEN (HOME)
   ======================================= */

.hero-home {
  width: 100%;
  height: 85vh;
  background-image: url("../img/home/hero.jpg"); /* Ajusta ruta si es necesario */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-overlay {
  width: 100%;
  height: 100%;
  background: rgba(2, 6, 23, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content {
  text-align: center;
  color: #ffffff;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* =======================================
   BOTONES
   ======================================= */

.btn,
.btn-primary,
.btn-outline,
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* Botón principal */
.btn-primary {
  background: linear-gradient(135deg, #1d4ed8, #38bdf8);
  color: #f9fafb;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 35px rgba(37, 99, 235, 0.55);
}

/* Botón outline claro (para fondos oscuros) */
.btn-outline {
  border-radius: 999px;
  border: 2px solid #e5e7eb;
  background: transparent;
  color: #e5e7eb;
}

.btn-outline:hover {
  background: rgba(226, 232, 240, 0.09);
}

/* Botón blanco (en hero) */
.btn-white {
  background: #ffffff;
  color: #21315c;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.5);
}

.btn-white:hover {
  background: #e5e7eb;
}

/* Grupo de botones del hero */
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* =======================================
   PILDORAS / CHIPS (logo-row)
   ======================================= */

.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.45);
  font-size: 0.8rem;
  color: #e5e7eb;
}

/* =======================================
   GRID UTILITIES
   ======================================= */

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
  align-items: flex-start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}

/* =======================================
   HOME - AJUSTES DE SERVICIOS
   ======================================= */
.services-grid .service-card { text-align: center; }
.services-actions { text-align: center; margin-top: 1.5rem; }

/* =======================================
   CARDS Y DESTACADOS
   ======================================= */

.service-card {
  background: radial-gradient(circle at top left, #1d283a, #020617);
  border-radius: 16px;
  padding: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.75);
}

.service-icon {
  font-size: 1.6rem;
  margin-bottom: 0.4rem;
}

.service-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.service-text {
  font-size: 0.95rem;
  color: #cbd5f5;
}

/* Cards genéricas */

.card {
  background: #020617;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.7);
}

.card--simple {
  background: #020617;
  border-radius: 14px;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.card__title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.card__list {
  list-style: none;
  padding-left: 0;
}

.card__list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #cbd5f5;
}

.card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

/* Tarjetas de productos destacados (highlight) */

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.2rem;
}

.highlight-card {
  background: radial-gradient(circle at top left, #1d283a, #020617);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.9);
}

.highlight-card.light {
  background: linear-gradient(135deg, #0f172a, #020617);
}

.highlight-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #38bdf8;
  margin-bottom: 0.5rem;
}

.highlight-title {
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.highlight-text {
  font-size: 0.95rem;
  color: #cbd5f5;
  margin-bottom: 0.9rem;
}

.highlight-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 1.2rem;
}

.highlight-list li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: #e5e7eb;
}

.highlight-list li::before {
  content: "▹";
  position: absolute;
  left: 0;
  color: #38bdf8;
}

/* =======================================
   SECCIÓN "CÓMO TRABAJAMOS" (steps)
   ======================================= */

.steps {
  display: grid;
  gap: 1.2rem;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step__number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #1d4ed8;
  color: #f9fafb;
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step__title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

/* =======================================
   SERVICE ROW (imagen izquierda, texto derecha)
   ======================================= */

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 4rem;
}

.service-row__image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.35);
}

.service-row__content h2,
.service-row__content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: #ffffff;
}

.service-row__content p {
  color: #cbd5f5;
  font-size: 1rem;
  line-height: 1.65;
}

/* =======================================
   FORMULARIOS (CONTACTO)
   ======================================= */

.contact-form {
  max-width: 640px;
  margin-top: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #e5e7eb;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.6);
  background: #020617;
  color: #e5e7eb;
  font-size: 0.95rem;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7280;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px rgba(56, 189, 248, 0.3);
}

.form-success {
  color: #4ade80;
}

/* =======================================
   IMÁGENES UTILITARIAS
   ======================================= */

.img-rounded {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.img-icon {
  width: 100%;
  max-width: 360px;
  border-radius: 12px;
  object-fit: cover;
}

/* =======================================
   FOOTER
   ======================================= */

.footer {
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding: 3rem 0 1.5rem 0;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.footer-text {
  font-size: 0.9rem;
  color: #9ca3af;
}

.footer-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 0.45rem;
}

.footer-links a {
  font-size: 0.9rem;
  color: #9ca3af;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #f9fafb;
}

.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

/* =======================================
   ANIMACIONES
   ======================================= */

.fade-in {
  opacity: 0;
  transform: translateY(25px);
  animation: fadeInUp 0.9s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =======================================
   RESPONSIVE
   ======================================= */

@media (max-width: 992px) {
  .services-grid,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .highlight-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .header__inner {
    height: 60px;
  }

  /* Mostrar hamburguesa y ocultar menú horizontal */
  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 60px;
    right: 0;
    left: 0;
    background: #020617;
    padding: 1rem 1.5rem 1.5rem 1.5rem;
    flex-direction: column;
    gap: 0.75rem;
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.25s ease;
  }

  .nav.nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .hero-home {
    height: 75vh;
  }

  .hero-title {
    font-size: 2.1rem;
  }

  .hero-subtitle {
    font-size: 1.05rem;
  }

  .grid-2,
  .grid-3,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-home {
    height: 70vh;
  }

  .hero-buttons {
    flex-direction: column;
  }
}
/* Badges genéricos */
.badge {
  display: inline-block;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge--primary {
  background: rgba(46, 117, 255, 0.12);
  color: #2e75ff;
}

/* Pills pequeños para “producto estrella” */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1px solid rgba(255, 215, 0, 0.35);
  background: rgba(255, 215, 0, 0.06);
  color: #b88700;
  white-space: nowrap;
}

.pill--star::before {
  content: "★";
  font-size: 0.75rem;
}
  
/* Para títulos dentro de cards con pill a la derecha */
.card__header-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
/* ========= AJUSTES GENERALES PRODUCTOS ========= */

/* Limitar protagonismo de las imágenes grandes */
.section--highlight .service-row,
#bendo .service-row,
#sipy .service-row {
  align-items: flex-start;
  gap: 2.25rem;
}

/* Imagen: 35–40% / Texto: 60–65% en desktop */
.section--highlight .service-row__image,
#bendo .service-row__image,
#sipy .service-row__image {
  flex: 0 0 38%;
}

.section--highlight .service-row__content,
#bendo .service-row__content,
#sipy .service-row__content {
  flex: 0 0 62%;
}

/* Imagen principal más contenida y elegante */
.service-row__image-main {
  width: 100%;
  max-width: 380px;
  max-height: 230px;
  margin: 0 auto;
  object-fit: cover;
  border-radius: 0.85rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* Contenedor de galería más limpio */
.service-row__image--gallery {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

/* Miniaturas realmente “mini” */
.service-row__thumbs {
  display: flex;
  gap: 0.4rem;
}

.service-row__thumbs img {
  flex: 1;
  max-height: 90px;      /* antes 54px */
  border-radius: 0.6rem;
  object-fit: cover;
  opacity: 0.95;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

@media (max-width: 960px) {
  .service-row__thumbs img {
    max-height: 70px;    /* más grandes también en móvil */
  }
}

.service-row__thumbs img:hover {
  transform: translateY(-2px);
  opacity: 1;
}

/* Hacer las cards internas más suaves */
.feature-card {
  padding: 0.9rem 1rem;
  border-radius: 0.8rem;
  background: rgba(15, 31, 74, 0.02);
  border: 1px solid rgba(15, 31, 74, 0.06);
}

/* Quitar sensación de “bloque enorme” en el hero de productos */
.hero-productos {
  padding: 4rem 0 3.2rem;
  background-size: cover;
  background-position: center;
}

.hero-productos__inner {
  gap: 2rem;
}

.hero-productos__card {
  padding: 1rem 1.2rem;
  border-radius: 1rem;
}

/* Cards clicables más delicadas */
.card--clickable {
  transform: translateY(0);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.card--clickable:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.09);
}

/* Responsive: en móviles las imágenes aún más controladas */
@media (max-width: 960px) {

  .section--highlight .service-row,
  #bendo .service-row,
  #sipy .service-row {
    flex-direction: column;
  }

  .section--highlight .service-row__image,
  #bendo .service-row__image,
  #sipy .service-row__image,
  .section--highlight .service-row__content,
  #bendo .service-row__content,
  #sipy .service-row__content {
    flex: 1 1 100%;
  }

  .service-row__image-main {
    max-width: 100%;
    max-height: 210px;
  }

  .service-row__thumbs img {
    max-height: 48px;
  }
}
/* =============================
   OPTIMIZACIÓN DE DISEÑO PRODUCTOS
   Imágenes + Texto Equilibrado
   ============================= */

/* Convertir la fila principal en un layout más balanceado */
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

/* Imagen principal más grande (45%) */
.service-row__image {
  flex: 0 0 45%;
  max-width: 45%;
}

/* Texto más compacto (55%) */
.service-row__content {
  flex: 0 0 55%;
  max-width: 55%;
  max-width: 600px; /* evita que la columna sea demasiado ancha */
}

/* Imagen principal elegante y proporcionada */
.service-row__image-main {
  width: 100%;
  height: 240px;       /* altura fija corporativa */
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* Thumbs más visibles y alineados */
.service-row__thumbs {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.6rem;
}

.service-row__thumbs img {
  width: calc(33.33% - 0.4rem);
  height: 65px;         /* más grandes */
  border-radius: 0.6rem;
  object-fit: cover;
  opacity: 0.9;
  transition: all 0.2s ease;
}

.service-row__thumbs img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Control del ancho del texto (muy importante para tu problema) */
.service-row__content p,
.service-row__content ul {
  max-width: 580px;  /* limita la longitud para que no se vea enorme */
  line-height: 1.5;
}

/* Títulos más elegantes */
.service-row__content h2 {
  margin-bottom: 0.6rem;
  line-height: 1.24;
}

/* Aumentar aire entre secciones */
.section {
  padding: 4.5rem 0;
}

/* Responsive */
@media (max-width: 960px) {
  .service-row {
    flex-direction: column;
  }

  .service-row__image,
  .service-row__content {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .service-row__image-main {
    height: 210px;
  }

  .service-row__thumbs img {
    height: 55px;
  }
}
/* =============================
   OPTIMIZACIÓN CORPORATIVA EQUIFAX
   Balance vertical y visual
   ============================= */

/* Ajuste del layout general */
.service-row {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
}

/* Imagen 45% / Texto 55% */
.service-row__image {
  flex: 0 0 45%;
  max-width: 45%;
}

.service-row__content {
  flex: 0 0 55%;
  max-width: 55%;
  max-width: 560px;
}

/* Imagen principal más alta (más corporativa) */
.service-row__image-main {
  width: 100%;
  height: 320px;        /* antes: 240px */
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 10px 28px rgba(0,0,0,0.18);
}

/* Thumbs más grandes para equilibrar */
.service-row__thumbs {
  margin-top: 1rem;
  display: flex;
  gap: 0.7rem;
}

.service-row__thumbs img {
  width: calc(33.33% - 0.5rem);
  height: 85px;         /* antes 65px */
  border-radius: 0.7rem;
  object-fit: cover;
  opacity: 0.9;
  transition: all 0.2s ease;
}

.service-row__thumbs img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Texto más compacto */
.service-row__content p {
  max-width: 550px;
  margin-bottom: 0.9rem; /* más compacto */
  line-height: 1.44;
}

.service-row__content ul {
  max-width: 550px;
  margin-bottom: 1.2rem;
}

/* Espaciado entre bloques de texto */
.feature-grid {
  margin-top: 1.2rem;
  gap: 1rem;
}

/* CTA más cerca (para evitar columna infinita) */
.cta-band {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
}

/* Responsive */
@media (max-width: 960px) {
  .service-row {
    flex-direction: column;
  }
  .service-row__image,
  .service-row__content {
    max-width: 100%;
  }
  .service-row__image-main {
    height: 240px;
  }
  .service-row__thumbs img {
    height: 70px;
  }
}
/* ==============================
   LAYOUT ESPECÍFICO PÁGINA PRODUCTOS
   (aislado por .page-productos)
   ============================== */

.page-productos .service-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.page-productos .service-row.service-row--reverse {
  flex-direction: row-reverse;
}

/* Columna izquierda: imágenes */
.page-productos .service-row__image {
  flex: 0 0 40%;
  max-width: 40%;
  display: flex;
  flex-direction: column;
}

/* Imagen principal Equifax / Bendo / Sipy */
.page-productos .service-row__image-main {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
}

/* Thumbnails debajo de la imagen */
.page-productos .service-row__thumbs {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.page-productos .service-row__thumbs img {
  flex: 1;
  height: 80px;
  object-fit: cover;
  border-radius: 0.65rem;
  opacity: 0.9;
  transition: 0.2s ease;
}

.page-productos .service-row__thumbs img:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Columna derecha: texto más compacto */
.page-productos .service-row__content {
  flex: 0 0 55%;
  max-width: 560px;
}

.page-productos .service-row__content p {
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 0.9rem;
}

.page-productos .service-row__content ul {
  margin-bottom: 1.1rem;
}

/* Feature cards dentro de productos */
.page-productos .feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.page-productos .feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
}

/* CTA band más ligera */
.page-productos .cta-band {
  margin-top: 1.2rem;
  padding: 1rem 1.2rem;
}

/* Responsive */
@media (max-width: 960px) {
  .page-productos .service-row,
  .page-productos .service-row.service-row--reverse {
    flex-direction: column;
  }

  .page-productos .service-row__image,
  .page-productos .service-row__content {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .page-productos .service-row__image-main {
    height: 220px;
  }

  .page-productos .service-row__thumbs img {
    height: 70px;
  }
}
/* Alternancia de fondos */
.product--light {
  background: #101a33;
}
.product--gray {
  background: #0c1427;
}

/* Animaciones alternadas */
.animate-left {
  animation: fadeLeft 0.6s ease;
}
.animate-right {
  animation: fadeRight 0.6s ease;
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeRight {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}
/* ==============================
   CTA CORPORATIVOS PARA PRODUCTOS
   ============================== */

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.65rem;
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

/* CTA PRINCIPAL – Azul eléctrico */
.cta-primary {
  background: linear-gradient(135deg, #2d7dff, #0a5ce2);
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(0, 115, 255, 0.35);
}
.cta-primary:hover {
  box-shadow: 0 10px 28px rgba(0, 115, 255, 0.45);
  transform: translateY(-2px);
}

/* CTA SECUNDARIO – Verde éxito */
.cta-success {
  background: linear-gradient(135deg, #3ecf8e, #16a26a);
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(26, 193, 125, 0.35);
}
.cta-success:hover {
  box-shadow: 0 10px 28px rgba(26, 193, 125, 0.45);
  transform: translateY(-2px);
}

/* CTA TERCIARIO – Naranja acción */
.cta-action {
  background: linear-gradient(135deg, #ff8c37, #ea6900);
  color: #ffffff !important;
  box-shadow: 0 8px 22px rgba(255, 132, 53, 0.35);
}
.cta-action:hover {
  box-shadow: 0 10px 28px rgba(255, 132, 53, 0.45);
  transform: translateY(-2px);
}

/* Alineación horizontal y orden */
.cta-wrapper {
  margin-top: 1.4rem;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 960px) {
  .cta-wrapper {
    justify-content: center;
  }
}
/* =============================
   HERO PRODUCTOS OPTIMIZADO
   ============================= */

.hero-productos--optimized {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-productos__visual {
  flex: 0 0 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 1.5rem;
}

.hero-equifax-card {
  background: linear-gradient(135deg, #1a2d54, #284b8f);
  padding: 1.6rem 2rem;
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
  width: 100%;
  text-align: right;
}

.hero-equifax-card h3 {
  font-size: 1.8rem;
  margin-bottom: 0.4rem;
}

.hero-equifax-card p {
  font-size: 1rem;
  opacity: 0.85;
}

.hero-mini-products {
  display: flex;
  gap: 1rem;
}

.mini-product-item {
  background: rgba(255,255,255,0.07);
  padding: 0.8rem 1.2rem;
  border-radius: 0.7rem;
  text-align: right;
  backdrop-filter: blur(6px);
}

.hero-productos__cta-group {
  margin-top: 1.4rem;
  display: flex;
  gap: 1rem;
}

/* CTA Outline */
.cta-outline {
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff !important;
  background: transparent;
}
.cta-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
/* ================================================
   NUEVA DISPOSICIÓN CORPORATIVA DE IMÁGENES
   ================================================ */

.product-gallery {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-gallery__main {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 1.2rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.product-gallery__thumbs {
  display: flex;
  gap: 0.8rem;
}

.product-gallery__thumbs img {
  flex: 1;
  height: 120px;
  object-fit: cover;
  border-radius: 0.8rem;
  opacity: 0.95;
  transition: 0.2s ease;
}

.product-gallery__thumbs img:hover {
  transform: translateY(-3px);
  opacity: 1;
}

.service-row__content {
  flex: 0 0 45%;
  max-width: 45%;
}

.service-row__content p {
  margin-bottom: 0.8rem;
  max-width: 540px;
}
/* =======================================
   LAYOUT ESPECÍFICO PARA PÁGINA SERVICIOS
   (Alineación centrada Desktop + Responsive)
   ======================================= */

.page-servicios .service-row {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 620px); /* imagen | texto */
  justify-content: center;
  align-items: center;
  column-gap: clamp(2rem, 4vw, 4rem);
  row-gap: 1.5rem;
  margin-bottom: clamp(3rem, 5vw, 4.5rem);
}
.page-servicios .service-row__content {
  max-width: 620px;
}

.page-servicios .service-row__content p {
  line-height: 1.6;
}

.page-servicios .service-row__content ul li {
  line-height: 1.55;
}


/* Alternancia izquierda / derecha */
.page-servicios .service-row.service-row--reverse .service-gallery {
  order: 2;
}
.page-servicios .service-row.service-row--reverse .service-row__content {
  order: 1;
}

/* Columna imagen */
.page-servicios .service-gallery {
  width: 100%;
}

.page-servicios .service-gallery__main {
  width: 100%;
  height: clamp(240px, 26vw, 340px);
  object-fit: cover;
  border-radius: 1.1rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
  margin: 0 auto; /* asegura centrado visual */
}

/* Columna texto */
.page-servicios .service-row__content {
  width: 100%;
}

.page-servicios .service-row__content p {
  margin-bottom: 0.8rem;
}

.page-servicios .service-row__content ul {
  margin-bottom: 1.1rem;
}

/* CTA */
.page-servicios .cta-wrapper {
  margin-top: 1.1rem;
  display: flex;
  justify-content: flex-start;
}

/* Responsive */
@media (max-width: 960px) {
  .page-servicios .service-row {
    grid-template-columns: 1fr;
    justify-content: stretch;
    row-gap: 1.2rem;
  }

  .page-servicios .service-row.service-row--reverse .service-gallery,
  .page-servicios .service-row.service-row--reverse .service-row__content {
    order: initial; /* natural en mobile */
  }

  .page-servicios .service-gallery__main {
    height: 220px;
  }

  .page-servicios .cta-wrapper {
    margin-top: 2.0rem;
    justify-content: center;
  }
}

/* =====================================================
   OPTIMIZACIÓN DE SEPARACIÓN ENTRE SECCIONES · SERVICIOS
   ===================================================== */

.page-servicios .section {
  padding-top: 4rem;     /* separación superior elegante */
  padding-bottom: 4rem;  /* separación inferior uniforme */
}

/* Ajuste adicional para las filas de cada servicio */
.page-servicios .service-row {
  margin-bottom: 3rem;   /* evita que imagen y texto queden muy "pegados" */
}

/* Última sección sin exceso de espacio */
.page-servicios section:last-of-type .service-row {
  margin-bottom: 1rem;
}
/* ================================
   Ritmo visual de Servicios
   Fondos alternados gris / navy
   ================================ */

/* Bloques con navy suave */
section#call-center,
section#activacion,
section#gestion-comercial,
section#sistema-gestion {
  background: #020617; /* navy muy oscuro */
}

/* Bloques con gris azulado un poco más claro */
section#consultoria,
section#colocacion-tarjetas,
section#aceptacion-cobertura {
  background: #050b18; /* gris-azul suave */
}
/* ================================
   Animaciones suaves · Servicios
   ================================ */

@keyframes fadeUp-soft {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estado base animado para cada sección de servicios */
section#call-center,
section#consultoria,
section#activacion,
section#colocacion-tarjetas,
section#gestion-comercial,
section#aceptacion-cobertura,
section#sistema-gestion {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp-soft 0.7s ease-out forwards;
}

/* Pequeño “stagger” para que no entren todas a la vez */
section#consultoria { animation-delay: 0.05s; }
section#activacion { animation-delay: 0.1s; }
section#colocacion-tarjetas { animation-delay: 0.15s; }
section#gestion-comercial { animation-delay: 0.2s; }
section#aceptacion-cobertura { animation-delay: 0.25s; }
section#sistema-gestion { animation-delay: 0.3s; }
/* ================================
   BANNER SUPERIOR · PÁGINA SERVICIOS
   ================================ */

.hero-servicios {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  color: #ffffff;
}

.hero-servicios__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/servicios/hero-servicios.jpg"); /* 🔥 aquí va tu imagen */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-servicios__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 2;
}

.hero-servicios__inner {
  position: relative;
  z-index: 3; /* contenido delante del banner */
  max-width: 760px;
}

.hero-servicios__content p {
  font-size: 1.2rem;
  line-height: 1.6;
}
/* ================================
   BANNER SUPERIOR · PÁGINA PRODUCTOS
   ================================ */

.hero-productos {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  color: #ffffff;
  overflow: hidden;
}

.hero-productos__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/productos/hero-productos.jpg"); /* 🔥 tu banner aquí */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-productos__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 2;
}

.hero-productos__inner {
  position: relative;
  z-index: 3;
}
/* ================================
   BANNER SUPERIOR · QUIÉNES SOMOS
   ================================ */

.hero-quienes {
  position: relative;
  padding-top: 6rem;
  padding-bottom: 6rem;
  overflow: hidden;
  color: #ffffff;
}

.hero-quienes__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/quienes/hero-quienes.jpg"); /* 🔥 tu imagen */
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-quienes__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.45) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 2;
}

.hero-quienes__inner {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.hero-quienes__text {
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 640px;
  margin-top: 1rem;
}
/* Centrar CTA solo en sección Equifax */
#equifax .cta-wrapper {
  display: flex;
  justify-content: left;
}

/* =======================================
   WHATSAPP FLOTANTE
   ======================================= */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  transition: transform 0.15s ease, filter 0.15s ease;
}
.whatsapp-float:hover{ transform: translateY(-2px); filter: brightness(1.02); }
.whatsapp-float:active{ transform: translateY(0); }
.whatsapp-float:focus-visible{
  outline: 3px solid rgba(255,255,255,0.95);
  outline-offset: 3px;
}
.whatsapp-float svg{
  width: 28px;
  height: 28px;
  fill: #ffffff;
}

/* =======================================
   CLIENTES (PRODUCTOS.HTML)
   ======================================= */
.clients-wrap { max-width: 980px; }
.clients-subtext { max-width: 920px; }
.client-logos{
  display:grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 1.4rem;
}
.client-logo-card{
  border-radius: 16px;
  padding: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  display:flex;
  align-items:center;
  justify-content:center;
  min-height: 92px;
}
.client-logo-card img{
  max-height: 46px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
@media (max-width: 1100px){
  .client-logos{ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 820px){
  .client-logos{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .client-logos{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .client-logo-card{ min-height: 86px; }
  .client-logo-card img{ max-height: 42px; }
}
