:root{
  --bg:#0b0b0f;
  --card:#11111a;
  --text:#ffffff;
  --muted:#b3b3b3;
  --border:#1c1c24;
  --accent:#00ff88;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a{ color:inherit; text-decoration:none; }
ul{ padding-left: 18px; }

.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 18px 40px;
}

.nav{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11,11,15,.72);
  border-bottom: 1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 18px;
}

.brand__name{
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 18px;
}
.brand__sub{
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav__links{
  display:flex;
  gap: 14px;
  align-items:center;
  flex-wrap: wrap;
}
.nav__links a{
  color: var(--muted);
  font-size: 14px;
}
.nav__links a:hover{ color: var(--text); }

.hero{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 18px;
  padding: 26px 0 8px;
  align-items: start;
}

.badge{
  display:inline-block;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  color: var(--muted);
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 999px;
}

h1{
  margin-top: 12px;
  font-size: 44px;
  line-height: 1.05;
}

.sub{
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  max-width: 560px;
}

.cta{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .15s ease, opacity .15s ease, border-color .15s ease;
  cursor: pointer;
}

.btn:hover{ transform: translateY(-1px); opacity: .96; }

.btn--primary{
  background: var(--accent);
  color: #06120c;
}

.btn--ghost{
  background: transparent;
  border-color: var(--border);
  color: var(--text);
  font-weight: 700;
}

.btn--full{ width: 100%; margin-top: 12px; }

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.card{
  background: rgba(255,255,255,.03);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 14px;
}

.card__title{ font-size: 14px; font-weight: 850; }
.card__text{ color: var(--muted); font-size: 13px; margin-top: 6px; }

.panel{
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.panel h2{
  font-size: 18px;
  margin-bottom: 10px;
}
.panel li{ color: var(--muted); margin: 6px 0; }
.panel strong{ color: var(--text); }

.note{
  color: var(--muted);
  font-size: 12px;
  margin-top: 10px;
}

.section{
  padding: 22px 0;
}
.section h2{
  font-size: 22px;
  margin-bottom: 10px;
}
.grid2{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.box{
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
}
.box h3{
  font-size: 16px;
  margin-bottom: 8px;
}
.box li{ color: var(--muted); margin: 6px 0; }

.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}
.step{
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  display:flex;
  gap: 12px;
}
.step__num{
  width: 34px; height: 34px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-weight: 900;
}
.step__title{ font-weight: 850; }
.step__text{ color: var(--muted); font-size: 13px; margin-top: 6px; }

.cta--center{ justify-content: center; }

.faq{
  margin-top: 10px;
}
details{
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255,255,255,.02);
  padding: 12px 14px;
  margin: 10px 0;
}
summary{
  cursor: pointer;
  font-weight: 800;
}
details p{
  color: var(--muted);
  font-size: 14px;
  margin-top: 8px;
}

.footer{
  border-top: 1px solid var(--border);
  margin-top: 18px;
  padding-top: 16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 12px;
}
.footer__muted{ color: var(--muted); font-size: 12px; margin-top: 2px; }
.footer__right a{ color: var(--muted); font-size: 13px; }
.footer__right a:hover{ color: var(--text); }

@media (max-width: 920px){
  .hero{ grid-template-columns: 1fr; }
  h1{ font-size: 36px; }
  .cards{ grid-template-columns: 1fr; }
  .grid2{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
}

/* =========================
   CAROUSEL TESTIMONIOS
========================= */
.carousel{
  position: relative;
  margin-top: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.carousel__track{
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}

.carousel__slide{
  min-width: 100%;
  padding: 10px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.carousel__slide img{
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #0a0a0f;
}

.carousel__btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(17,17,26,.80);
  color: var(--text);
  font-size: 26px;
  font-weight: 900;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 5;
}

.carousel__btn:hover{
  opacity: .95;
  transform: translateY(-50%) scale(1.03);
}

.carousel__btn--left{ left: 10px; }
.carousel__btn--right{ right: 10px; }

.carousel__dots{
  display:flex;
  gap: 8px;
  justify-content:center;
  margin-top: 12px;
}

.carousel__dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.10);
  cursor:pointer;
  transition: transform .2s ease, background .2s ease;
}

.carousel__dot.active{
  background: var(--accent);
  transform: scale(1.15);
}

@media (max-width: 920px){
  .carousel__btn{
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .carousel__slide img{
    max-height: 420px;
  }
}

/* =========================
   TESTIMONIOS + FOTO ABAJO
========================= */
.testi-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.testi-card{
  background: rgba(255,255,255,.02);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.testi-card::before{
  content:"";
  position:absolute;
  inset: 0;
  background: radial-gradient(600px 220px at 15% 0%, rgba(0,255,136,.12), transparent 60%);
  pointer-events:none;
}

.testi-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 10px;
  position: relative;
  z-index: 1;
}

.testi-name{
  font-weight: 900;
  font-size: 16px;
  letter-spacing: .2px;
}

.testi-stars{
  margin-top: 8px;
  display:flex;
  gap: 4px;
}

.star{
  color: #ffd24a;
  font-size: 18px;
  line-height: 1;
  text-shadow: 0 8px 24px rgba(255,210,74,.12);
}

.testi-badge{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  padding: 6px 10px;
  border-radius: 999px;
  white-space: nowrap;
}

.testi-text{
  margin-top: 14px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testi-foot{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
  position: relative;
  z-index: 1;
}

.testi-tag{
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  padding: 6px 10px;
  border-radius: 999px;
}

/* ✅ Foto abajo */
.testi-imgwrap{
  margin-top: 14px;
}

/* =========================
   TESTIMONIOS: Desktop grid / Mobile carousel
========================= */

/* Desktop: se ve como grilla */
.testi-track{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 14px;
}

/* Mobile: carrusel con swipe */
@media (max-width: 920px){
  .testi-carousel{
    position: relative;
    margin-top: 14px;
  }

  .testi-track{
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 2px 6px 10px;
  }

  .testi-track::-webkit-scrollbar{
    height: 6px;
  }
  .testi-track::-webkit-scrollbar-thumb{
    background: rgba(255,255,255,.12);
    border-radius: 999px;
  }

  .testi-card{
    flex: 0 0 88%;
    scroll-snap-align: start;
  }

  .testi-hint{
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
    opacity: .9;
  }
}

/* Mobile muy chico: que ocupe más ancho */
@media (max-width: 420px){
  .testi-card{
    flex-basis: 92%;
  }
}


/* ===== Carrusel (PC 2 imágenes / Mobile 1 imagen) ===== */
.imgcar{
  position: relative;
  margin-top: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.02);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.imgcar__viewport{ overflow: hidden; }

.imgcar__track{
  display: flex;
  transition: transform .35s ease;
  will-change: transform;
}

.imgcar__slide{
  flex: 0 0 100%;
  width: 100%;
  padding: 12px;
}

.imgcar__grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.imgcar__cell{
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.25);
  aspect-ratio: 1 / 1;
}

.imgcar__cell img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.imgcar__btn{
  position:absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(17,17,26,.80);
  color: var(--text);
  font-size: 26px;
  font-weight: 900;
  cursor: pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 5;
}

.imgcar__btn--left{ left: 10px; }
.imgcar__btn--right{ right: 10px; }

.imgcar__dots{
  display:flex;
  gap: 8px;
  justify-content:center;
  margin-top: 12px;
}

.imgcar__dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.10);
  cursor:pointer;
}

.imgcar__dot.active{
  background: var(--accent);
}

@media (max-width: 920px){
  .imgcar__grid{ grid-template-columns: 1fr; }
  .imgcar__btn{ width: 40px; height: 40px; border-radius: 14px; }
}

/* ===== Timer oferta ===== */
.offer-timer{
  margin-top: 14px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: 18px;
  padding: 12px 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.offer-timer__label{
  font-weight: 900;
  letter-spacing: .2px;
}

.offer-timer__time{
  display:flex;
  align-items:center;
  gap: 8px;
}

.tbox{
  display:flex;
  align-items:baseline;
  gap: 8px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,.25);
  border-radius: 14px;
  padding: 8px 10px;
  min-width: 88px;
  justify-content:center;
}

.tbox span{
  font-size: 22px;
  font-weight: 950;
  color: #FFD24A; /* amarillo premium */
  line-height: 1;
}

.tbox small{
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.tsep{
  color: var(--muted);
  font-weight: 900;
  font-size: 18px;
}

.offer-timer__sub{
  color: var(--muted);
  font-size: 13px;
  width: 100%;
}

/* ===== Precio oferta ===== */
.price-row{
  margin-top: 12px;
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}

.price-old{
  color: var(--muted);
  font-weight: 800;
  font-size: 18px;
  text-decoration: line-through;
  opacity: .85;
}

.price-new{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  color: var(--accent);
  font-weight: 950;
  font-size: 22px;
  letter-spacing: .2px;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(0,255,136,.35);
  background: rgba(0,255,136,.08);
}

.price-off{
  font-size: 12px;
  font-weight: 950;
  color: #06120c;
  background: var(--accent);
  padding: 6px 10px;
  border-radius: 999px;
  letter-spacing: .6px;
}

.compare{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:14px}
.compare-box{border:1px solid var(--border);background:rgba(255,255,255,.02);border-radius:22px;padding:16px}
.compare-box h3{margin-bottom:8px}
.compare-box li{color:var(--muted);margin:6px 0}
@media (max-width:920px){.compare{grid-template-columns:1fr}}

@keyframes shine {
  0% { left: -100%; }
  100% { left: 100%; }
}
.btn--primary {
  position: relative;
  overflow: hidden;
}
.btn--primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: none;
  animation: shine 3s infinite;
}