/* =========================
   BASE
========================= */
* { box-sizing: border-box; }
html, body { margin:0; padding:0;}
body{
  font-family: Arial, sans-serif;
  background:#0b0b0f;
  color:#fff;
  line-height:1.5;
}

a{ color: inherit; text-decoration: none; }
a:hover{ opacity:.9; }
/* ✅ Evita que el hover global apague los botones */
a.btn:hover{ opacity: 1; }

.container{
  width: min(1200px, 96vw);
  margin: 0 auto;
}

/* =========================
   NAV / HEADER
========================= */
header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255,255,255,.025);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid rgba(255,255,255,.03);
}

header::before{
  content:"";
  position:absolute;
  inset:0;
  background: radial-gradient(circle at 50% -40px,
      rgba(0,220,255,.08),
      transparent 60%);
  pointer-events:none;
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: .3px;
}

.dot{
  width:10px; height:10px; border-radius:50%;
  background: linear-gradient(135deg,#4f7cff,#00d4ff);
  box-shadow: 0 0 18px rgba(79,124,255,.55);
}

.navlinks{
  display:flex;
  align-items:center;
  gap: 14px;
  flex-wrap: wrap;
  color:#cfcfe6;
  font-size: 14px;
}

.navlinks a{
  padding: 8px 10px;
  border-radius: 10px;
}
.navlinks a:hover{
  background: rgba(255,255,255,.04);
}

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #2a2a3d;
  background: rgba(255,255,255,.03);
  color:#fff;
  cursor:pointer;
  font-weight: 700;
  font-size: 14px;
}

/* ✅ Hover neutro SOLO para botones sin variante */
.btn:not(.primary):not(.whatsapp):not(.purple):not(.white):not(.light):hover{
  background: rgba(255,255,255,.06);
}

/* WhatsApp */
.btn.whatsapp{
  border-color: rgba(37,211,102,.6);
  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 10px 30px rgba(37,211,102,.25);
  color:#fff;
}
.btn.whatsapp:hover{
  background: linear-gradient(135deg, #25D366, #128C7E);
  filter: brightness(1.05);
}

/* Primary (azul) */
.btn.primary{
  border-color: rgba(79,124,255,.55);
  background: linear-gradient(135deg, rgba(79,124,255,.9), rgba(0,212,255,.55));
  box-shadow: 0 10px 30px rgba(79,124,255,.20);
}
.btn.primary:hover{
  filter: brightness(1.05);
}

/* Purple (morado) */
.btn.purple{
  border-color: rgba(168,85,247,.55);
  background: linear-gradient(135deg, #a855f7, #6d28d9);
  box-shadow: 0 10px 30px rgba(168,85,247,.25);
  color:#fff;
}
.btn.purple:hover{
  background: linear-gradient(135deg, #a855f7, #6d28d9);
  filter: brightness(1.05);
}

/* White (tu versión blanca existente) */
.btn.white{
  border-color: rgba(255,255,255,.25);
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255,255,255,.65));
  color:#3f6fff;
  box-shadow: 0 10px 30px rgba(255,255,255,.08);
}
.btn.white:hover{
  background: linear-gradient(135deg, rgba(255,255,255,1), rgba(255,255,255,.8));
  filter: brightness(1.02);
}
.btn.white i{
  color:#4f7cff;
}

/* ✅ Light (blanco tech, menos sólido y más integrado al estilo) */
.btn.light{
  border-color: rgba(79,124,255,.35);
  background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(230,240,255,.72));
  color:#3f6fff;
  box-shadow: 0 10px 30px rgba(79,124,255,.12);
}
.btn.light:hover{
  background: linear-gradient(135deg, rgba(255,255,255,1), rgba(230,240,255,.85));
  filter: brightness(1.02);
}
.btn.light i{
  color:#3f6fff;
}

/* =========================
   SECTIONS / CARDS
========================= */
.section{ padding: 18px 0 28px; }

.hero{ padding: 18px 0 10px; }

.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
}

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


.card{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18,22,35,.12), rgba(10,12,20,.06));
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  padding: 16px;
  backdrop-filter: blur(18px);
-webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 18px 50px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:22px;
  padding:1px;
  background: linear-gradient(
    120deg,
    rgba(255,190,110,.45),
    rgba(255,255,255,.06),
    rgba(90,170,255,.10),
    rgba(50,255,255,.35),
    rgba(255,190,110,.45)
  );
  background-size: 200% 200%;
  background-position: 0% 50%;
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events:none;
  transition: background-position 1.2s ease;
}

.card:hover{
  transform: translateY(-4px);
  box-shadow:
    0 30px 80px rgba(0,0,0,.45),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.card:hover::before{
  background-position: 100% 50%;
}

.card::after{
  content:"";
  position:absolute;
  inset:-20%;
  border-radius:30px;
  background:
    radial-gradient(circle at top left, rgba(255,180,90,.10), transparent 28%),
    radial-gradient(circle at bottom right, rgba(0,220,255,.12), transparent 30%);
  pointer-events:none;
  filter: blur(18px);
  opacity:.9;
}

.card > *{
  position: relative;
  z-index: 2;
}

.audio-card.is-speaking .audio-waves span{
  animation:wave 1s infinite ease-in-out;
}

.audio-card.is-speaking .audio-waves span:nth-child(2){
  animation-delay:.15s;
}

.audio-card.is-speaking .audio-waves span:nth-child(3){
  animation-delay:.3s;
}

.kicker{
  color:#b7b7c8;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

h1{ margin: 8px 0 10px; font-size: 40px; line-height: 1.1; }
h2{ margin: 0 0 10px; font-size: 22px; }
h3{ margin: 0 0 6px; font-size: 16px; }

@media (max-width: 560px){
  h1{ font-size: 30px; }
}

.hr{
  height: 1px;
  background: #2a2a3d;
  margin: 12px 0;
  border-radius: 999px;
}

.actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.badges{
  margin-top: 12px;
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge{
  display:inline-flex;
  gap: 8px;
  align-items:center;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #2a2a3d;
  background: rgba(255,255,255,.02);
  color:#d9d9ee;
  font-size: 12px;
  font-weight: 700;
}

.small{ color:#b7b7c8; font-size: 16px; }

.notice{
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid #2a2a3d;
  background: rgba(255,255,255,.02);
  color:#cfcfe6;
  font-size: 13px;
}

.grid3{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

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

.feature p{ margin: 0; color:#cfcfe6; }

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 980px){
  .split{ grid-template-columns: 1fr; }
}

.list{
  margin: 0;
  padding-left: 18px;
  color:#cfcfe6;
}
.list li{ margin: 6px 0; }

/* =========================
   FORMS (CONTACTO)
========================= */
.form{
  margin-top: 12px;
  display:flex;
  flex-direction: column;
  gap: 10px;
}

.form input,
.form textarea{
  width: 100%;
  background: rgba(255,255,255,.050);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  border: 1px solid rgba(255,255,255,.03);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
  color:#fff;
  border-radius: 12px;
  padding: 12px 14px;
  outline: none;
  font-size: 16px;
  line-height: 1.4;
}

.form input:focus,
.form textarea:focus{
  background: rgba(255,255,255,.04);
  border-color: rgba(79,124,255,.18);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.05),
    0 0 0 3px rgba(79,124,255,.08);
}

/* =========================
   FOOTER
========================= */
.footer{
  margin-top: 18px;
  padding: 14px 10px 24px;
  color:#b7b7c8;
  font-size: 13px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  border-top: 1px solid #202030;
}

.footer a{ color:#cfcfe6; }
.footer a:hover{ text-decoration: underline; }


/* =========================
   PRICING SECTION
========================= */
.pricing{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 24px;
}

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

/* Nombre del plan (solo dentro de .price) */
.price h3{
  font-size: 25px;
  font-weight: 900;
  margin: 1 1 1;
  letter-spacing: 1.1px;
}

/* Precio (solo dentro de .price) */
.price .amount{
  font-size: 23px;
  font-weight: 900;
  margin: 1 1 1;
  line-height: 1.1;
  background: linear-gradient(135deg,#4f7cff,#00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Texto debajo del precio (solo dentro de .price) */
.price .small{
  font-size: 14px;
  color: #b7b7c8;
}

/* Si usas la etiqueta "Recomendado" */
.price .tag{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(79,124,255,.55);
  background: rgba(79,124,255,.12);
  color:#dbe6ff;
  font-weight: 800;
  font-size: 12px;
  margin-bottom: 8px;
}
.hero-video{
  position:relative;
  height:80vh;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  position:relative;
  z-index:2;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:40px;
  background:rgba(0,0,0,.45);
}

.video-intro{
  position:fixed;
  inset:0;
  background: transparent;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
}

.video-box{
  width:min(900px,90%);
  position:relative;
}

.video-box video{
  width:100%;
  border-radius:10px;
}

.close-intro{
  position:absolute;
  top:-40px;
  right:0;
  font-size:32px;
  cursor:pointer;
  color:white;
}



.video-popup{
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  background: transparent;
  backdrop-filter: blur(6px);
}

.popup-content{
  position: relative;
  width: 98vw;
  height: 96vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.popup-content video{
  width: 98%;
  height: 96%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 10px;
  background: transparent;
  position: relative;
  z-index: 1;
}

.popup-close{
  position: absolute;
  top: calc(2% + 18px);
  right: calc(1% + 18px);
  width: 40px;
  height: 40px;
  font-size: 26px;
  border: none;
  cursor: pointer;
  background: rgba(0,0,0,.20);
  color: #fff;
  border-radius: 6px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.sound-btn{
  position: absolute;
  top: calc(2% + 18px);
  right: calc(1% + 68px);
  width: 40px;
  height: 40px;
  font-size: 18px;
  border: none;
  cursor: pointer;
  background: rgba(0,0,0,.35);
  color: #fff;
  border-radius: 6px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
}

.sound-btn:hover,
.popup-close:hover{
  background: rgba(255,255,255,.12);
}
.no-scroll{
  overflow: hidden;
}



.card.feature{
  position: relative;
}

.hero-audio{
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: auto;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 2px 4px;

  background: rgba(0,0,0,.35);
  backdrop-filter: blur(6px);

  border: none;
  border-radius: 999px;

  color: #ffffffcc;
  cursor: pointer;
  transition: .2s ease;
  z-index: 50;
}

.hero-audio:hover{
  background: rgba(0,0,0,.5);
}

.speaker-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.audio-waves{
  display:inline-flex;
  align-items:flex-end;
  gap:3px;
  height:14px;
}

.audio-waves span{
  display:block;
  width:3px;
  border-radius:999px;
  background:#ffffffcc;
  transform-origin:bottom center;
  animation:none;
}

.audio-waves span:nth-child(1){
  height:6px;
}

.audio-waves span:nth-child(2){
  height:10px;
}

.audio-waves span:nth-child(3){
  height:8px;
}

.audio-card.is-speaking .audio-waves span{
  animation:wave 1s infinite ease-in-out;
}

.audio-card.is-speaking .audio-waves span:nth-child(2){
  animation-delay:.15s;
}

.audio-card.is-speaking .audio-waves span:nth-child(3){
  animation-delay:.3s;
}

@keyframes wave{
  0%{ transform:scaleY(.55); }
  50%{ transform:scaleY(1.35); }
  100%{ transform:scaleY(.55); }
}

#tech-bg{
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  display:block;
}

.page-content{
  padding-top: 74px;
}
/* Bloqueo de zoom */
.form input,
.form textarea,
.form select,
.chat-input input {
  font-size: 16px !important;
}

<style>
  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

  body {
    min-height: 100vh;
  }

  #tech-bg {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    display: block;
    z-index: -1;
  }

  .page-content,
  main.container.section {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  main.container.section > *:last-child {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .footer {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
  }

  .audio-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .audio-card .speaker-btn {
    position: absolute;
    right: 16px;
    bottom: 16px;
    pointer-events: none;
  }

  .social-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 14px;
  }



.hero-slider{
  width:100%;
  overflow:hidden;
}

.hero-slider-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
  scrollbar-width:none;
  width:100%;
  padding-bottom:6px;
}

.hero-slider-track::-webkit-scrollbar{
  display:none;
}



.hero-slide{
  flex:0 0 88% !important;
  min-width:88% !important;
  max-width:88% !important;
}

.hero-slider-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:14px;
}

.hero-slider-dots button{
  width:10px;
  height:10px;
  border-radius:999px;
  border:0;
  padding:0;
  cursor:pointer;
  background:rgba(255,255,255,.22);
  transition:all .25s ease;
}

.hero-slider-dots button.active{
  width:28px;
  background:linear-gradient(90deg, rgba(79,124,255,.95), rgba(0,212,255,.85));
  box-shadow:0 0 14px rgba(79,124,255,.35);
}

.hero .hero-grid{
  display:block !important;
}

#heroSliderTrack::-webkit-scrollbar{
  display:none;
}

#sistemaSliderTrack::-webkit-scrollbar{
  display:none;
}

#blogSliderTrack::-webkit-scrollbar{
  display:none;
}
