*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#fff;
  color:#555;
  overflow-x:hidden;
}

h1,h2,h3{
  font-family:'Playfair Display',serif;
  color:#222;
}

nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:18px 40px;
  background:rgba(255,255,255,0.78);
  backdrop-filter:blur(14px);
  z-index:1000;
  box-shadow:0 5px 25px rgba(0,0,0,.05);
}

nav a{
  text-decoration:none;
  color:#333;
  font-weight:500;
}

nav a:first-child{
  font-weight:700;
  font-size:1.1rem;
}

.nav-btn{
  padding:10px 20px;
  border-radius:30px;
  background:#222;
  color:#fff;
  font-size:.9rem;
}

header{
  min-height:100vh;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
  overflow:hidden;
  padding:125px 20px 80px;
}

header::before{
  content:"";
  position:absolute;
  width:140%;
  height:140%;
  top:-20%;
  left:-20%;
  background:
    radial-gradient(circle at 25% 25%, #fbcfe8, transparent 38%),
    radial-gradient(circle at 75% 55%, #c7d2fe, transparent 38%),
    radial-gradient(circle at 50% 82%, #fde68a, transparent 35%);
  filter:blur(80px);
  animation:moveBg 12s infinite alternate ease-in-out;
}

header::after{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(255,255,255,0.55);
  backdrop-filter:blur(24px);
}

.hero-badge,
header h1,
header p,
.hero-actions,
.hero-proof{
  position:relative;
  z-index:2;
}

.hero-badge{
  margin-bottom:22px;
  padding:9px 18px;
  background:rgba(255,255,255,.75);
  border:1px solid rgba(255,255,255,.9);
  border-radius:30px;
  color:#7e22ce;
  font-size:.9rem;
  font-weight:600;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

header h1{
  font-size:3.6rem;
  max-width:900px;
  line-height:1.12;
  animation:slideUp 1s ease;
}

header p{
  margin-top:24px;
  font-size:1.25rem;
  max-width:720px;
  line-height:1.75;
  color:#4b4b4b;
  animation:fadeIn 2s ease;
}

.hero-actions{
  display:flex;
  gap:16px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:36px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:16px 34px;
  background:linear-gradient(135deg,#d8b4f8,#a855f7);
  color:white;
  border-radius:40px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:0;
  transition:.35s ease;
  box-shadow:0 12px 32px rgba(168,85,247,.38);
}

.btn:hover{
  transform:translateY(-3px) scale(1.03);
  box-shadow:0 18px 40px rgba(168,85,247,.5);
}

.btn-secondary{
  background:rgba(255,255,255,.75);
  color:#333;
  border:1px solid rgba(255,255,255,.9);
  box-shadow:0 12px 30px rgba(0,0,0,.08);
}

.hero-proof{
  margin-top:22px;
  font-size:.95rem;
  color:#666;
}

section{
  padding:90px 20px;
  max-width:1120px;
  margin:auto;
}

.section-title{
  text-align:center;
  margin-bottom:18px;
  font-size:2.45rem;
}

.section-subtitle{
  text-align:center;
  max-width:680px;
  margin:0 auto 50px;
  line-height:1.75;
  font-size:1.05rem;
}

.about{
  display:flex;
  align-items:center;
  gap:80px;
}

.about-img{
  flex:0 0 390px;
  display:flex;
  justify-content:center;
  align-items:center;
  position:relative;
}

.about-img::before{
  content:"";
  position:absolute;
  width:340px;
  height:545px;
  background:linear-gradient(135deg,#fce7f3,#ddd6fe);
  border-radius:20px;
  transform:rotate(-4deg);
  z-index:0;
}

.about-img img{
  position:relative;
  z-index:1;
  width: 320px;
  height:545px;
  object-fit:cover;
  object-position:center top;
  border-radius:16px;
  box-shadow:0 25px 55px rgba(0,0,0,.16);
  border:8px solid rgba(255,255,255,.9);
}

.about-text{
  flex:1;
}

.about-text h2{
  font-size:2.4rem;
  margin-bottom:20px;
}

.about-text p{
  font-size:1.08rem;
  line-height:1.85;
  margin-bottom:18px;
}

.trust-list{
  display:grid;
  gap:14px;
  margin-top:26px;
}

.trust-item{
  padding:16px 18px;
  border-radius:14px;
  background:#fff7fb;
  border:1px solid #fce7f3;
  font-weight:500;
  color:#444;
}

.pain{
  background:#fbf7ff;
  max-width:none;
}

.pain-inner{
  max-width:1120px;
  margin:auto;
}

.pain-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:45px;
}

.pain-card{
  background:white;
  padding:28px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,.05);
}

.pain-card h3{
  font-size:1.35rem;
  margin-bottom:12px;
}

.pain-card p{
  line-height:1.7;
}

.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:28px;
}

.card{
  background:#fff;
  padding:32px;
  border-radius:18px;
  box-shadow:0 15px 35px rgba(0,0,0,.06);
  border:1px solid #f4e7ff;
  transition:.35s ease;
}

.card:hover{
  transform:translateY(-8px);
  box-shadow:0 22px 45px rgba(0,0,0,.09);
}

.card h3{
  font-size:1.45rem;
  margin-bottom:14px;
}

.card p{
  line-height:1.75;
}

.process{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}

.step{
  text-align:center;
  padding:32px 24px;
}

.step-number{
  width:54px;
  height:54px;
  margin:0 auto 18px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#a855f7;
  color:white;
  font-weight:700;
  box-shadow:0 12px 25px rgba(168,85,247,.28);
}

.step h3{
  font-size:1.35rem;
  margin-bottom:12px;
}

.step p{
  line-height:1.7;
}

.premium{
  max-width:1120px;
  background:linear-gradient(135deg,#fce7f3,#eef2ff);
  border-radius:26px;
  text-align:center;
  padding:82px 32px;
  box-shadow:0 25px 60px rgba(168,85,247,.12);
}

.premium h2{
  font-size:2.35rem;
  margin-bottom:18px;
}

.premium p{
  max-width:720px;
  padding-bottom:5%;
  margin:auto;
  font-size:1.1rem;
  line-height:1.75;
}

.claridad{
  max-width:1120px;
  text-align:center;
  padding:95px 20px;
}

.claridad-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:45px;
}

.claridad-card{
  background:#fff;
  padding:34px 28px;
  border-radius:20px;
  border:1px solid #f4e7ff;
  box-shadow:0 18px 40px rgba(0,0,0,.06);
  text-align:left;
  transition:.35s ease;
}

.claridad-card:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 50px rgba(168,85,247,.12);
}

.claridad-card span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:42px;
  height:42px;
  margin-bottom:20px;
  border-radius:50%;
  background:#f3e8ff;
  color:#7e22ce;
  font-weight:700;
}

.claridad-card h3{
  font-size:1.35rem;
  margin-bottom:14px;
  line-height:1.35;
}

.claridad-card p{
  line-height:1.75;
  color:#555;
}

.claridad-btn{
  margin-top:42px;
}

.cta{
  text-align:center;
  background:#231f2b;
  color:white;
  border-radius:26px;
  padding:82px 24px;
  margin-bottom:80px;
  position:relative;
  overflow:hidden;
}

.cta::before{
  content:"";
  position:absolute;
  inset:-40%;
  background:
    radial-gradient(circle at 30% 30%, rgba(216,180,248,.45), transparent 35%),
    radial-gradient(circle at 70% 70%, rgba(251,207,232,.35), transparent 35%);
  filter:blur(40px);
}

.cta h2,
.cta p,
.cta .btn,
.cta .cta-note{
  position:relative;
  z-index:1;
}

.cta h2{
  color:white;
  font-size:2.4rem;
  margin-bottom:18px;
}

.cta p{
  max-width:680px;
  margin:auto;
  font-size:1.1rem;
  line-height:1.75;
  color:#f4eaff;
}

.cta .btn{
  margin-top:34px;
  background:#fff;
  color:#222;
  box-shadow:0 14px 35px rgba(255,255,255,.18);
}

.cta-note{
  margin-top:18px;
  font-size:.92rem;
  color:#d8c7e8;
}

.social-float{
  position:fixed;
  right:22px;
  width:58px;
  height:58px;
  border-radius:50%;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  font-size:1.05rem;
  font-weight:800;
  z-index:1200;
  box-shadow:0 12px 28px rgba(0,0,0,.22);
  transition:.3s ease;
}

.social-float:hover{
  transform:translateY(-4px) scale(1.06);
}

.whatsapp-float{
  bottom:22px;
  background:#25D366;
}

.instagram-float{
  bottom:92px;
  background:linear-gradient(135deg,#feda75,#d62976,#962fbf,#4f5bd5);
}

.tiktok-float{
  bottom:162px;
  background:#111;
}

footer{
  text-align:center;
  padding:40px 20px;
  background:#fde2f3;
}

@keyframes fadeIn{
  from{opacity:0}
  to{opacity:1}
}

@keyframes slideUp{
  from{transform:translateY(40px);opacity:0}
  to{transform:translateY(0);opacity:1}
}

@keyframes moveBg{
  0%{transform:translate(0,0)}
  100%{transform:translate(40px,-40px)}
}

@media(max-width:900px){
  .pain-grid,
  .process,
  .claridad-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  nav{
    padding:15px 20px;
  }

  .nav-btn{
    padding:9px 16px;
    font-size:.85rem;
  }

  header{
    padding-top:115px;
  }

  header h1{
    font-size:2.25rem;
  }

  header p{
    font-size:1.02rem;
  }

  .hero-actions{
    width:100%;
  }

  .btn{
    width:100%;
    max-width:340px;
    padding:15px 22px;
    font-size:.95rem;
  }

  section{
    padding:72px 20px;
  }

  .about{
    flex-direction:column;
    text-align:center;
    gap:35px;
  }

  .about-img{
    flex:initial;
    width:100%;
  }

  .about-img::before{
    width:265px;
    height:405px;
    border-radius:20px;
  }

  .about-img img{
    width:250px;
    height:390px;
    border-radius:16px;
    object-position:center top;
  }

  .section-title,
  .about-text h2,
  .premium h2,
  .cta h2{
    font-size:2rem;
  }

  .premium,
  .cta{
    border-radius:20px;
    padding:65px 22px;
  }

  .social-float{
    width:54px;
    height:54px;
    right:16px;
    font-size:.95rem;
  }

  .whatsapp-float{
    bottom:16px;
  }

  .instagram-float{
    bottom:82px;
  }

  .tiktok-float{
    bottom:148px;
  }
}

@media(max-width:420px){
  header h1{
    font-size:2rem;
  }

  nav{
    padding:14px 16px;
  }

  .about-img::before{
    width:240px;
    height:375px;
  }

  .about-img img{
    width:225px;
    height:360px;
  }
}


/* PRECIOS */

.precios{
  max-width:1120px;
  margin:auto;
  padding:95px 20px;
  text-align:center;
}

.precios-lista{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:0;
  max-width:900px;
  margin:45px auto 0;
  align-items:stretch;
}

.precio-card{
  position:relative;
  background:#fff;
  border:1px solid #f4e7ff;
  box-shadow:0 15px 35px rgba(0,0,0,.06);
  min-height:410px;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  overflow:hidden;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.precio-card:first-child{
  border-radius:18px 0 0 18px;
}

.precio-card:last-child{
  border-radius:0 18px 18px 0;
}

.precio-card h3{
  width:100%;
  padding:18px 12px;
  font-size:1.22rem;
  background:#fff;
  color:#222;
  transition:background .35s ease, color .35s ease;
}

.precio-bloque{
  width:100%;
  padding:26px 12px;
  background:#eef2f6;
  color:#222;
  transition:background .35s ease;
}

.precio-moneda{
  font-size:1.35rem;
  font-weight:700;
  vertical-align:top;
  margin-right:4px;
}

.precio-cantidad{
  font-family:'Playfair Display',serif;
  font-size:3.9rem;
  font-weight:700;
  line-height:1;
}

.precio-tipo{
  margin:24px 20px 8px;
  color:#7e22ce;
  font-weight:700;
  transition:color .35s ease;
}

.precio-texto{
  flex:1;
  margin:0 24px 24px;
  font-size:.95rem;
  line-height:1.65;
  color:#555;
}

.precio-btn{
  width:auto;
  max-width:none;
  min-height:46px;
  margin:0 20px 28px;
  padding:12px 30px;
  font-size:.85rem;
  text-transform:uppercase;
}

/* Quita el destacado fijo del centro */
.precio-principal{
  border:1px solid #f4e7ff;
  transform:none;
  box-shadow:0 15px 35px rgba(0,0,0,.06);
}

/* Efecto morado al pasar el mouse */
.precio-card:hover{
  z-index:5;
  transform:translateY(-18px);
  border-color:#d8b4f8;
  box-shadow:0 28px 65px rgba(168,85,247,.22);
}

.precio-card:hover h3{
  background:linear-gradient(135deg,#d8b4f8,#a855f7);
  color:#fff;
}

.precio-card:hover .precio-bloque{
  background:linear-gradient(135deg,#fce7f3,#ddd6fe);
}

.precio-card:hover .precio-btn{
  background:linear-gradient(135deg,#d8b4f8,#a855f7);
  color:#fff;
  box-shadow:0 16px 32px rgba(168,85,247,.34);
}

/* Responsive */
@media(max-width:900px){
  .precios-lista{
    grid-template-columns:1fr;
    gap:22px;
    max-width:430px;
  }

  .precio-card,
  .precio-card:first-child,
  .precio-card:last-child,
  .precio-principal{
    border-radius:18px;
    transform:none;
  }

  .precio-card:hover{
    transform:translateY(-8px);
  }
}

