/* ================================
   RESET BÁSICO
================================ */
*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:#ffffff;
  color:#0f172a;
}

/* ================================
   DIVISOR
================================ */
.hr-deco {
    width:140px; 
    height:3px; 
    margin:40px auto;
    border:none; 
    border-radius:999px; 
    background:linear-gradient(90deg,rgba(30,64,175,.25),rgba(30,64,175,.9),rgba(30,64,175,.25));
    position:relative; 
    overflow:hidden;
}

/* brillo animado */
.hr-deco::after{
  content:"";
  position:absolute;
  top:0;
  left:-40%;
  width:40%;
  height:100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
  animation: hrShine 2.5s ease-in-out infinite;
}

@keyframes hrShine{
  0%   { left:-40%; opacity:0; }
  40%  { opacity:1; }
  100% { left:100%; opacity:0; }
}

/* Respeta usuarios con reduce motion */
@media (prefers-reduced-motion: reduce){
  .hr-deco::after{ animation:none; }
}

.grid{
    display:grid; 
    grid-template-columns:repeat(3,1fr); 
    gap:14px
    
}

/* Responsive */
@media (max-width: 520px){
  .hr-deco{
    width: 100px;
    margin: 28px auto;
  }
}

/* ================================
   WHATSAPP FLOAT — SOLO ICONO
================================ */
.wa-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 999;

  width: 56px;
  height: 56px;
  border-radius: 999px;

  display: grid;
  place-items: center;

  background: #1EBE57;
  color: #ffffff;
  text-decoration: none;

  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 18px 46px rgba(0,0,0,.20);

  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

/* Icono */
.wa-ico{
  font-size: 40px;
}

/* Hover */
.wa-float:hover{
  transform: translateY(-2px);
  background: #16a34a;
  box-shadow: 0 26px 64px rgba(0,0,0,.26);
}

/* Foco accesible */
.wa-float:focus-visible{
  outline: 3px solid rgba(30,64,175,.35);
  outline-offset: 3px;
}

/* Móvil: un poco más compacto */
@media (max-width: 520px){
  .wa-float{
    width: 52px;
    height: 52px;
    right: 12px;
    bottom: 12px;
  }
}

/* ================================
   HEADER
================================ */
.site-header{
  position: sticky;
  top: 0;
  z-index: 50;

  background: #1e40af;
  border-bottom: 1px solid rgba(255,255,255,.18);
}

/* contenedor */
.site-header .nav{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 14px 0;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* BRAND */
.brand{
  display: flex;
  align-items: center;
}

.brand-vertical{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

/* logo */
.brand-logo{
  width: 52px;
  height: 52px;
  border-radius: 14px;

  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);

  display: grid;
  place-items: center;
}

.brand-logo img{
  width: 80%;
  height: 80%;
  object-fit: contain;
}

/* subtítulo */
.brand-sub{
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,.95);
  letter-spacing: .3px;
}

/* NAV LINKS */
.navlinks{
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Botón catálogo (secundario) */
.btn-productosheader{
  background: rgba(255,255,255,.95);
  color: #1e40af;
  border: 1px solid rgba(255,255,255,.95);
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 14px;
  transition: transform .16s ease, background .16s ease;
}

.btn-productosheader:hover{
  background: #f8fafc;
  transform: translateY(-1px);
}

/* Botón WhatsApp (primario) */
.site-header .btn-primary{
  padding: 10px 14px;
  font-weight: 800;
  border-radius: 14px;
}

/* HEADER GLASS ON SCROLL */
.site-header{
  transition: background .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* Estado al hacer scroll */
.site-header.is-scrolled{
  background: rgba(30,64,175,.72); /* #1e40af pero translúcido */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 18px 46px rgba(0,0,0,.18);
  border-bottom: 1px solid rgba(255,255,255,.22);
}

/* LOGO ANIMACIÓN SUAVE */
.brand-logo{
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  will-change: transform;
}

/* leve “pop” cuando está en top (opcional) */
.site-header .brand-logo{
  animation: logoIntro .45s ease-out both;
}

@keyframes logoIntro{
  from{ transform: translateY(-4px) scale(.98); opacity: .0; }
  to{ transform: translateY(0) scale(1); opacity: 1; }
}

/* hover suave */
@media (hover:hover){
  .brand-logo:hover{
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 40px rgba(0,0,0,.18);
    background: rgba(255,255,255,.16);
    border-color: rgba(255,255,255,.32);
  }
}

/* Accesibilidad: reduce motion */
@media (prefers-reduced-motion: reduce){
  .site-header .brand-logo{ animation: none; }
  .brand-logo{ transition: none; }
  .site-header{ transition: none; }
}


/* responsive */
@media (max-width: 520px){
  .site-header .nav{
    padding: 12px 0;
  }

  .brand{
    width: 100%;
    justify-content: center;
  }

  .brand-vertical{
    text-align: center;
  }
}
/* HEADER — MÓVIL SOLO LOGO */
@media (max-width: 520px){

  /* Header más compacto */
  .site-header{
    padding: 0;
  }

  .site-header .nav{
    justify-content: center; /* centra todo */
    padding: 10px 0;
  }

  /* Oculta navegación */
  .navlinks{
    display: none !important;
  }

  /* Marca ocupa todo el ancho */
  .brand{
    width: 100%;
    justify-content: center;
  }

  /* Logo centrado */
  .brand-vertical{
    align-items: center;
    text-align: center;
  }

  /* Ajuste visual del logo */
  .brand-logo{
    width: 48px;
    height: 48px;
  }

  .brand-sub{
    font-size: 11px;
    opacity: .9;
  }
}


/* ================================
   HERO
================================ */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #ffffff;
  isolation: isolate;
}

/* CONTENIDO ENCIMA */
.hero > .container{
  position: relative;
  z-index: 2;
  width: min(1100px, 92%);
  margin: 0 auto;
}

/* FONDO ANIMADO */
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;

  /* 3 blobs con tamaño/posición propios */
  background-image:
    radial-gradient(circle, rgba(30,64,175,.70) 0%, rgba(30,64,175,0) 60%),
    radial-gradient(circle, rgba(34,197,94,.55) 0%, rgba(34,197,94,0) 62%),
    radial-gradient(circle, rgba(30,64,175,.55) 0%, rgba(30,64,175,0) 60%);

  background-repeat: no-repeat;
  background-size:
    900px 900px,
    850px 850px,
    1000px 1000px;

  background-position:
    10% 30%,
    90% 20%,
    50% 90%;

  filter: blur(22px);
  opacity: .95;

  animation: blobsMove 14s ease-in-out infinite;
}


/* CAPA DE SUAVIZADO (MUY LIGERA) */
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background: rgba(255,255,255,.06);
}

/* ANIMACIÓN  */
@keyframes blobsMove{
  0%{
    background-position:
      10% 30%,
      90% 20%,
      50% 90%;
  }
  50%{
    background-position:
      18% 40%,
      78% 28%,
      58% 78%;
  }
  100%{
    background-position:
      10% 30%,
      90% 20%,
      50% 90%;
  }
}


/* CONTENIDO */
.hero-content{
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.hero-badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  font-size:14px;
  color:#334155;
  background: rgba(255,255,255,.6);
  margin-bottom: 20px;
}

.hero-title{
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  margin-bottom: 12px;
}

.hero-lead{
  font-size: 16px;
  color:#475569;
  margin-bottom: 22px;
}

.hero-cta{
  display:flex;
  justify-content:center;
}

.hero-btn{
  padding:12px 22px;
  border-radius:14px;
  background:#1EBE57;
  color:#ffffff;
  font-weight:700;
  text-decoration:none;
}

/* ACCESIBILIDAD HERO */
@media (prefers-reduced-motion: reduce){
  .hero::before{
    animation:none;
  }
}

/* ================================
   SECCIÓN DE BENEFICIOS
================================ */
.benefits{
  padding: 56px 0;
}

.benefits-grid{
  width: min(1100px, 92%);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.benefit-card{
  position: relative;
  border-radius: 18px;
  padding: 18px 16px;
  background: rgba(255,255,255,.60);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 16px 36px rgba(0,0,0,.06);
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  overflow: hidden;
}

.benefit-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 22px 50px rgba(0,0,0,.10);
  border-color: rgba(15,23,42,.16);
}

.benefit-icon{
  width: 44px;
  height: 44px;
  margin: 12px auto 10px;
  border-radius: 14px;
  display:grid;
  place-items:center;
  font-size: 20px;
  background: rgba(255,255,255,.70);
  border: 1px solid rgba(15,23,42,.10);
}

.benefit-card h3{
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: .2px;
}

/* Responsive */
@media (max-width: 900px){
  .benefits-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .benefits{ padding: 40px 0; }
  .benefits-grid{ grid-template-columns: 1fr; }
}

/* ================================
   SECCIÓN DE PRODUCTOS
================================ */
.products{
  padding: 56px 0 72px;
}

.section-title{
  width: min(1100px, 92%);
  margin: 0 auto 18px;
  text-align: center;
}

.section-title h2{
  font-size: 26px;
  font-weight: 900;
  color:#0f172a;
  letter-spacing: .2px;
}

/* Grid de cards */
.grid{
  width: min(1100px, 92%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* Card producto */
.product-card{
  border-radius: 18px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 18px 44px rgba(0,0,0,.06);
  overflow: hidden;
  padding: 14px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 26px 60px rgba(0,0,0,.10);
  border-color: rgba(15,23,42,.16);
}

/* Imagen */
.p-img{
  height: 180px;
  border-radius: 16px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,23,42,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}

.p-img img{
  width: 100%;
  height: 100%;
  object-fit: contain; /* ✅ evita recortes feos */
  padding: 10px;
}

/* Texto */
.p-name{
  margin-top: 12px;
  font-size: 16px;
  font-weight: 900;
  color:#0f172a;
}

.p-desc{
  margin-top: 6px;
  font-size: 13px;
  color:#475569;
  line-height: 1.45;
}

/* Meta: subtitle + precio */
.p-meta{
  margin-top: 10px;
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 10px;
}

.p-meta span{
  font-size: 12px;
  color:#64748b;
  line-height: 1.25;
}

.p-meta strong{
  font-size: 14px;
  font-weight: 900;
  color:#0f172a;
  background: rgba(30,64,175,.08);
  border: 1px solid rgba(30,64,175,.14);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Acciones */
.actions{
  display:flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}

/* Botones base */
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.70);
  color:#0f172a;
  font-weight: 700;
  cursor:pointer;
  text-decoration:none;
  transition: transform .16s ease, background .16s ease, border-color .16s ease;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(15,23,42,.18);
  background: rgba(255,255,255,.92);
}

/* CTA principal (WhatsApp) */
.btn-primary{
  background: #1EBE57;
  border-color: #1EBE57;
  color: #ffffff;
}

.btn-primary::before{
  content:"💬";
  margin-right: 8px;
}

.btn-primary:hover{
  background: #16a34a;
  border-color: #16a34a;
}

/* ================================
   MODAL PRODUCTO (BASE)
================================ */
.modal-backdrop{
  position:fixed; inset:0; background:rgba(0,0,0,.55);
  display:none; align-items:center; justify-content:center;
  padding:18px; z-index:50;
}

.modal{
  width:min(720px,100%);
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--stroke);
  background:#FFFFFF;
  backdrop-filter: blur(10px);
}

.modal-head{
  display:flex; justify-content:center; align-items:center; text-align: center;
  padding:14px 16px;
  border-bottom:1px solid var(--stroke);
  position:relative;
}

.close{
  position:absolute;
  top: 10px;
  right: 10px;
  border:1px solid var(--stroke);
  background:rgba(255,255,255,.06);
  color:var(--text);
  padding:8px 10px;
  border-radius:12px;
  font-weight:900;
  cursor: pointer;
}

.modal-body {
    padding:16px;
    display:grid; grid-template-columns: 1fr 1fr; 
    gap:14px
}

.modal-title {
    font-weight:900;
    font-size:18px
}

.modal-sub {
    color:var(--muted);
    font-size:13px
}

.modal-img{
  height: 260px;                /* más alto para imágenes verticales */
  border-radius:14px;
  border:1px solid var(--stroke);
  background:#ffffff;           /* fondo blanco limpio */
  overflow:hidden;

  display:flex;                 /* centra la imagen */
  align-items:center;
  justify-content:center;
}

.modal-img img {
    max-width:100%; 
    max-height:100%; 
    width:auto; 
    height:auto; 
    object-fit:contain
}

@media (max-width: 520px){
  .modal-img{
    height: 220px;
  }
}

.modal-h {
    font-weight:900;
    margin-bottom:6px
}

.modal-h2 {
    margin-top:12px
}

.list {
    margin-top:10px;
    color:var(--muted)
}

.list li {
    margin-left:18px;
    margin-top:6px
}

.modal-usage {
    margin-top:6px;
    color:var(--muted)
}

.modal-usage li {
  margin-left: 18px;
  margin-top: 6px;
  list-style: disc;
}

.modal-actions {
    margin-top:14px
}

.modal-gallery {
  display:flex;
  flex-direction:column;
  gap:10px;
}

.modal-main-img {
  max-width:100%;
  max-height:260px;
  object-fit:contain;
  border-radius:12px;
}

.modal-thumbs {
  display:flex;
  gap:8px;
  justify-content:center;
}

.modal-thumbs img {
  width:48px;
  height:48px;
  object-fit:contain;
  border-radius:8px;
  border:1px solid var(--stroke);
  cursor:pointer;
  opacity:.7;
  background:#fff;
}

.modal-thumbs img:hover {
  opacity:1;
}

.modal-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-stage {
  height: 260px; /* ajusta si quieres */
  display:flex;
  align-items:center;
  justify-content:center;
  background:#fff;
  border-radius: 12px;
  overflow:hidden;
}

.carousel-stage img {
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit: contain;
}

/* Flechas */
.carousel-arrow {
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:38px;
  height:38px;
  border-radius: 999px;
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.85);
  color:#0f172a;
  display:grid;
  place-items:center;
  font-weight: 900;
  cursor:pointer;
  user-select:none;
}

.carousel-arrow.prev { 
    left:10px; 
}
.carousel-arrow.next {
    right:10px; 
}

.carousel-arrow:hover {
  background: rgba(241,245,249,.95);
}

/* Dots */
.carousel-dots {
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:10px;
}

.carousel-dot {
  width:8px;
  height:8px;
  border-radius:999px;
  background: rgba(15,23,42,.25);
  border: 1px solid rgba(15,23,42,.15);
  cursor:pointer;
}

.carousel-dot.is-active {
  background: #1e40af;
  border-color:#1e40af;
}

/* Responsive */
@media (max-width: 900px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .p-img{ height: 170px; }
}

@media (max-width: 520px){
  .products{ padding: 44px 0 64px; }
  .grid{ grid-template-columns: 1fr; }
  .p-img{ height: 200px; }
}

/* ================================
   SECCIÓN DE MODO DE USO
================================ */
.usage-steps{
  padding: 64px 0 72px;
  background: #ffffff;
}

.usage-title{
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  color:#0f172a;
  margin-bottom: 46px;
}

/* Grid base */
.usage-grid{
  width: min(1100px, 92%);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

/* Línea conectora */
.usage-grid::before{
  content:"";
  position:absolute;
  top: 26px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(30,64,175,.15),
    rgba(30,64,175,.45),
    rgba(30,64,175,.15)
  );
}

/* Paso (ya NO es card) */
.usage-card{
  position: relative;
  text-align: center;
  padding-top: 8px;
}

/* Número */
.usage-step{
  display:grid;
  place-items:center;
  width: 44px;
  height: 44px;
  margin: 0 auto 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 15px;
  color:#ffffff;
  background: #1e40af;
  box-shadow: 0 10px 24px rgba(30,64,175,.35);
}

/* Título */
.usage-card h3{
  font-size: 15px;
  font-weight: 900;
  color:#0f172a;
  margin-bottom: 6px;
}

/* Texto */
.usage-card p{
  font-size: 13px;
  color:#475569;
  line-height: 1.5;
  max-width: 220px;
  margin: 0 auto;
}

/* Hover sutil (solo desktop) */
@media (hover:hover){
  .usage-card:hover .usage-step{
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(30,64,175,.45);
  }
}

/* RESPONSIVE */
@media (max-width: 900px){
  .usage-grid{
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 24px;
  }

  .usage-grid::before{
    display:none;
  }
}

@media (max-width: 520px){
  .usage-steps{
    padding: 48px 0 60px;
  }

  .usage-grid{
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .usage-card p{
    max-width: 100%;
  }
}

/* ================================
   SECCIÓN ENVÍOS + PAGOS + CÓMO COMPRAR
================================ */
.info-strip{
  padding: 64px 0 72px;
  background: linear-gradient(180deg, rgba(30,64,175,.03), rgba(255,255,255,1));
}

/* Limitar ancho visual de la sección info */
.info-strip .container{
  max-width: 900px;   /* 👈 más angosto que el resto */
  margin-left: auto;      /* 👈 centra */
  margin-right: auto;     /* 👈 centra */
  padding-left: 16px;     /* respiración en mobile */
  padding-right: 16px;
}

.info-head{
  text-align: center;
  margin-bottom: 26px;
}

.info-title{
  font-size: 26px;
  font-weight: 900;
  color: #0f172a;
}

.info-sub{
  margin-top: 8px;
  font-size: 14px;
  color: #64748b;
}

/* grid */
.info-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

/* item (no card clásico, estilo “panel”) */
.info-item{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.9);
  overflow: hidden;
  transition: border-color .18s ease, transform .18s ease;
}

@media (hover:hover){
  .info-item:hover{
    border-color: rgba(30,64,175,.28);
    transform: translateY(-2px);
  }
}

/* summary header */
.info-item summary{
  list-style: none;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 16px 16px;

  background: linear-gradient(180deg, rgba(30,64,175,.06), rgba(255,255,255,0));
}

.info-item summary::-webkit-details-marker{
  display: none;
}

.info-ico{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(30,64,175,.10);
  border: 1px solid rgba(30,64,175,.18);
  font-size: 18px;
}

.info-label{
  font-weight: 900;
  color: #0f172a;
  font-size: 15px;
}

.info-hint{
  font-size: 12px;
  font-weight: 800;
  color: rgba(30,64,175,.95);
  opacity: .9;
  transition: opacity .18s ease;
}

/* flecha + animación */
.info-item summary::after{
  content: "›";
  margin-left: 10px;
  color: rgba(15,23,42,.55);
  font-weight: 900;
  transform: rotate(90deg);
  transition: transform .18s ease, color .18s ease;
}

.info-item[open] summary{
  background: linear-gradient(180deg, rgba(30,64,175,.12), rgba(255,255,255,0));
}

.info-item[open] summary::after{
  transform: rotate(-90deg);
  color: rgba(30,64,175,.95);
}

.info-item[open] .info-hint{
  opacity: .75;
}

/* body */
.info-body{
  padding: 0 16px 16px;
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
}

.info-body ul,
.info-body ol{
  margin: 10px 0 0;
  padding-left: 18px;
}

.info-body li{
  margin-top: 8px;
}

/* mini CTA */
.info-mini-cta{
  margin-top: 14px;
  display: flex;
  justify-content: flex-start;
}

/* responsive */
@media (max-width: 900px){
  .info-grid{
    grid-template-columns: 1fr;
  }
  .info-mini-cta{
    justify-content: center;
  }
}

/* ================================
   SECCIÓN DE TESTIMONIOS
================================ */
.testimonials{
  padding: 64px 0 72px;
  background: #ffffff;
}

.testimonials-head{
  text-align:center;
  margin-bottom: 28px;
}

.testimonials-title{
  font-size: 26px;
  font-weight: 900;
  color:#0f172a;
}

.testimonials-sub{
  margin-top: 8px;
  font-size: 14px;
  color:#64748b;
}

/* Contenedor carrusel */
.testimonials-carousel{
  position: relative;
}

/* Grid */
.testimonials-grid{
  width: min(1100px, 92%);
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* Testimonio (editorial, no card pesada) */
.t-card{
  padding: 22px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,23,42,.10);
  box-shadow: 0 16px 40px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease;
}

.t-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 24px 56px rgba(0,0,0,.10);
}

/* Estrellas */
.t-stars{
  font-size: 14px;
  letter-spacing: 2px;
  color:#f59e0b; /* dorado suave */
}

/* Texto */
.t-text{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color:#0f172a;
}

/* Meta */
.t-meta{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
}

.t-name{
  font-size: 13px;
  font-weight: 900;
  color:#0f172a;
}

.t-chip{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.75);
  color:#475569;
  white-space: nowrap;
}

/* CTA */
.testimonials-cta{
  margin-top: 22px;
  display:flex;
  justify-content:center;
}

/* Responsive */
@media (max-width: 520px){
  .testimonials-grid{
    display:flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .testimonials-grid::-webkit-scrollbar{
    display:none;
  }

  .t-card{
    min-width: 85%;
    scroll-snap-align: center;
  }

  /* Dots */
  .testimonials-dots{
    display:flex;
    justify-content:center;
    gap:8px;
    margin: 10px 0 0;
  }

  .t-dot{
    width:8px;
    height:8px;
    border-radius:999px;
    background: rgba(15,23,42,.25);
  }

  .t-dot.is-active{
    background:#1e40af;
  }
}

/* Desktop: ocultar dots */
@media (min-width: 521px){
  .testimonials-dots{
    display:none;
  }
}

/* ================================
   SECCIÓN DE OBJECIONES
================================ */
.objections{
  padding: 64px 0 72px;
  background: #ffffff;
}

.objections-title{
  text-align:center;
  font-size: 26px;
  font-weight: 900;
  color:#0f172a;
}

.objections-sub{
  text-align:center;
  margin-top: 8px;
  margin-bottom: 32px;
  font-size: 14px;
  color:#64748b;
}

/* Lista */
.objections-list{
  width: min(760px, 92%);
  margin: 0 auto;
  display:flex;
  flex-direction: column;
  gap: 12px;
}

/* Item */
.objection{
  border-radius: 16px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  padding: 14px 18px;
  transition: border-color .18s ease, background .18s ease;
}

/* Hover sutil */
@media (hover:hover){
  .objection:hover{
    border-color: rgba(15,23,42,.16);
    background: rgba(255,255,255,.95);
  }
}

/* Pregunta */
.objection summary{
  list-style: none;
  cursor: pointer;
  font-weight: 800;
  font-size: 14px;
  color:#0f172a;
  padding-right: 26px;
  position: relative;
}

/* Quitar marcador nativo */
.objection summary::-webkit-details-marker{
  display:none;
}

/* Icono + / − */
.objection summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  font-size:18px;
  font-weight:900;
  color:#1e40af;
  transition: transform .2s ease;
}

/* Estado abierto */
.objection[open]{
  border-color: rgba(30,64,175,.25);
}

.objection[open] summary::after{
  content:"–";
}

/* Respuesta */
.objection p{
  margin-top: 10px;
  font-size: 14px;
  color:#475569;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 520px){
  .objections{
    padding: 48px 0 60px;
  }
}

/* ================================
   CTA FUERTE
================================ */
.cta-strong{
  padding: 64px 0 72px;
  background: #ffffff;
}

.cta-box{
  position: relative;
  width: min(1100px, 92%);
  margin: 0 auto;
  border-radius: 26px;
  padding: 38px 28px 34px;
  background:
    linear-gradient(135deg, rgba(30,64,175,.14), rgba(255,255,255,1) 60%);
  border: 1px solid rgba(15,23,42,.12);
  box-shadow: 0 28px 72px rgba(0,0,0,.12);
  overflow: hidden;
}

/* halo decorativo */
.cta-box::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(30,64,175,.25), transparent 55%),
    radial-gradient(circle at 70% 80%, rgba(34,197,94,.18), transparent 55%);
  filter: blur(40px);
  opacity: .9;
  pointer-events:none;
}

/* Contenido */
.cta-copy{
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.cta-copy h2{
  font-size: clamp(24px, 3.5vw, 32px);
  font-weight: 900;
  color:#0f172a;
  line-height: 1.15;
}

.cta-copy p{
  margin-top: 10px;
  font-size: 14px;
  color:#475569;
  line-height: 1.6;
}

/* Acciones */
.cta-actions{
  margin-top: 18px;
  display:flex;
  justify-content:center;
}

.cta-btn{
  padding: 14px 22px;
  border-radius: 18px;
  font-weight: 800;
}

/* TIMER */
.cta-timer{
  margin-top: 16px;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 6px;
  opacity: .95;
}

.cta-timer-label{
  font-size: 12px;
  font-weight: 700;
  color:#64748b;
}

.cta-timer-box{
  display:flex;
  align-items:center;
  gap: 6px;
  font-size: 18px;
  font-weight: 900;
  color:#0f172a;
}

.cta-timer-box span{
  min-width: 22px;
  text-align:center;
}

.cta-timer-box small{
  font-size: 11px;
  font-weight: 700;
  color:#64748b;
}

/* REFUERZOS (no compiten) */
.cta-reinforcements{
  margin-top: 18px;
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

.cta-chip{
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.10);
  background: rgba(255,255,255,.85);
  color:#0f172a;
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 520px){
  .cta-box{
    padding: 30px 20px 28px;
  }

  .cta-btn{
    width: 100%;
    justify-content:center;
  }
}

/* ================================
   FOOTER
================================ */
.site-footer{
  background: #1e40af; /* azul muy oscuro elegante */
  color: #ffffff;
  margin-top: 72px;
}

/* Grid principal */
.footer-grid{
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 48px 0 40px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 40px;
}

/* Marca */
.footer-brand{
  justify-self: start;
}

.footer-logo{
  width: 56px;
  height: 56px;
  margin-bottom: 12px;
}

.footer-logo img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-desc{
  max-width: 320px;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255,255,255,.8);
}

/* Navegación */
.footer-nav{
  justify-self: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a{
  color: rgba(255,255,255,.9);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.footer-nav a:hover{
  text-decoration: underline;
}

/* Redes / contacto */
.footer-contact{
  justify-self: end;
}

.footer-social{
  display: flex;
  gap: 12px;
  align-items: center;
}

/* Botón social base */
.social-btn{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.25);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.social-btn svg{
  width: 20px;
  height: 20px;
  fill: #ffffff;
}

.social-btn:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.20);
  border-color: rgba(255,255,255,.45);
}

/* WhatsApp */
.social-btn.wa{
  background: rgba(30,190,87,.25);
  border-color: rgba(30,190,87,.55);
}

.social-btn.wa:hover{
  background: #1EBE57;
}

/* Instagram */
.social-btn.ig{
  background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4);
  border-color: rgba(255,255,255,.35);
}

/* Footer bottom */
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.15);
  padding: 16px 0 20px;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,.75);
}

.footer-bottom p{
  margin-top: 6px;
}

.footer-bottom a{
  color: #ffffff;
  font-weight: 700;
  text-decoration: none;
}

.footer-bottom a:hover{
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 900px){
  .footer-grid{
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer-brand,
  .footer-nav,
  .footer-contact{
    justify-self: center;
  }

  .footer-desc{
    margin: 0 auto;
  }

  .footer-social{
    justify-content: center;
  }
}