
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", sans-serif;
  background: #080808;
  color: #fff;
  line-height: 1.8;
}



html,
body{
  margin:0;
  padding:0;

  background:#050816;

  overflow-x:hidden;
}

body::after{
  display:none;
  content:none;
}



html,
body{
    overflow-x:hidden;
    margin:0;
    padding:0;
}

footer{
    margin-bottom:0;
}

.footer-bottom{
    margin-bottom:0;
    padding-bottom:20px;
}

 /* =========================
   HERO SECTION
========================= */
/* =========================
   HERO PREMIUM
========================= */

.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #050816;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 90px;
  text-align: center;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(30,144,255,.28), transparent 32%),
    radial-gradient(circle at bottom right, rgba(37,99,235,.22), transparent 35%),
    linear-gradient(180deg, rgba(5,8,22,.20), rgba(5,8,22,.58));
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 980px;
  padding: 55px 45px;
  border-radius: 36px;
  background: rgba(2, 6, 23, .46);
  border: 1px solid rgba(96, 165, 250, .28);
  backdrop-filter: blur(16px);
  box-shadow:
    0 30px 90px rgba(0,0,0,.45),
    0 0 80px rgba(30,144,255,.14);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 24px;
  border-radius: 999px;
  background: rgba(30,144,255,.16);
  border: 1px solid rgba(96,165,250,.55);
  color: #bfdbfe;
  font-weight: 800;
  font-size: .9rem;
  margin-bottom: 24px;
  box-shadow: 0 0 30px rgba(30,144,255,.22);
}

.hero h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -2.5px;
  color: #fff;
  margin-bottom: 26px;
  text-shadow: 0 15px 45px rgba(0,0,0,.75);
}

.hero h1 span {
  display: inline-block;
  background: linear-gradient(135deg, #60a5fa, #1e90ff, #00d4ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 18px rgba(30,144,255,.45));
}

.hero p {
  max-width: 760px;
  margin: 0 auto 34px;
  color: #dbeafe;
  font-size: 1.15rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 680px;
  margin: auto;
}

.hero-trust div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
}

.hero-trust strong {
  display: block;
  color: #60a5fa;
  font-size: 1.8rem;
  font-weight: 900;
}

.hero-trust span {
  color: #cbd5e1;
  font-size: .9rem;
}

/* MOBILE */

@media (max-width: 768px) {
  .hero {
    padding: 125px 18px 70px;
  }

  .hero-content {
    padding: 38px 22px;
    border-radius: 28px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }
}


  /*AQUI TERMINA HERO*/

    

/* =========================
   METRIC SECTION
========================= */

.metric-container{
  display:flex;

  justify-content:center;

  align-items:center;

  margin-top:80px;

  padding:20px;
}

/* =========================
   METRIC SECTION
========================= */

.metric-container{
  display:flex;

  justify-content:center;

  align-items:center;

  margin-top:80px;

  padding:20px;
}


/* =========================
   METRIC CARD
========================= */

.glow-card{
  position:relative;

  overflow:hidden;

  width:100%;

  max-width:420px;

  padding:40px 30px;

  text-align:center;

  border-radius:24px;

  background:
  linear-gradient(
  145deg,
  #0d1117,
  #131a22);

  border:
  1px solid rgba(255,255,255,0.05);

  box-shadow:
  0 10px 40px rgba(0,0,0,0.45);

  transition:
  transform 0.4s ease,
  box-shadow 0.4s ease;
}


/* =========================
   GLOW BACKGROUND
========================= */

.glow-card::before{
  content:"";

  position:absolute;

  width:200%;

  height:200%;

  top:-50%;

  left:-50%;

  background:
  radial-gradient(
  circle,
  rgba(30,144,255,0.16),
  transparent 60%);

  animation:
  glowMove 12s linear infinite;
}


/* =========================
   BORDER EFFECT
========================= */

.glow-card::after{
  content:"";

  position:absolute;

  inset:0;

  border-radius:24px;

  padding:1px;

  background:
  linear-gradient(
  120deg,
  transparent,
  #1e90ff,
  transparent);

  -webkit-mask:
  linear-gradient(#000 0 0) content-box,
  linear-gradient(#000 0 0);

  -webkit-mask-composite:xor;

  mask-composite:exclude;
}


/* =========================
   HOVER EFFECT
========================= */

.glow-card:hover{
  transform:
  translateY(-8px)
  scale(1.02);

  box-shadow:
  0 20px 60px
  rgba(30,144,255,0.18);
}


/* =========================
   LABEL
========================= */

.metric-label{
  display:block;

  font-size:12px;

  letter-spacing:2px;

  text-transform:uppercase;

  color:#facc15;

  font-weight:600;

  margin-bottom:15px;
}


/* =========================
   NUMBER
========================= */

#ventas{
  font-size:90px;

  font-weight:800;

  line-height:1;

  margin:15px 0;

  background:
  linear-gradient(
  180deg,
  #60a5fa,
  #1e90ff);

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

  text-shadow:
  0 0 25px rgba(30,144,255,0.25);

  animation:
  pulseNumber 2s ease-in-out infinite alternate;
}


/* =========================
   DESCRIPTION
========================= */

.metric-card p{
  font-size:15px;

  line-height:1.7;

  color:#cfcfcf;

  max-width:300px;

  margin:auto;
}


/* =========================
   BENEFITS SECTION
========================= */

.benefits{
  padding:120px 20px;

  background:
  linear-gradient(
  180deg,
  #050816,
  #0b1120);

  text-align:center;

  position:relative;

  overflow:hidden;
}


/* =========================
   BENEFITS TITLE
========================= */

.benefits h2{
  font-size:3rem;

  color:#fff;

  margin-bottom:70px;

  font-family:"Poppins",sans-serif;

  text-shadow:
  0 10px 30px rgba(0,0,0,0.4);
}


/* =========================
   BENEFITS GRID
========================= */

.benefits-grid{
  display:grid;

  gap:30px;

  grid-template-columns:
  repeat(auto-fit,
  minmax(250px,1fr));

  max-width:1200px;

  margin:auto;
}


/* =========================
   BENEFIT CARD
========================= */

.benefit-card{
  position:relative;

  overflow:hidden;

  padding:45px 30px;

  text-align:center;

  border-radius:24px;

  background:
  linear-gradient(
  145deg,
  rgba(17,24,39,0.95),
  rgba(12,18,30,0.95));

  border:
  1px solid rgba(255,255,255,0.05);

  box-shadow:
  0 10px 40px rgba(0,0,0,0.45);

  transition:
  transform 0.4s ease,
  box-shadow 0.4s ease;

  backdrop-filter:blur(12px);
}


/* =========================
   BENEFIT CARD HOVER
========================= */

.benefit-card:hover{
  transform:
  translateY(-10px)
  scale(1.02);

  box-shadow:
  0 20px 60px rgba(30,144,255,0.18);
}


/* =========================
   BENEFIT ICON
========================= */

.benefit-icon{
  width:80px;

  margin-bottom:20px;

  filter:
  drop-shadow(
  0 0 15px rgba(30,144,255,0.25));
}


/* =========================
   BENEFIT TITLE
========================= */

.benefit-card h3{
  font-size:1.5rem;

  color:#fff;

  margin-bottom:18px;

  font-weight:700;
}


/* =========================
   BENEFIT TEXT
========================= */

.benefit-card p{
  color:#cfcfcf;

  line-height:1.7;

  font-size:15px;
}


/* =========================
   ANIMATIONS
========================= */

@keyframes glowMove{

  0%{
    transform:rotate(0deg);
  }

  100%{
    transform:rotate(360deg);
  }

}


@keyframes pulseNumber{

  0%{
    transform:scale(1);
  }

  100%{
    transform:scale(1.06);
  }

}


/* =========================
   RESPONSIVE TABLET
========================= */

@media(max-width:768px){

.glow-card{
  padding:30px 20px;
}

#ventas{
  font-size:62px;
}

.metric-card p{
  font-size:14px;
}

.benefits{
  padding:90px 20px;
}

.benefits h2{
  font-size:2.2rem;

  margin-bottom:50px;
}

.benefit-card{
  padding:35px 25px;
}

.benefit-icon{
  width:70px;
}

.benefit-card h3{
  font-size:1.3rem;
}

}


/* =========================
   RESPONSIVE MOBILE
========================= */

@media(max-width:480px){

.metric-container{
  margin-top:50px;
}

.glow-card{
  border-radius:20px;
}

#ventas{
  font-size:52px;
}

.metric-label{
  font-size:11px;
}

.benefits h2{
  font-size:1.8rem;
}

.benefits-grid{
  gap:22px;
}

.benefit-card{
  border-radius:20px;
}

.benefit-card p{
  font-size:14px;
}

}


/* ================= ABOUT ================= */

.about{

  padding:120px 8%;

  background:#020617;

}

.about-container{

  display:grid;

  grid-template-columns:
  1fr 1fr;

  gap:70px;

  align-items:center;

}

.about-text h2{

  font-size:64px;

  line-height:1.1;

  margin-bottom:25px;

}

.about-text h2 span{

  color:#3b82f6;

  text-shadow:
  0 0 25px rgba(59,130,246,.5);

}

.about-text p{

  font-size:20px;

  line-height:1.8;

  opacity:.9;

  margin-bottom:35px;

}

.about-list{

  list-style:none;

  padding:0;

}

.about-list li{

  margin-bottom:18px;

  font-size:19px;

}

/* CARD */

.about-box{

  position:relative;

  background:
  linear-gradient(
  145deg,
  rgba(15,23,42,.95),
  rgba(30,41,59,.95));

  border:
  1px solid rgba(59,130,246,.2);

  border-radius:40px;

  padding:50px;

  text-align:center;

  overflow:hidden;

  box-shadow:
  0 0 50px rgba(59,130,246,.12);

}

/* AVATAR */

.about-avatar{

  display:flex;

  justify-content:center;

  align-items:center;

  margin-bottom:20px;

}

/* CONTADOR */

.about-box h2{

  font-size:90px;

  margin:0;

  color:#3b82f6;

  text-shadow:
  0 0 30px rgba(59,130,246,.45);

}

.about-mini{

  font-size:22px;

  opacity:.85;

}

/* RESPONSIVE */

@media(max-width:900px){

  .about-container{

    grid-template-columns:1fr;

  }

  .about-text h2{

    font-size:48px;

  }

}

/* =========================
   AVATAR RING
========================= */

.avatar-ring{
  position:absolute;

  inset:0;

  border-radius:50%;

  border:
  1px solid rgba(59,130,246,0.25);

  box-shadow:
  0 0 40px rgba(30,144,255,0.18);

  animation:
  pulseRing 3s ease infinite;
}


/* =========================
   AVATAR HEAD
========================= */

.avatar-head{
  position:absolute;

  top:18px;

  width:26px;
  height:26px;

  border-radius:50%;

  background:
  linear-gradient(
  180deg,
  #60a5fa,
  #1e90ff);

  box-shadow:
  0 0 18px rgba(30,144,255,0.35);
}


/* =========================
   AVATAR BODY
========================= */

.avatar-body{
  position:absolute;

  bottom:18px;

  width:42px;
  height:50px;

  border-radius:18px;

  background:
  linear-gradient(
  180deg,
  #3b82f6,
  #1e90ff);

  box-shadow:
  0 0 25px rgba(30,144,255,0.25);
}


/* =========================
   METRIC NUMBER
========================= */

#metricNumber{
  font-size:90px;

  font-weight:800;

  line-height:1;

  margin:20px 0;

  background:
  linear-gradient(
  180deg,
  #60a5fa,
  #1e90ff);

  -webkit-background-clip:text;

  -webkit-text-fill-color:transparent;

  text-shadow:
  0 0 25px rgba(30,144,255,0.25);
}


/* =========================
   FLOAT ANIMATION
========================= */

@keyframes float{

  0%{
    transform:translateY(0);
  }

  50%{
    transform:translateY(-10px);
  }

  100%{
    transform:translateY(0);
  }

}


/* =========================
   RING ANIMATION
========================= */

@keyframes pulseRing{

  0%{
    transform:scale(1);

    opacity:0.5;
  }

  50%{
    transform:scale(1.08);

    opacity:1;
  }

  100%{
    transform:scale(1);

    opacity:0.5;
  }

}


/* =========================
   RESPONSIVE TABLET
========================= */

@media(max-width:900px){

.about-container{
  grid-template-columns:1fr;

  gap:50px;
}

.about-text{
  text-align:center;
}

.about-text p{
  margin:auto;
}

.about-list{
  align-items:center;
}

}


/* =========================
   RESPONSIVE MOBILE
========================= */

@media(max-width:768px){

.about{
  padding:90px 20px;
}

.about-text h2{
  font-size:2.3rem;
}

.about-text p{
  font-size:15px;
}

.about-box{
  padding:45px 25px;
}

#metricNumber{
  font-size:65px;
}

.about-avatar{
  width:120px;
  height:120px;
}

}


@media(max-width:480px){

.about-text h2{
  font-size:2rem;
}

.about-list li{
  font-size:14px;
}

#metricNumber{
  font-size:52px;
}

.about-box{
  border-radius:24px;
}

}

/*hasta arreglado*/


/* =========================
   NAVBAR
========================= */

.nav{
  position:fixed;

  top:0;
  left:0;

  width:100%;
  height:70px;

  padding:20px 40px;

  display:flex;

  justify-content:space-between;

  align-items:center;

  z-index:1000;

  background:
  rgba(0,0,0,0.6);

  backdrop-filter:blur(10px);

  border-bottom:
  1px solid rgba(255,255,255,0.05);

  transition:
  background 0.3s ease,
  box-shadow 0.3s ease;
}


/* =========================
   NAVBAR SCROLL
========================= */

.nav.scrolled{
  background:
  rgba(0,0,0,0.9);

  box-shadow:
  0 10px 30px rgba(0,0,0,0.4);
}


/* =========================
   LOGO
========================= */

.logo{
  margin-left:5px;

  font-family:"Poppins",sans-serif;

  font-size:1.7rem;

  font-weight:700;

  color:#fff;
}


.logo span{
  margin-left:6px;

  color:#1e90ff;

  text-shadow:
  0 0 10px rgba(30,144,255,0.5);
}


/* =========================
   LINKS
========================= */

.nav-links{
  display:flex;

  gap:30px;
}


.nav-links a{
  position:relative;

  text-decoration:none;

  color:#fff;

  font-weight:500;

  transition:
  color 0.3s ease;
}


/* =========================
   LINK HOVER
========================= */

.nav-links a:hover{
  color:#1e90ff;
}


.nav-links a::after{
  content:"";

  position:absolute;

  left:0;
  bottom:-6px;

  width:0%;
  height:2px;

  background:#1e90ff;

  transition:
  width 0.3s ease;
}


.nav-links a:hover::after{
  width:100%;
}


/* =========================
   MENU TOGGLE
========================= */

.menu-toggle{
  display:none;

  flex-direction:column;

  gap:6px;

  cursor:pointer;

  padding:10px;

  border:none;

  border-radius:10px;

  background:
  rgba(255,255,255,0.05);

  backdrop-filter:blur(5px);
}


.menu-toggle span{
  width:28px;
  height:3px;

  background:#fff;

  border-radius:3px;

  transition:
  transform 0.3s ease,
  opacity 0.3s ease;
}


/* =========================
   MENU ANIMATION
========================= */

.menu-toggle.active span:nth-child(1){
  transform:
  rotate(45deg)
  translate(5px,5px);
}


.menu-toggle.active span:nth-child(2){
  opacity:0;
}


.menu-toggle.active span:nth-child(3){
  transform:
  rotate(-45deg)
  translate(6px,-6px);
}


/* =========================
   GLOBAL LINKS
========================= */

a{
  text-decoration:none;

  color:inherit;
}


/* =========================
   CHECK ICON
========================= */

.check{
  color:#22c55e;

  margin-right:8px;

  font-weight:bold;
}


/* =========================
   BUTTONS
========================= */

.btn{
  display:inline-flex;

  align-items:center;

  justify-content:center;

  gap:10px;

  padding:16px 30px;

  border-radius:18px;

  font-weight:600;

  text-decoration:none;

  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease,
  background 0.3s ease;
}


/* =========================
   BUTTON HOVER
========================= */

.btn:hover{
  transform:
  translateY(-3px)
  scale(1.03);

  box-shadow:
  0 10px 25px rgba(0,0,0,0.35);
}


/* =========================
   PRIMARY BUTTON
========================= */

.btn.primary{
  border:none;

  color:#fff;

  background:
  linear-gradient(
  135deg,
  #1e90ff,
  #187bcd);

  box-shadow:
  0 8px 25px rgba(30,144,255,0.3);
}


.btn.primary:hover{
  box-shadow:
  0 12px 35px rgba(30,144,255,0.5);
}


/* =========================
   GHOST BUTTON
========================= */

.btn.ghost{
  color:#fff;

  border:
  1px solid rgba(255,255,255,0.15);

  background:
  rgba(255,255,255,0.03);

  backdrop-filter:blur(8px);
}


.btn.ghost:hover{
  color:#3b82f6;

  border-color:#3b82f6;

  background:
  rgba(59,130,246,0.1);
}


/* =========================
   SECTIONS
========================= */

section{
  padding:100px 20px;

  text-align:center;
}


/* =========================
   TITLES
========================= */

section h2{
  margin-bottom:18px;

  font-size:2.8rem;

  color:#fff;

  font-family:"Poppins",sans-serif;

  text-shadow:
  0 10px 30px rgba(0,0,0,0.35);
}


/* =========================
   SUBTEXT
========================= */

.sub{
  max-width:700px;

  margin:0 auto 60px;

  color:#cfcfcf;

  line-height:1.8;

  font-size:16px;
}


/* =========================
   GRID
========================= */

.cards,
.price-cards{
  display:grid;

  gap:35px;

  max-width:1200px;

  margin:auto;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));
}


/* =========================
   CARD BASE
========================= */
.price-cards{
  align-items:stretch;
}

.card,
.price-card{
  position:relative;

  overflow:hidden;

  padding:45px 35px;

  border-radius:28px;

  background:
  linear-gradient(
  145deg,
  rgba(17,24,39,0.96),
  rgba(12,18,30,0.96));

  border:
  1px solid rgba(255,255,255,0.05);

  box-shadow:
  0 15px 45px rgba(0,0,0,0.45);

  transition:
  transform 0.4s ease,
  box-shadow 0.4s ease,
  border 0.4s ease;

  backdrop-filter:blur(14px);

  display:flex;
  flex-direction:column;

  height:100%;
}
/* =========================
   CARD GLOW
========================= */

.card::before,
.price-card::before{
  content:"";

  position:absolute;

  width:220%;
  height:220%;

  top:-60%;
  left:-60%;

  background:
  radial-gradient(
  circle,
  rgba(30,144,255,0.12),
  transparent 60%);

  animation:
  glowMove 12s linear infinite;

  z-index:0;
}


/* =========================
   CARD CONTENT
========================= */

.card *,
.price-card *{
  position:relative;

  z-index:1;
}


/* =========================
   CARD HOVER
========================= */

.card:hover,
.price-card:hover{
  transform:
  translateY(-10px)
  scale(1.02);

  border:
  1px solid rgba(30,144,255,0.35);

  box-shadow:
  0 20px 60px rgba(30,144,255,0.18);
}


/* =========================
   ICONS
========================= */

.card i{
  margin-bottom:22px;

  font-size:2.5rem;

  color:#1e90ff;

  text-shadow:
  0 0 18px rgba(30,144,255,0.35);
}


/* =========================
   CARD TITLE
========================= */

.card h3,
.price-card h3{
  font-size:1.6rem;

  color:#fff;

  margin-bottom:18px;

  font-weight:700;
}


/* =========================
   CARD TEXT
========================= */

.card p{
  color:#cfcfcf;

  line-height:1.8;

  font-size:15px;
}


.card strong{
  color:#fff;
}



#para-quien .card{

  display:flex;

  flex-direction:column;

  justify-content:space-between;

  min-height:420px;

}

#para-quien .card .btn{

  margin-top:auto;

}
/* =========================
   PRICING
========================= */

.price{
  margin:25px 0;

  font-size:2.6rem;

  font-weight:800;

  color:#1e90ff;

  text-shadow:
  0 0 20px rgba(30,144,255,0.25);
}


/* =========================
   PRICE LIST
========================= */

.price-card ul{
  margin:30px 0;
    flex:1;

  list-style:none;

  display:flex;

  flex-direction:column;

  gap:12px;
}



.price-card ul li{
  color:#d1d5db;

  line-height:1.6;
}


.price-card .btn{
  margin-top:auto;
}
/* =========================
   FEATURED PLAN
===

====================== */

.featured{
  border:
  1px solid rgba(30,144,255,0.35);

  box-shadow:
  0 20px 60px rgba(30,144,255,0.2);
}


/* =========================
   BADGE
========================= */

.badge{
  display:inline-block;

  margin-bottom:20px;

  padding:8px 16px;

  border-radius:999px;

  font-size:13px;

  font-weight:700;

  color:#fff;

  background:
  linear-gradient(
  135deg,
  #1e90ff,
  #2563eb);

  box-shadow:
  0 0 20px rgba(30,144,255,0.25);
}





/* =========================
   ANIMATION
========================= */

@keyframes glowMove{

  0%{
    transform:rotate(0deg);
  }

  100%{
    transform:rotate(360deg);
  }

}


/* =========================
   RESPONSIVE TABLET
========================= */

@media(max-width:768px){

.nav{
  padding:0 24px;
}

.menu-toggle{
  display:flex;
}

.nav-links{
  position:fixed;

  top:70px;
  left:0;

  width:100%;

  padding:25px 0;

  flex-direction:column;

  align-items:center;

  gap:20px;

  background:
  rgba(0,0,0,0.95);

  backdrop-filter:blur(15px);

  opacity:0;

  pointer-events:none;

  transform:translateY(-10px);

  transition:
  opacity 0.3s ease,
  transform 0.3s ease;
}

.nav-links.show{
  opacity:1;

  pointer-events:auto;

  transform:translateY(0);
}

section{
  padding:90px 20px;
}

section h2{
  font-size:2.2rem;
}

.sub{
  margin-bottom:45px;

  font-size:15px;
}

.card,
.price-card{
  padding:35px 25px;
}

.featured{
  transform:none;
}

.price{
  font-size:2.1rem;
}

}


/* =========================
   RESPONSIVE MOBILE
========================= */

@media(max-width:480px){

section h2{
  font-size:1.9rem;
}

.card h3,
.price-card h3{
  font-size:1.3rem;
}

.card p,
.price-card ul li{
  font-size:14px;
}

.cards,
.price-cards{
  gap:24px;
}

}



/* =========================
   FEATURES SECTION
========================= */

.features{
  padding:90px 20px;
}


/* =========================
   FEATURES GRID
========================= */

.features-grid{
  display:grid;

  gap:25px;

  max-width:1100px;

  margin:auto;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));
}


/* =========================
   FEATURE CARD
========================= */

.feature-card{
  position:relative;

  overflow:hidden;

  border-radius:24px;

  background:
  linear-gradient(
  145deg,
  rgba(17,24,39,0.96),
  rgba(12,18,30,0.96));

  border:
  1px solid rgba(255,255,255,0.05);

  box-shadow:
  0 15px 45px rgba(0,0,0,0.45);

  transition:
  transform 0.4s ease,
  box-shadow 0.4s ease;

  backdrop-filter:blur(14px);
}


/* =========================
   FEATURE GLOW
========================= */

.feature-card::before{
  content:"";

  position:absolute;

  width:220%;
  height:220%;

  top:-60%;
  left:-60%;

  background:
  radial-gradient(
  circle,
  rgba(30,144,255,0.12),
  transparent 60%);

  animation:
  glowMove 12s linear infinite;
}


/* =========================
   FEATURE CONTENT
========================= */

.feature-card *{
  position:relative;

  z-index:2;
}


/* =========================
   FEATURE HOVER
========================= */

.feature-card:hover{
  transform:
  translateY(-8px)
  scale(1.02);

  box-shadow:
  0 20px 60px rgba(30,144,255,0.18);
}


/* =========================
   FEATURE IMAGE
========================= */

.feature-card img{
  width:100%;

  height:180px;

  object-fit:cover;

  transition:0.5s ease;
}


.feature-card:hover img{
  transform:scale(1.06);
}


/* =========================
   FEATURE CONTENT BOX
========================= */

.feature-content{
  padding:24px;
}


.feature-content h3{
  margin-bottom:18px;

  font-size:1.3rem;

  color:#fff;
}


/* =========================
   FEATURE LIST
========================= */

.feature-content ul{
  list-style:none;

  padding:0;

  margin:0;

  display:flex;

  flex-direction:column;

  gap:12px;
}


.feature-content li{
  display:flex;

  align-items:center;

  gap:10px;

  color:#d1d5db;

  font-size:14px;

  line-height:1.6;
}


/* =========================
   TESTIMONIALS
========================= */

.testimonials{
  padding:110px 20px;
}


.testimonials-grid{
  display:grid;

  gap:25px;

  max-width:1100px;

  margin:auto;

  grid-template-columns:
  repeat(auto-fit,minmax(250px,1fr));
}


/* =========================
   TESTIMONIAL CARD
========================= */

.testimonial{
  padding:30px;

  text-align:center;

  border-radius:24px;

  background:
  linear-gradient(
  145deg,
  rgba(17,24,39,0.96),
  rgba(12,18,30,0.96));

  border:
  1px solid rgba(255,255,255,0.05);

  box-shadow:
  0 15px 45px rgba(0,0,0,0.45);

  transition:
  transform 0.4s ease,
  box-shadow 0.4s ease;
}


/* =========================
   TESTIMONIAL HOVER
========================= */

.testimonial:hover{
  transform:
  translateY(-8px);

  box-shadow:
  0 20px 60px rgba(30,144,255,0.15);
}


/* =========================
   AVATAR
========================= */

.avatar{
  width:75px;
  height:75px;

  border-radius:50%;

  object-fit:cover;

  margin-bottom:15px;

  border:
  2px solid rgba(30,144,255,0.3);
}


/* =========================
   STARS
========================= */

.stars{
  margin:8px 0;

  font-size:14px;

  color:#facc15;
}


/* =========================
   TESTIMONIAL TEXT
========================= */

.testimonial p{
  margin:12px 0;

  font-size:14px;

  line-height:1.7;

  color:#d1d5db;
}


.testimonial strong{
  color:#9ca3af;

  font-size:13px;
}


/* =========================
   CTA SECTION
========================= */

.cta{
  padding-bottom:60px;

  background:
  linear-gradient(
  135deg,
  #081224,
  #000);
}


/* =========================
   CTA SECTION
=========================

.cta{
  background:
  linear-gradient(
  135deg,
  #0a1f3d,
  #000);
}

 */

/* =========================
   FORM CONTAINER
========================= */

.form-container{
  width:100%;

  max-width:750px;

  margin:auto;
}


/* =========================
   FORM BOX
========================= */

.form-box{
  display:flex;

  flex-direction:column;

  gap:18px;
}


/* =========================
   INPUTS
========================= */

input,
select,
textarea{
  width:100%;

  padding:16px 18px;

  border-radius:18px;

  border:
  1px solid rgba(255,255,255,0.08);

  outline:none;

  font-size:14px;

  color:#fff;

  background:
  rgba(255,255,255,0.03);

  backdrop-filter:blur(10px);

  transition:
  border 0.3s ease,
  box-shadow 0.3s ease;
}


/* =========================
   PLACEHOLDER
========================= */

input::placeholder,
textarea::placeholder{
  color:#777;
}


select{
  color:#aaa;
}


/* =========================
   INPUT FOCUS
========================= */

input:focus,
select:focus,
textarea:focus{
  border:
  1px solid #1e90ff;

  box-shadow:
  0 0 0 4px rgba(30,144,255,0.12);
}


/* =========================
   TEXTAREA
========================= */

textarea{
  min-height:160px;

  resize:vertical;

  line-height:1.7;
}


/* =========================
   TEXTAREA LABEL
========================= */

.textarea-box{
  display:flex;

  flex-direction:column;

  gap:10px;

  text-align:left;
}


.textarea-box label{
  color:#d1d5db;

  font-size:14px;
}


/* =========================
   FULL BUTTON
========================= */

.btn-full{
  width:100%;
}




/* =========================
   FOOTER
========================= */

.footer{
  width:100%;

  margin:0;

  padding:70px 20px 30px;

  background:#050816;

  color:#aaa;

  overflow:hidden;

  margin-bottom:0;
  padding-bottom:0;
}


/* =========================
   FOOTER CONTAINER
========================= */

.footer-container{
  max-width:1200px;

  margin:auto;

  display:grid;

  gap:50px;

  grid-template-columns:
  repeat(auto-fit,minmax(220px,1fr));
}


/* =========================
   FOOTER COLUMN
========================= */

.footer-col{
  display:flex;

  flex-direction:column;

  align-items:flex-start;

  gap:14px;
}



/* =========================
   FOOTER TITLES
========================= */

.footer-col h3,
.footer-col h4{
  color:#fff;

  margin-bottom:18px;
}


.footer-col h3{
  font-size:2rem;

  font-weight:700;
}


.footer-col h3 span{
  color:#3b82f6;
}


/* =========================
   FOOTER TEXT
========================= */

.footer-col p,
.footer-col li{
  color:#9ca3af;

  font-size:15px;

  line-height:1.8;
}


.footer-col ul{
  list-style:none;

  padding:0;

  margin:0;
}


.footer-col ul li{
  transition:0.3s ease;
}


.footer-col ul li:hover{
  color:#1e90ff;

  transform:translateX(4px);
}


.footer-col a{

  color:#9ca3af;

  transition:.3s ease;

}

.footer-col a:hover{

  color:#3b82f6;

}


/* =========================
   FOOTER SOCIAL
========================= */

.footer-social{
  display:flex;

  flex-direction:row;

  align-items:center;

  justify-content:flex-start;

  gap:14px;

  margin-top:18px;
}


.footer-social a{
  width:46px;
  height:46px;

  border-radius:50%;

  display:flex;

  align-items:center;
  justify-content:center;

  background:
  rgba(255,255,255,0.05);

  color:#fff;

  font-size:18px;

  transition:
  transform 0.3s ease,
  background 0.3s ease,
  box-shadow 0.3s ease;
}


.footer-social a:hover{
  transform:
  translateY(-4px);

  background:#1e90ff;

  box-shadow:
  0 10px 25px rgba(30,144,255,0.35);
}


/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
  max-width:1200px;

  margin:45px auto 0;

  padding-top:25px;

  text-align:center;

  border-top:
  1px solid rgba(255,255,255,0.06);
}


.footer-bottom p{
  color:#94a3b8;

  font-size:14px;

  line-height:1.6;
}


/* =========================
   WHATSAPP BUTTON
========================= */

.chat-button{
  position:fixed;

  right:22px;
  bottom:22px;

  width:62px;
  height:62px;

  border:none;

  border-radius:50%;

  background:
  linear-gradient(
  135deg,
  #25d366,
  #1ebe5d);

  color:#fff;

  display:flex;

  align-items:center;
  justify-content:center;

  font-size:30px;

  cursor:pointer;

  z-index:1000;

  box-shadow:
  0 12px 30px rgba(37,211,102,0.35);

  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}


/* =========================
   BUTTON HOVER
========================= */

.chat-button:hover{
  transform:
  scale(1.08)
  translateY(-3px);

  box-shadow:
  0 18px 40px rgba(37,211,102,0.45);
}


/* =========================
   WHATSAPP CHAT
========================= */

.whatsapp-chat{
  position:fixed;

  right:25px;
  bottom:100px;

  width:280px;

  overflow:hidden;

  border-radius:20px;

  background:#fff;

  display:none;

  z-index:1000;

  box-shadow:
  0 20px 60px rgba(0,0,0,0.3);

  animation:chatFade 0.3s ease;
}


/* =========================
   CHAT HEADER
========================= */

.chat-header{
  padding:16px;

  background:
  linear-gradient(
  135deg,
  #25d366,
  #1ebe5d);

  color:#fff;

  display:flex;

  flex-direction:column;

  gap:5px;
}


.chat-title{
  font-weight:700;

  font-size:16px;
}


.chat-status{
  font-size:12px;

  opacity:0.9;
}


/* =========================
   CHAT BODY
========================= */

.chat-body{
  padding:20px;

  font-size:14px;

  color:#333;

  line-height:1.7;
}


/* =========================
   CHAT BUTTON
========================= */

.chat-btn{
  display:block;

  margin-top:18px;

  padding:13px;

  border-radius:12px;

  text-align:center;

  text-decoration:none;

  font-weight:600;

  background:#25d366;

  color:#fff;

  transition:
  background 0.3s ease,
  transform 0.3s ease;
}


.chat-btn:hover{
  background:#1ebe5d;

  transform:translateY(-2px);
}


/* =========================
   REVEAL ANIMATION
========================= */

.reveal{
  opacity:0;

  transform:translateY(40px);

  transition:
  opacity 0.8s ease,
  transform 0.8s ease;
}


.reveal.active{
  opacity:1;

  transform:translateY(0);
}


/* =========================
   CHAT ANIMATION
========================= */

@keyframes chatFade{

  from{
    opacity:0;
    transform:translateY(20px);
  }

  to{
    opacity:1;
    transform:translateY(0);
  }

}


/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

.footer{
  padding:60px 20px 25px;
}

.footer-container{
  grid-template-columns:1fr;

  text-align:center;

  gap:40px;
}

.footer-col{
  align-items:center;
}

.footer-social{
  justify-content:center;
}

.whatsapp-chat{
  width:230px;

  right:14px;
  bottom:82px;
}

.chat-button{
  width:56px;
  height:56px;

  font-size:25px;

  right:16px;
  bottom:16px;
}

}


@media(max-width:480px){

.footer{
  padding:50px 16px 20px;
}

.footer-col h3{
  font-size:1.6rem;
}

.footer-col h4{
  font-size:1rem;
}

.footer p,
.footer li{
  font-size:14px;
}

.footer-bottom p{
  font-size:12px;
}

.whatsapp-chat{
  width:210px;
}

}


/* ================= TESTIMONIO FORM ================= */

.testimonial-form{

  padding:120px 8%;

  text-align:center;

}

.testimonial-form .form-box{

  max-width:700px;

  margin:auto;

  display:flex;

  flex-direction:column;

  gap:18px;

}

.testimonial-form input,
.testimonial-form select,
.testimonial-form textarea{

  width:100%;

  padding:18px;

  border-radius:18px;

  border:1px solid rgba(255,255,255,.08);

  background:#0f172a;

  color:white;

  font-size:16px;

}

.testimonial-form textarea{

  min-height:160px;

  resize:none;

}

.testimonial-form .btn{

  margin-top:10px;

}

/* =========================
   TESTIMONIOS SLIDER
========================= */

.testimonials-slider{

  padding:100px 20px;

  max-width:1100px;

  margin:auto;
}

.testimonials-swiper{

  width:100%;

  max-width:900px;

  margin:auto;

  padding-bottom:60px;
}


/* CARD TESTIMONIO */

.testimonial{

  max-width:650px;

  margin:auto;

  padding:35px 30px;

  min-height:320px;

  display:flex;

  flex-direction:column;

  justify-content:center;
}


/* TEXTO */

.testimonial p{

  font-size:15px;

  line-height:1.8;

  max-width:520px;

  margin:15px auto;
}


/* FLECHAS */

.swiper-button-next,
.swiper-button-prev{

  transform:scale(.7);
}


/* MOBILE */

@media(max-width:768px){

.testimonial{

  max-width:100%;

  min-height:auto;

  padding:28px 20px;

}

}


/* =========================
   MÉTODOS DE PAGO PREMIUM
========================= */

.payments{
padding:90px 8%;
background:#f8fafc;
text-align:center;
}

.payments-container{
max-width:1200px;
margin:auto;
}

.payments-tag{
display:inline-block;
background:#111827;
color:#fff;
padding:10px 18px;
border-radius:50px;
font-size:.85rem;
font-weight:600;
margin-bottom:20px;
}

.payments h2{
font-size:2rem;
color:#111827;
margin-bottom:15px;
font-weight:700;
}

.payments-sub{
max-width:650px;
margin:auto;
color:#6b7280;
line-height:1.7;
font-size:.95rem;
}

.payments-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:25px;
margin-top:50px;
}

.payment-card{
position:relative;
background:#fff;
padding:30px;
border-radius:22px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.3s ease;
}

.payment-card:hover{
transform:translateY(-8px);
}

.payment-card i{
font-size:2.5rem;
color:#2563eb;
margin-bottom:18px;
}

.payment-card h3{
font-size:1.2rem;
color:#111827;
margin-bottom:12px;
}

.payment-card p{
color:#6b7280;
line-height:1.7;
font-size:.9rem;
}

.payment-badge{
display:inline-block;
margin-top:18px;
padding:8px 14px;
border-radius:30px;
background:#eff6ff;
color:#2563eb;
font-size:.8rem;
font-weight:600;
}

.payment-card.featured{
border:2px solid #2563eb;
background:linear-gradient(180deg,#ffffff,#f8fbff);
}

.payment-card.featured::before{
content:"INTERNACIONAL";
position:absolute;
top:15px;
right:15px;
background:#2563eb;
color:#fff;
padding:6px 10px;
border-radius:20px;
font-size:.65rem;
font-weight:600;
}

@media(max-width:768px){


.payments{
    padding:70px 20px;
}

.payments h2{
    font-size:1.7rem;
}


}



/* =========================
   BOTONES DE PAGO
========================= */

.payment-btn{
display:inline-flex;
align-items:center;
justify-content:center;
width:100%;
margin-top:22px;
padding:14px 18px;
border-radius:14px;
font-weight:700;
font-size:.95rem;
text-decoration:none;
transition:.3s ease;
}

.paypal-btn{
background:#2563eb;
color:#fff;
box-shadow:0 10px 25px rgba(37,99,235,.25);
}

.paypal-btn:hover{
transform:translateY(-3px);
box-shadow:0 14px 35px rgba(37,99,235,.4);
background:#1d4ed8;
}

/* Separación entre formulario y pagos */

.payments{
    margin-top: 80px;
}

/* Eliminar espacio negro */

.cta{
    padding-bottom: 20px;
    margin-bottom: 0;
}

.footer{
    margin-top: 0;
}


/*NUEVO*/


/*======================================
        PLANES PRO INNOVAWEB
=======================================*/

.planes-pro {
  padding: 120px 20px;
  background:
    radial-gradient(circle at top, rgba(30,144,255,.16), transparent 35%),
    linear-gradient(180deg, #050816, #020617);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.planes-header {
  max-width: 800px;
  margin: 0 auto 70px;
}

.planes-tag {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(30,144,255,.12);
  border: 1px solid rgba(30,144,255,.45);
  color: #60a5fa;
  font-weight: 700;
  margin-bottom: 20px;
}

.planes-header h2 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  margin-bottom: 20px;
}

.planes-header p {
  color: #cbd5e1;
  line-height: 1.8;
}

.planes-grid {
  max-width: 1250px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.plan-card {
  position: relative;
  padding: 42px 32px;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(15,23,42,.96), rgba(2,6,23,.96));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 25px 70px rgba(0,0,0,.45);
  text-align: left;
  overflow: hidden;
  transition: .35s ease;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background:
    linear-gradient(135deg, rgba(30,144,255,.55), transparent 35%, rgba(255,255,255,.08));
  opacity: 0;
  transition: .35s ease;
  z-index: 0;
}

.plan-card:hover::before,
.plan-featured::before {
  opacity: 1;
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 35px 90px rgba(30,144,255,.18);
}

.plan-featured {
  transform: translateY(-18px);
  border: 1px solid rgba(30,144,255,.45);
  box-shadow: 0 35px 90px rgba(30,144,255,.22);
}

.plan-featured:hover {
  transform: translateY(-25px);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 8px 15px;
  border-radius: 999px;
  background: linear-gradient(135deg, #facc15, #f97316);
  color: #111;
  font-weight: 900;
  font-size: .8rem;
  z-index: 3;
}

.plan-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: linear-gradient(135deg, #1e90ff, #2563eb);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  margin-bottom: 24px;
  box-shadow: 0 15px 35px rgba(30,144,255,.28);
}

.plan-category {
  color: #60a5fa;
  font-weight: 800;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.plan-card h3 {
  font-size: 1.9rem;
  color: #fff;
  margin: 12px 0;
}

.plan-description {
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 28px;
  min-height: 78px;
}

.plan-price {
  margin-bottom: 22px;
}

.plan-price span,
.plan-price small {
  display: block;
  color: #94a3b8;
  font-size: .9rem;
}

.plan-price strong {
  display: block;
  font-size: 2.8rem;
  color: #fff;
  line-height: 1.1;
}

.hosting-box {
  padding: 18px;
  border-radius: 20px;
  background: rgba(30,144,255,.10);
  border: 1px solid rgba(30,144,255,.25);
  margin-bottom: 28px;
}

.hosting-box p {
  color: #94a3b8;
  font-size: .9rem;
  margin-bottom: 4px;
}

.hosting-box strong {
  color: #60a5fa;
  font-size: 1.1rem;
}

.premium-box {
  background: rgba(250,204,21,.10);
  border-color: rgba(250,204,21,.35);
}

.premium-box strong {
  color: #facc15;
}

.plan-list {
  list-style: none;
  display: grid;
  gap: 13px;
  margin-bottom: 32px;
  padding: 0;
}

.plan-list li {
  color: #e5e7eb;
  font-size: .95rem;
  line-height: 1.5;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.plan-list i {
  color: #22c55e;
  margin-top: 4px;
}

.plan-btn {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 16px 20px;
  border-radius: 18px;
  background: rgba(255,255,255,.06);
  color: #fff;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,.12);
  transition: .3s ease;
}

.plan-btn:hover {
  background: #1e90ff;
  box-shadow: 0 15px 35px rgba(30,144,255,.35);
  transform: translateY(-3px);
}

.featured-btn {
  background: linear-gradient(135deg, #1e90ff, #2563eb);
  box-shadow: 0 15px 35px rgba(30,144,255,.25);
}

.planes-note {
  max-width: 850px;
  margin: 45px auto 0;
  color: #94a3b8;
  font-size: .92rem;
  line-height: 1.7;
}

/* RESPONSIVE */

@media (max-width: 1050px) {
  .planes-grid {
    grid-template-columns: 1fr;
    max-width: 620px;
  }

  .plan-featured {
    transform: none;
  }

  .plan-featured:hover {
    transform: translateY(-10px);
  }

  .plan-description {
    min-height: auto;
  }
}

@media (max-width: 520px) {
  .planes-pro {
    padding: 90px 18px;
  }

  .plan-card {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .popular-badge {
    position: static;
    display: inline-block;
    margin-bottom: 20px;
  }

  .plan-price strong {
    font-size: 2.3rem;
  }
}

#typed {
  display: inline-block;
  background: linear-gradient(135deg, #60a5fa, #1e90ff, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(30,144,255,.75));
}

.typed-cursor {
  color: #00e5ff;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(0,229,255,.9);
}


.services {
  position: relative;
  padding: 120px 20px;
  background:
    radial-gradient(circle at top, rgba(30,144,255,.16), transparent 35%),
    linear-gradient(180deg, #050816, #020617);
  overflow: hidden;
}

.section-tag {
  display: inline-block;
  margin-bottom: 18px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(30,144,255,.12);
  border: 1px solid rgba(96,165,250,.35);
  color: #93c5fd;
  font-size: .85rem;
  font-weight: 700;
}

.services h2 {
  max-width: 850px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 5vw, 3.8rem);
  line-height: 1.08;
}

.services-sub {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: auto;
}

.service-card {
  min-height: 330px;
  justify-content: flex-start;
  text-align: left;
}

.service-card i {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  margin-bottom: 26px;
  background: rgba(30,144,255,.12);
  border: 1px solid rgba(96,165,250,.25);
  color: #38bdf8;
  font-size: 1.9rem;
}

.service-card h3 {
  font-size: 1.45rem;
  margin-bottom: 16px;
}

.service-card p {
  color: #cbd5e1;
  font-size: .98rem;
  line-height: 1.75;
}

.featured-service {
  border: 1px solid rgba(56,189,248,.5);
  box-shadow: 0 0 45px rgba(30,144,255,.18);
}

@media (max-width: 768px) {
  .services {
    padding: 90px 18px;
  }

  .service-card {
    min-height: auto;
    text-align: center;
    align-items: center;
  }

  .service-card i {
    margin-left: auto;
    margin-right: auto;
  }
}



/* =========================
   PLANES RESPONSIVE
========================= */

.planes-pro {
  padding: 120px 20px;
  background: linear-gradient(180deg, #020617, #050816);
  overflow: hidden;
}

.planes-header {
  max-width: 850px;
  margin: 0 auto 60px;
  text-align: center;
}

.planes-header h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.planes-header p {
  color: #cbd5e1;
  font-size: 1rem;
  line-height: 1.8;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.plan-card {
  width: 100%;
  min-width: 0;
  padding: 36px 28px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
}

.plan-list {
  flex: 1;
}

.plan-btn {
  margin-top: auto;
}

/* =========================
   FEATURES RESPONSIVE
========================= */

.features {
  padding: 120px 20px;
  background: #020617;
  overflow: hidden;
}

.features h2 {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  width: 100%;
  min-width: 0;
  border-radius: 28px;
  overflow: hidden;
  background: rgba(15, 23, 42, .95);
  border: 1px solid rgba(255,255,255,.08);
}

.feature-card img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.feature-content {
  padding: 28px;
}

.feature-content h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
}

.feature-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-content li {
  margin-bottom: 12px;
  color: #cbd5e1;
  line-height: 1.5;
}

/* TABLET */
@media (max-width: 1024px) {
  .planes-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-featured {
    transform: none;
  }
}

/* CELULAR */
@media (max-width: 768px) {
  .planes-pro,
  .features {
    padding: 90px 16px;
  }

  .planes-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .plan-card,
  .feature-card {
    border-radius: 24px;
  }

  .plan-card {
    padding: 30px 22px;
  }

  .feature-card img {
    height: 210px;
  }

  .feature-content {
    padding: 24px 22px;
  }
}

/* CELULAR PEQUEÑO */
@media (max-width: 480px) {
  .planes-pro,
  .features {
    padding: 75px 14px;
  }

  .planes-header {
    margin-bottom: 42px;
  }

  .plan-card {
    padding: 26px 18px;
  }

  .plan-price strong {
    font-size: 2.2rem;
  }

  .feature-card img {
    height: 190px;
  }

  .feature-content h3 {
    font-size: 1.15rem;
  }

  .feature-content li {
    font-size: .92rem;
  }
}

/* =====================================================
   PARCHE FINAL INNOVAWEB - RESPONSIVE + HERO + PLANES
   Agregar al final del CSS o usar este archivo completo
===================================================== */

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  background: #050816;
}

img, video, canvas, svg {
  max-width: 100%;
  height: auto;
}

#typed {
  display: inline-block;
  background: linear-gradient(135deg, #60a5fa, #1e90ff, #00e5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 22px rgba(30,144,255,.75));
}

.typed-cursor {
  color: #00e5ff;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(0,229,255,.9);
}

.nav {
  box-sizing: border-box;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* SERVICIOS PREMIUM */
.services {
  position: relative;
  padding: 120px 20px;
  background:
    radial-gradient(circle at top, rgba(30,144,255,.16), transparent 35%),
    linear-gradient(180deg, #050816, #020617);
  overflow: hidden;
}

.section-tag,
.planes-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 9px 20px;
  border-radius: 999px;
  background: rgba(30,144,255,.12);
  border: 1px solid rgba(96,165,250,.35);
  color: #93c5fd;
  font-size: .85rem;
  font-weight: 700;
}

.services h2,
.planes-header h2,
.features h2 {
  max-width: 850px;
  margin: 0 auto 18px;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -1px;
}

.services-sub,
.planes-header p {
  max-width: 720px;
  margin: 0 auto 60px;
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.8;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1180px;
  margin: auto;
}

.service-card {
  min-height: 330px;
  justify-content: flex-start;
  text-align: left;
}

.service-card i {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  margin-bottom: 26px;
  background: rgba(30,144,255,.12);
  border: 1px solid rgba(96,165,250,.25);
  color: #38bdf8;
  font-size: 1.9rem;
}

.featured-service {
  border: 1px solid rgba(56,189,248,.5) !important;
  box-shadow: 0 0 45px rgba(30,144,255,.18) !important;
}

/* PLANES PRO RESPONSIVE */
.planes-pro {
  padding: 120px 20px;
  background:
    radial-gradient(circle at top, rgba(30,144,255,.12), transparent 34%),
    linear-gradient(180deg, #020617, #050816);
  overflow: hidden;
}

.planes-header {
  max-width: 850px;
  margin: 0 auto 62px;
  text-align: center;
}

.planes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: stretch;
}

.plan-card {
  position: relative;
  width: 100%;
  min-width: 0;
  padding: 36px 28px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  text-align: left;
  background: linear-gradient(145deg, rgba(17,24,39,.97), rgba(8,13,28,.97));
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 18px 50px rgba(0,0,0,.42);
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(30,144,255,.12), transparent 58%);
  animation: glowMove 14s linear infinite;
  z-index: 0;
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-featured {
  border-color: rgba(56,189,248,.55);
  box-shadow: 0 0 55px rgba(30,144,255,.22);
  transform: translateY(-10px);
}

.popular-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #1e90ff, #2563eb);
  color: #fff;
  font-size: .78rem;
  font-weight: 800;
  z-index: 3;
}

.plan-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(30,144,255,.12);
  border: 1px solid rgba(96,165,250,.24);
}

.plan-icon i {
  margin: 0;
  color: #38bdf8;
  font-size: 1.7rem;
}

.plan-category {
  color: #93c5fd;
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.plan-card h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #fff;
}

.plan-description {
  color: #cbd5e1;
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.plan-price {
  margin: 10px 0 18px;
}

.plan-price span,
.plan-price small {
  color: #cbd5e1;
  font-size: .95rem;
}

.plan-price strong {
  display: inline-block;
  margin: 0 6px;
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  color: #fff;
  letter-spacing: -1px;
}

.hosting-box {
  padding: 16px 18px;
  margin: 4px 0 24px;
  border-radius: 18px;
  background: rgba(30,144,255,.08);
  border: 1px solid rgba(96,165,250,.16);
}

.hosting-box p {
  margin: 0 0 2px;
  color: #cbd5e1;
  font-size: .88rem;
}

.hosting-box strong {
  color: #fff;
  font-size: 1.05rem;
}

.premium-box {
  background: rgba(250,204,21,.08);
  border-color: rgba(250,204,21,.22);
}

.plan-list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 26px !important;
  display: flex;
  flex-direction: column;
  gap: 13px;
  flex: 1;
}

.plan-list li {
  list-style: none !important;
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  color: #e5e7eb;
  line-height: 1.45;
  font-size: .96rem;
}

.plan-list li::marker {
  content: "";
}

.plan-list li i {
  color: #22c55e;
  margin: 4px 0 0;
  font-size: .95rem;
}

.plan-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  padding: 15px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  font-weight: 800;
  text-align: center;
  transition: .3s ease;
}

.plan-btn:hover,
.featured-btn {
  background: linear-gradient(135deg, #1e90ff, #2563eb);
  box-shadow: 0 14px 35px rgba(30,144,255,.32);
}

.planes-note {
  max-width: 780px;
  margin: 42px auto 0;
  color: #94a3b8;
  font-size: .92rem;
  line-height: 1.7;
}

/* FEATURES RESPONSIVE */
.features {
  padding: 120px 20px;
  background: #020617;
  overflow: hidden;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 58px auto 0;
}

.feature-card {
  width: 100%;
  min-width: 0;
  border-radius: 28px;
  overflow: hidden;
}

.feature-card img {
  width: 100%;
  height: 230px;
  display: block;
  object-fit: cover;
}

.feature-content {
  padding: 28px;
}

.feature-content ul {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.feature-content li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

/* TABLET */
@media (max-width: 1024px) {
  .planes-grid,
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .plan-featured {
    transform: none;
  }
}

/* IPHONE / MOBILE */
@media (max-width: 768px) {
  .nav {
    height: 70px;
    padding: 0 22px;
  }

  .logo {
    font-size: clamp(1.8rem, 8vw, 2.55rem);
    margin-left: 0;
    line-height: 1;
  }

  .menu-toggle {
    display: flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
  }

  .hero {
    min-height: 100svh;
    padding: 120px 14px 70px;
  }

  .hero-content {
    width: 100%;
    padding: 34px 18px;
    border-radius: 26px;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 11vw, 3.3rem);
    letter-spacing: -1.2px;
    line-height: 1.06;
  }

  .hero p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .services,
  .planes-pro,
  .features {
    padding: 86px 16px;
  }

  .services h2,
  .planes-header h2,
  .features h2 {
    font-size: clamp(2rem, 10vw, 2.65rem);
    line-height: 1.12;
  }

  .services-sub,
  .planes-header p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 42px;
  }

  .services-grid,
  .planes-grid,
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .service-card,
  .plan-card,
  .feature-card {
    border-radius: 24px;
  }

  .service-card {
    min-height: auto;
    text-align: center;
    align-items: center;
  }

  .service-card i {
    margin-left: auto;
    margin-right: auto;
  }

  .plan-card {
    padding: 30px 22px;
    text-align: left;
  }

  .plan-card h3 {
    font-size: 1.55rem;
  }

  .plan-price strong {
    font-size: 2.15rem;
  }

  .feature-card img {
    height: 210px;
  }

  .feature-content {
    padding: 24px 22px;
  }
}

/* IPHONE SE / CELULAR PEQUEÑO */
@media (max-width: 390px) {
  .nav {
    padding: 0 18px;
  }

  .logo {
    font-size: 2.05rem;
  }

  .menu-toggle {
    width: 52px;
    height: 52px;
  }

  .services,
  .planes-pro,
  .features {
    padding: 74px 14px;
  }

  .planes-header {
    margin-bottom: 38px;
  }

  .services h2,
  .planes-header h2,
  .features h2 {
    font-size: 2.15rem;
    letter-spacing: -0.8px;
  }

  .planes-header p,
  .services-sub {
    font-size: .96rem;
  }

  .plan-card {
    padding: 26px 18px;
  }

  .plan-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 14px;
  }

  .plan-card h3 {
    font-size: 1.42rem;
  }

  .plan-description {
    font-size: .94rem;
  }

  .hosting-box {
    padding: 14px 15px;
  }

  .plan-list li {
    font-size: .92rem;
  }

  .feature-card img {
    height: 190px;
  }

  .feature-content h3 {
    font-size: 1.12rem;
  }

  .feature-content li {
    font-size: .9rem;
  }
}

/* =====================================================
   FIX FINAL INNOVAWEB - SCROLL SUAVE SIN SALTOS EN MÓVIL
   Mantiene el diseño, pero desactiva efectos pesados solo en pantallas pequeñas.
===================================================== */

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  width: 100%;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

img {
  display: block;
  height: auto;
}

section {
  scroll-margin-top: 90px;
}

#typed {
  display: inline-block;
  min-width: 210px;
  min-height: 1.05em;
  white-space: nowrap;
}

#ventas,
#metricNumber,
.plan-price strong {
  font-variant-numeric: tabular-nums;
}

#ventas {
  min-width: 180px;
  display: inline-block;
}

.benefit-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
}

.avatar {
  width: 75px;
  height: 75px;
  object-fit: cover;
}

.feature-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.plan-list,
.price-card ul,
.feature-content ul,
.about-list {
  list-style: none !important;
}

.plan-list {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.plan-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
}

.plan-list li i {
  flex: 0 0 auto;
  min-width: 18px;
  margin-top: 5px;
}

@media (max-width: 768px) {
  html {
    scroll-behavior: auto;
  }

  body {
    overscroll-behavior-y: none;
  }

  .hero {
    min-height: auto !important;
    padding: 112px 16px 64px !important;
    contain: layout paint;
  }

  .hero-content {
    width: 100%;
    padding: 32px 18px !important;
    border-radius: 26px !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 10vw, 2.75rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -1px !important;
  }

  #typed {
    min-width: 0;
    white-space: normal;
  }

  .hero p {
    font-size: .96rem !important;
    line-height: 1.65 !important;
  }

  .hero-trust {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-trust div {
    padding: 14px !important;
  }

  section {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
    scroll-margin-top: 82px;
  }

  .metric-container {
    margin-top: 35px !important;
  }

 .reveal,
.reveal.active {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

  .card,
  .price-card,
  .plan-card,
  .feature-card,
  .benefit-card,
  .testimonial,
  .about-box,
  .glow-card,
  .btn,
  .plan-btn,
  .chat-button,
  .footer-social a,
  .footer-col ul li,
  .chat-btn,
  .feature-card img {
    transition: none !important;
  }

  .card:hover,
  .price-card:hover,
  .plan-card:hover,
  .feature-card:hover,
  .benefit-card:hover,
  .testimonial:hover,
  .about-box:hover,
  .glow-card:hover,
  .btn:hover,
  .plan-btn:hover,
  .chat-button:hover,
  .footer-social a:hover,
  .footer-col ul li:hover,
  .chat-btn:hover,
  .feature-card:hover img {
    transform: none !important;
  }

  .card::before,
  .price-card::before,
  .plan-card::before,
  .feature-card::before,
  .glow-card::before,
  .glow-card::after {
    animation: none !important;
  }

  #ventas,
  #metricNumber,
  .avatar-ring {
    animation: none !important;
  }

  .card,
  .price-card,
  .plan-card,
  .feature-card,
  .benefit-card,
  .testimonial,
  .about-box,
  .glow-card,
  input,
  select,
  textarea,
  .btn.ghost {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .card,
  .price-card,
  .plan-card,
  .feature-card,
  .benefit-card,
  .testimonial {
    box-shadow: 0 10px 26px rgba(0,0,0,.32) !important;
  }

  .plans-pro,
  .planes-pro,
  .services,
  .features,
  .benefits,
  .about,
  .cta,
  .testimonials,
  .testimonials-slider,
  .testimonial-form {
    overflow: hidden;
  }

  .planes-grid,
  .features-grid,
  .services-grid,
  .cards,
  .price-cards {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .plan-card {
    height: auto !important;
    min-height: auto !important;
    padding: 28px 20px !important;
  }

  .plan-featured {
    transform: none !important;
  }

  .plan-list {
    margin: 22px 0 !important;
    padding: 0 !important;
  }

  .plan-list li {
    margin-bottom: 12px !important;
    line-height: 1.45 !important;
  }

  .feature-card img {
    height: 200px !important;
  }

  .nav {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .nav-links {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
}

@media (max-width: 480px) {
  .hero {
    padding-top: 105px !important;
  }

  .hero-content {
    padding: 28px 16px !important;
  }

  .hero-tag {
    font-size: .78rem !important;
    padding: 9px 14px !important;
  }

  .hero h1 {
    font-size: 2.08rem !important;
  }

  .hero-actions .btn,
  .plan-btn {
    width: 100% !important;
  }

  section h2,
  .planes-header h2,
  .services h2,
  .features h2 {
    font-size: clamp(1.75rem, 8vw, 2.1rem) !important;
    line-height: 1.16 !important;
  }

  .card,
  .price-card,
  .benefit-card,
  .feature-card,
  .testimonial {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }

  .feature-card {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .feature-card img {
    height: 185px !important;
  }

  .plan-price strong {
    font-size: 2.15rem !important;
  }

  #ventas {
    font-size: 50px !important;
    min-width: 120px;
  }

  #metricNumber {
    font-size: 50px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}


/* =========================
   FIX SALTO TESTIMONIOS
========================= */

.testimonials-slider {
  overflow: hidden;
}

.testimonials-swiper {
  min-height: 420px;
}

.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.testimonials-swiper .testimonial {
  width: 100%;
  min-height: 340px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonials-swiper .testimonial p {
  min-height: 85px;
}

@media (max-width: 768px) {
  .testimonials-swiper {
    min-height: 390px;
  }

  .testimonials-swiper .testimonial {
    min-height: 310px;
  }

  .testimonials-swiper .testimonial p {
    min-height: 95px;
  }
}


/* FIX SALTO HERO TYPED */
#typed {
  display: inline-block;
  min-width: 360px;
  min-height: 1.1em;
}

.typed-cursor {
  display: inline-block;
}

@media (max-width: 768px) {
  #typed {
    min-width: 100%;
    min-height: 1.15em;
    display: block;
  }

  .typed-cursor {
    display: none !important;
  }
}

/* =========================
   FIX FINAL MÓVIL SIN SALTOS
========================= */

@media (max-width: 768px) {

  /* Hace visibles las secciones con AOS en móvil */
  [data-aos],
  [data-aos].aos-animate {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .features,
  .features-grid,
  .feature-card {
    opacity: 1 !important;
    visibility: visible !important;
    display: block;
  }

  .features-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  /* Quita saltos del hero typed */
  #typed {
    display: block !important;
    min-height: 1.2em !important;
    min-width: 100% !important;
    white-space: normal !important;
  }

  .typed-cursor {
    display: none !important;
  }

  /* Quita movimientos pesados en móvil */
  .reveal,
  .reveal.active,
  .card,
  .plan-card,
  .feature-card,
  .benefit-card,
  .testimonial,
  .about-box,
  .glow-card {
    transform: none !important;
    transition: none !important;
    animation: none !important;
  }

  .card::before,
  .price-card::before,
  .feature-card::before,
  .glow-card::before {
    animation: none !important;
  }
}


.hero canvas {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
}

.hero-overlay {
  z-index: 1;
}

.hero-content,
.nav {
  position: relative;
  z-index: 3;
}

.hero canvas {
   opacity: .85 !important;
}



/* =====================================================
   FIX FINAL INNOVAWEB - ORDEN HERO + MÓVIL SIN SALTOS
   Pegar al final / incluido en este archivo completo.
===================================================== */

/* Base estable */
html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
  background: #050816;
}

body {
  min-width: 0;
}

img,
video,
canvas,
svg {
  max-width: 100%;
}

/* =========================
   HERO ESTABLE
========================= */

.hero {
  position: relative !important;
  isolation: isolate !important;
  width: 100% !important;
  min-height: 100svh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 135px 20px 90px !important;
  text-align: center !important;
  overflow: hidden !important;
  background:
    radial-gradient(circle at top left, rgba(30,144,255,.22), transparent 34%),
    radial-gradient(circle at bottom right, rgba(37,99,235,.16), transparent 38%),
    linear-gradient(180deg, #050816 0%, #020617 100%) !important;
}

.hero canvas {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: .28 !important;
}

.hero-overlay{

    position:absolute;
    inset:0;
    z-index:2;

    background:
    radial-gradient(circle at top left,
    rgba(30,144,255,.10),
    transparent 45%),

    radial-gradient(circle at bottom right,
    rgba(0,212,255,.08),
    transparent 45%),

    linear-gradient(
    rgba(5,8,22,.25),
    rgba(5,8,22,.45));
}

.hero-content {
  position:relative;
    z-index:5;
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  margin: 0 auto !important;
  transform: none !important;
}

.nav {
  position: fixed !important;
  z-index: 1000 !important;
}

/* Typed estable */
#typed {
  display: inline-block !important;
  min-width: 360px;
  min-height: 1.1em;
}

.typed-cursor {
  display: inline-block;
}

/* =========================
   SECCIONES VISIBLES
========================= */

.reveal,
.reveal.active {
  opacity: 1 !important;
  visibility: visible !important;
}

[data-aos] {
  visibility: visible;
}

/* =========================
   SOLUCIONES / FEATURES
========================= */

.features {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  padding: 110px 20px !important;
  background: #020617 !important;
  overflow: hidden !important;
}

.features h2 {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  text-align: center !important;
  max-width: 850px !important;
  margin: 0 auto 58px !important;
}

.features-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 28px !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.feature-card {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 0 !important;
}

.feature-card img {
  width: 100% !important;
  height: 220px !important;
  object-fit: cover !important;
  display: block !important;
}

/* =========================
   TESTIMONIOS ESTABLES
========================= */

.testimonials-slider {
  overflow: hidden !important;
}

.testimonials-swiper {
  min-height: 420px !important;
}

.testimonials-swiper .swiper-wrapper {
  align-items: stretch !important;
}

.testimonials-swiper .swiper-slide {
  height: auto !important;
  display: flex !important;
  align-items: stretch !important;
}

.testimonials-swiper .testimonial {
  width: 100% !important;
  min-height: 340px !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.testimonials-swiper .testimonial p {
  min-height: 85px !important;
}

/* =========================
   RESPONSIVE TABLET
========================= */

@media (max-width: 1024px) {
  .features-grid,
  .planes-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .plan-featured {
    transform: none !important;
  }
}

/* =========================
   RESPONSIVE MÓVIL
========================= */

@media (max-width: 768px) {
  html {
    scroll-behavior: auto !important;
  }

  body {
    overscroll-behavior-y: none;
  }

  /* Hero sin Vanta en móvil */
  .hero {
    min-height: auto !important;
    padding: 110px 16px 70px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background:
      radial-gradient(circle at top left, rgba(30,144,255,.24), transparent 36%),
      radial-gradient(circle at bottom right, rgba(37,99,235,.16), transparent 38%),
      linear-gradient(180deg, #050816 0%, #020617 100%) !important;
  }

  .hero canvas {
    display: none !important;
  }

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 32px 18px !important;
    border-radius: 26px !important;
    margin: 0 auto !important;
    transform: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .hero h1 {
    font-size: clamp(2.05rem, 9vw, 2.75rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -1px !important;
  }

  #typed {
    display: block !important;
    min-width: 100% !important;
    min-height: 1.2em !important;
    white-space: normal !important;
  }

  .typed-cursor {
    display: none !important;
  }

  .hero p {
    font-size: .96rem !important;
    line-height: 1.65 !important;
  }

  .hero-actions {
    flex-direction: column !important;
    gap: 14px !important;
  }

  .hero-actions .btn,
  .plan-btn {
    width: 100% !important;
  }

  .hero-trust {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-trust div {
    padding: 14px !important;
  }

  section {
    padding-top: 76px !important;
    padding-bottom: 76px !important;
    scroll-margin-top: 82px !important;
  }

  /* AOS visible en móvil */
  [data-aos],
  [data-aos].aos-animate {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
  }

  .reveal,
  .reveal.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    transition: none !important;
  }

  /* Features móvil */
  .features {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    padding: 86px 16px !important;
  }

  .features h2 {
    font-size: clamp(2rem, 10vw, 2.65rem) !important;
    line-height: 1.12 !important;
    margin-bottom: 42px !important;
  }

  .features-grid,
  .planes-grid,
  .services-grid,
  .cards,
  .price-cards {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .feature-card {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    border-radius: 24px !important;
  }

  .feature-card img {
    height: 200px !important;
  }

  /* Quita saltos por hover y animación */
  .card,
  .price-card,
  .plan-card,
  .feature-card,
  .benefit-card,
  .testimonial,
  .about-box,
  .glow-card,
  .btn,
  .plan-btn,
  .chat-button,
  .footer-social a,
  .footer-col ul li,
  .chat-btn,
  .feature-card img {
    transition: none !important;
  }

  .card:hover,
  .price-card:hover,
  .plan-card:hover,
  .feature-card:hover,
  .benefit-card:hover,
  .testimonial:hover,
  .about-box:hover,
  .glow-card:hover,
  .btn:hover,
  .plan-btn:hover,
  .chat-button:hover,
  .footer-social a:hover,
  .footer-col ul li:hover,
  .chat-btn:hover,
  .feature-card:hover img {
    transform: none !important;
  }

  .card::before,
  .price-card::before,
  .feature-card::before,
  .glow-card::before {
    animation: none !important;
  }

  .hero-content,
  .card,
  .price-card,
  .plan-card,
  .feature-card,
  .benefit-card,
  .testimonial,
  .about-box,
  .glow-card,
  .btn.ghost,
  input,
  select,
  textarea,
  .nav,
  .nav-links {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .plan-card {
    height: auto !important;
    min-height: auto !important;
    padding: 28px 20px !important;
  }

  .plan-list {
    list-style: none !important;
    margin: 22px 0 !important;
    padding: 0 !important;
  }

  .plan-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
    text-align: left !important;
    margin-bottom: 12px !important;
    line-height: 1.45 !important;
  }

  .plan-list li i {
    min-width: 18px !important;
    margin-top: 5px !important;
  }

  .testimonials-swiper {
    min-height: 390px !important;
  }

  .testimonials-swiper .testimonial {
    min-height: 310px !important;
  }

  .testimonials-swiper .testimonial p {
    min-height: 95px !important;
  }
}

/* =========================
   MÓVIL PEQUEÑO
========================= */

@media (max-width: 480px) {
  .hero {
    padding-top: 104px !important;
  }

  .hero-content {
    padding: 28px 16px !important;
  }

  .hero-tag {
    font-size: .78rem !important;
    padding: 9px 14px !important;
  }

  .hero h1 {
    font-size: 2.05rem !important;
  }

  section h2,
  .planes-header h2,
  .services h2,
  .features h2 {
    font-size: clamp(1.75rem, 8vw, 2.1rem) !important;
    line-height: 1.16 !important;
  }

  .feature-card img {
    height: 185px !important;
  }

  .plan-price strong {
    font-size: 2.15rem !important;
  }

  #ventas {
    font-size: 50px !important;
    min-width: 120px;
  }

  #metricNumber {
    font-size: 50px !important;
  }
}

/* Accesibilidad: respeta usuarios con reducción de movimiento */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
/* =========================
   FIX HERO DESORDENADO
========================= */

.hero {
  position: relative !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 130px 20px 80px !important;
  text-align: center !important;
  overflow: hidden !important;
}

.nav {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 70px !important;
  z-index: 9999 !important;
}

.hero-content {
  position: relative !important;
  z-index: 3 !important;
  width: min(100%, 920px) !important;
  max-width: 920px !important;
  margin: 0 auto !important;
  transform: none !important;
}

.hero h1 {
  font-size: clamp(2.3rem, 4.6vw, 4.2rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -1px !important;
}

#typed {
  display: block !important;
  min-height: 1.15em !important;
  min-width: 100% !important;
}

.hero canvas {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  opacity: .32 !important;
  pointer-events: none !important;
}

.hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
}

@media (max-width: 768px) {
  .hero {
    background:
      radial-gradient(circle at 15% 15%, rgba(30,144,255,.65), transparent 34%),
      radial-gradient(circle at 85% 25%, rgba(0,212,255,.55), transparent 36%),
      radial-gradient(circle at 50% 100%, rgba(37,99,235,.45), transparent 42%),
      linear-gradient(180deg, #050816, #020617) !important;
  }
}

  .hero-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 30px 18px !important;
  }

  .hero h1 {
    font-size: clamp(2rem, 9vw, 2.55rem) !important;
  }

  .hero canvas {
    display: none !important;
  }



/* =====================================================
   INNOVAWEB - AJUSTE FINAL HERO PREMIUM
   Mantiene todas las secciones existentes.
   Mejora:
   - Hero estable sin brincos
   - Texto menos grande en PC
   - Typed sin mover el layout
   - Fondo eléctrico visible en PC y móvil
===================================================== */

/* ESTRUCTURA HERO ESTABLE */
.hero {
  position: relative;
  overflow: hidden;
  background: #06182d !important;
}

#electricHero {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(5, 8, 22, .15) !important;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  background: rgba(2, 6, 23, .38) !important;
}

/* EFECTO ELÉCTRICO CSS DE APOYO */
.hero::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background-image:
    linear-gradient(rgba(96,165,250,.20) 1px, transparent 1px),
    linear-gradient(90deg, rgba(96,165,250,.20) 1px, transparent 1px);
  background-size: 42px 42px !important;
  opacity: .42 !important;
  mask-image: radial-gradient(circle at center, #000 18%, transparent 78%);
  -webkit-mask-image: radial-gradient(circle at center, #000 18%, transparent 78%);
  animation: heroGridMove 18s linear infinite !important;
}

.hero::before,
.hero::after {
  display: none !important;
}
.hero::after {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  inset: -30% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 30% 30%, rgba(0,229,255,.24), transparent 34%),
    radial-gradient(circle at 70% 45%, rgba(30,144,255,.22), transparent 35%),
    conic-gradient(from 180deg, transparent, rgba(0,212,255,.30), transparent, rgba(30,144,255,.18), transparent);
  filter: blur(34px) !important;
  opacity: .95 !important;
  animation: heroElectricMove 16s linear infinite !important;
}

/* VANTA EN PC: MÁS VISIBLE PERO CONTROLADO */
.hero canvas{
    position:absolute !important;
    inset:0;
    width:100% !important;
    height:100% !important;
    z-index:0 !important;
    opacity:.95;
}

/* OVERLAY MÁS LIVIANO PARA NO TAPAR EL EFECTO */
.hero-overlay {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at top left, rgba(30,144,255,.16), transparent 32%),
    radial-gradient(circle at bottom right, rgba(0,212,255,.12), transparent 38%),
    linear-gradient(180deg, rgba(5,8,22,.06), rgba(5,8,22,.32)) !important;
}

/* CONTENIDO MÁS TRANSPARENTE PARA VER EL FONDO */
.hero-content {
  position: relative !important;
  z-index: 3 !important;
  width: min(100%, 920px) !important;
  margin: 0 auto !important;
  padding: 48px 42px !important;
  border-radius: 34px !important;
  background: rgba(2, 6, 23, .24) !important;
  border: 1px solid rgba(96, 165, 250, .34) !important;
  backdrop-filter: blur(9px) !important;
  -webkit-backdrop-filter: blur(9px) !important;
  box-shadow:
    0 28px 80px rgba(0,0,0,.38),
    0 0 70px rgba(30,144,255,.18) !important;
}

/* NAV SIEMPRE ENCIMA */
.nav {
  z-index: 20 !important;
}

/* TEXTO HERO MÁS ESTABLE */
.hero h1 {
  max-width: 880px !important;
  margin: 0 auto 24px !important;
  font-size: clamp(2.35rem, 4.8vw, 4.45rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -1.6px !important;
}

/* TYPED NO MUEVE LA PÁGINA */
#typed {
  display: block !important;
  min-height: 1.16em !important;
  line-height: 1.1 !important;
  white-space: normal !important;
  background: linear-gradient(135deg, #7dd3fc, #1e90ff, #00e5ff) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 0 22px rgba(0, 212, 255, .58)) !important;
}

.typed-cursor {
  display: none !important;
}

/* PÁRRAFO Y BOTONES ESTABLES */
.hero p {
  max-width: 720px !important;
  margin: 0 auto 32px !important;
  font-size: clamp(.98rem, 1.4vw, 1.12rem) !important;
  line-height: 1.75 !important;
}

.hero-actions {
  margin-bottom: 34px !important;
}

/* ANIMACIONES DE FONDO */
@keyframes heroElectricMove {
  0% {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.08);
  }
  100% {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes heroGridMove {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 84px 84px, 84px 84px;
  }
}

/* TABLET Y MÓVIL */
@media (max-width: 768px) {
  .hero {
    min-height: auto !important;
    padding: 112px 16px 68px !important;
    background:
      radial-gradient(circle at 16% 14%, rgba(30,144,255,.72), transparent 35%),
      radial-gradient(circle at 86% 24%, rgba(0,212,255,.62), transparent 36%),
      radial-gradient(circle at 50% 100%, rgba(37,99,235,.52), transparent 44%),
      linear-gradient(180deg, #050816 0%, #020617 100%) !important;
  }

  /* En móvil no usamos Vanta para evitar distorsión */
  .hero canvas {
    display: none !important;
  }

  .hero::before {
    background-size: 34px 34px !important;
    opacity: .45 !important;
    animation-duration: 22s !important;
  }

  .hero::after {
    inset: -38% !important;
    opacity: 1 !important;
    filter: blur(28px) !important;
    animation-duration: 18s !important;
  }

  .hero-overlay {
    background:
      radial-gradient(circle at top left, rgba(30,144,255,.14), transparent 34%),
      linear-gradient(180deg, rgba(5,8,22,.05), rgba(5,8,22,.24)) !important;
  }

  .hero-content {
    width: 100% !important;
    padding: 30px 18px !important;
    border-radius: 26px !important;
    background: rgba(2, 6, 23, .28) !important;
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.8vw, 2.55rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -.8px !important;
    margin-bottom: 20px !important;
  }

  #typed {
    min-height: 1.22em !important;
  }

  .hero p {
    font-size: .96rem !important;
    line-height: 1.65 !important;
    margin-bottom: 26px !important;
  }

  .hero-actions {
    flex-direction: column !important;
    gap: 12px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
  }

  .hero-trust {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  .hero-trust div {
    padding: 14px !important;
    background: rgba(255,255,255,.07) !important;
  }
}

/* CELULAR PEQUEÑO */
@media (max-width: 480px) {
  .hero {
    padding: 104px 14px 62px !important;
  }

  .hero-content {
    padding: 28px 16px !important;
  }

  .hero-tag {
    font-size: .78rem !important;
    padding: 9px 14px !important;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 9vw, 2.28rem) !important;
  }

  .hero::before {
    background-size: 30px 30px !important;
  }
}

/* POR ACCESIBILIDAD: SI EL USUARIO PIDE MENOS MOVIMIENTO */
@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero::after {
    animation: none !important;
  }
}



/* =====================================================
   FIX FINAL HERO INNOVAWEB - FONDO ELÉCTRICO REAL
   Este bloque debe quedar AL FINAL del CSS.
   Mantiene tus secciones y reemplaza el fondo azul plano.
===================================================== */

.hero{
  position: relative !important;
  overflow: hidden !important;
  isolation: isolate !important;
  background: #06182d !important;
  min-height: 100vh !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 125px 20px 80px !important;
  text-align: center !important;
}

/* Apaga manchas / degradados anteriores del hero */
.hero::before,
.hero::after{
  display: none !important;
  content: none !important;
}

/* Canvas eléctrico generado por script.js */
#electricHero{
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  display: block !important;
  pointer-events: none !important;
  opacity: 1 !important;
}

/* Si Vanta dejó otro canvas, lo ocultamos */
.hero > canvas:not(#electricHero){
  display: none !important;
}

/* Overlay oscuro liviano: permite ver las líneas eléctricas */
.hero-overlay{
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  pointer-events: none !important;
  background:
    radial-gradient(circle at 20% 15%, rgba(30,144,255,.08), transparent 38%),
    radial-gradient(circle at 80% 20%, rgba(0,212,255,.06), transparent 36%),
    linear-gradient(180deg, rgba(2,6,23,.10), rgba(2,6,23,.32)) !important;
}

/* Panel más transparente para que se vea el efecto detrás */
.hero-content{
  position: relative !important;
  z-index: 3 !important;
  max-width: 920px !important;
  margin: 0 auto !important;
  padding: 50px 42px !important;
  border-radius: 34px !important;
  background: rgba(2, 6, 23, .34) !important;
  border: 1px solid rgba(96, 165, 250, .32) !important;
  backdrop-filter: blur(7px) !important;
  -webkit-backdrop-filter: blur(7px) !important;
  box-shadow:
    0 28px 90px rgba(0,0,0,.44),
    0 0 70px rgba(30,144,255,.15) !important;
}

.hero h1{
  font-size: clamp(2.35rem, 4.7vw, 4.55rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -1.4px !important;
  margin-bottom: 22px !important;
}

#typed{
  display: block !important;
  min-height: 1.12em !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  background: linear-gradient(135deg, #60a5fa, #1e90ff, #00d4ff) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  filter: drop-shadow(0 0 20px rgba(30,144,255,.55)) !important;
}

.typed-cursor{
  display: none !important;
}

.hero p{
  max-width: 760px !important;
  margin: 0 auto 32px !important;
  color: #dbeafe !important;
  font-size: clamp(.98rem, 1.4vw, 1.12rem) !important;
  line-height: 1.75 !important;
}

.hero-tag{
  background: rgba(2, 6, 23, .42) !important;
  border: 1px solid rgba(96,165,250,.58) !important;
  box-shadow: 0 0 28px rgba(30,144,255,.22) !important;
}

/* MÓVIL */
@media (max-width: 768px){
  .hero{
    min-height: auto !important;
    padding: 108px 14px 64px !important;
    background: #06182d !important;
  }

  #electricHero{
    opacity: 1 !important;
  }

  .hero-overlay{
    background:
      linear-gradient(180deg, rgba(2,6,23,.08), rgba(2,6,23,.34)) !important;
  }

  .hero-content{
    width: 100% !important;
    padding: 30px 18px !important;
    border-radius: 26px !important;
    background: rgba(2,6,23,.38) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
  }

  .hero h1{
    font-size: clamp(2rem, 8.2vw, 2.75rem) !important;
    line-height: 1.12 !important;
    letter-spacing: -0.8px !important;
  }

  #typed{
    white-space: normal !important;
    min-height: 1.18em !important;
  }

  .hero p{
    font-size: .96rem !important;
    line-height: 1.7 !important;
  }
}

@media (max-width: 420px){
  .hero{
    padding: 104px 12px 58px !important;
  }

  .hero-content{
    padding: 28px 16px !important;
  }

  .hero h1{
    font-size: clamp(1.85rem, 9vw, 2.45rem) !important;
  }
}
