
  * {
  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;
}

 /* =========================
   HERO SECTION
========================= */

.hero{
  min-height:100vh;

  background:#050816;

  overflow:hidden;

  position:relative;

  display:flex;
  align-items:center;
  justify-content:center;

  text-align:center;

  padding-top:80px;
  padding-bottom:120px;
}

.hero::after{

  content:"";

  position:absolute;
  inset:0;

background:
linear-gradient(
rgba(0,0,0,0.35),
rgba(0,0,0,0.65));


  background-size:cover;
  background-position:center;

  z-index:0;

  transform:scale(1.08);

  animation:
  heroFloat 6s ease-in-out infinite alternate;

}
/* ================= HERO FLOAT ================= */
@keyframes heroFloat{

  0%{
    transform:
    scale(1.08)
    translateY(0px);
  }

  100%{
    transform:
    scale(1.15)
    translateY(-18px);
  }

}/* =========================
   OVERLAY OSCURO
========================= */

.hero::before{
  content:"";

  position:absolute;
  inset:0;

  background:
  linear-gradient(
  rgba(0,0,0,0.55),
  rgba(0,0,0,0.75));

  z-index:1;
}


/* =========================
   ANIMACIÓN FONDO
========================= */

@keyframes heroFloat{

  0%{
    transform:
    scale(1.05)
    translateY(0px);
  }

  50%{
    transform:
    scale(1.1)
    translateY(-15px);
  }

  100%{
    transform:
    scale(1.05)
    translateY(0px);
  }

}


/* =========================
   HERO CONTENT
========================= */

.hero-content{
  position:relative;

  z-index:3;

  max-width:900px;

  margin:auto;

  text-align:center;

  padding-top:60px;

  backdrop-filter: blur(2px);
}


/* =========================
   HERO TAG
========================= */

.hero-tag{
  display:inline-block;

  margin-bottom:20px;

  padding:10px 22px;

  border-radius:30px;

  font-size:0.85rem;

  font-weight:600;

  background:rgba(30,144,255,0.12);

  border:1px solid #1e90ff;

  backdrop-filter:blur(10px);

  color:#fff;

  box-shadow:
  0 0 20px rgba(30,144,255,0.2);
}


/* =========================
   TITULO
========================= */

.hero h1{
  font-family:"Poppins", sans-serif;

  font-size:4rem;

  line-height:1.05;

  letter-spacing:-2px;

  margin:25px auto;

  max-width:900px;

  color:#fff;

  font-weight:800;

  text-shadow:
  0 8px 40px rgba(0,0,0,0.8);
}


.hero h1 span{
  color:#1e90ff;

  text-shadow:
  0 0 25px rgba(30,144,255,0.35);
}


/* =========================
   TEXTO
========================= */

.hero p{
  max-width:720px;

  margin:0 auto 35px;

  color:#d6d6d6;

  font-size:1.1rem;

  line-height:1.8;
}


/* =========================
   GLOW EFFECT
========================= */

.hero-overlay{
  position:absolute;

  inset:0;

  background:

  radial-gradient(
  circle at top right,
  rgba(59,130,246,0.10),
  transparent 35%),

  radial-gradient(
  circle at bottom left,
  rgba(30,144,255,0.08),
  transparent 40%);

  animation:heroGlow 8s ease-in-out infinite alternate;

  pointer-events:none;

  z-index:2;
}


@keyframes heroGlow{

  0%{
    transform:scale(1);
  }

  100%{
    transform:scale(1.08);
  }

}


/* =========================
   BOTONES
========================= */

.hero-buttons{
  display:flex;

  justify-content:center;

  gap:20px;

  flex-wrap:wrap;

  margin-top:20px;
}


/* =========================
   MICRO TEXTO
========================= */

.micro{
  font-size:0.9rem;

  color:#9ca3af;

  margin-top:18px;
}


/* =========================
   RESPONSIVE MOBILE
========================= */

@media(max-width:768px){

.hero{

  padding-left:20px;
  padding-right:20px;

  padding-top:110px;

  min-height:100vh;
}


.hero-content{
  padding-top:10px;
}


.hero h1{

  font-size:2.3rem;

  line-height:1.08;

  letter-spacing:-1px;

  max-width:330px;

  margin:auto auto 25px;
}


.hero p{

  font-size:15px;

  line-height:1.7;

  max-width:310px;

  margin:25px auto;

  color:#d7d7d7;
}


.hero-buttons{

  flex-direction:column;

  align-items:center;

  gap:14px;
}


.hero-tag{
  font-size:0.78rem;

  padding:9px 18px;
}

}


/* =========================
   EXTRA SMALL DEVICES
========================= */

@media(max-width:480px){

.hero h1{
  font-size:2rem;
}

.hero p{
  font-size:14px;
}

}
  /*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);
}


/* =========================
   CTA SECTION
========================= */

.cta{
  background:
  linear-gradient(
  135deg,
  #0a1f3d,
  #000);
}


/* =========================
   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:150px;

  background:
  linear-gradient(
  135deg,
  #081224,
  #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;

}

}