:root{
  /* Paleta oficial */
  --black: #000000;
  --purple: #6E2A6F;
  --teal: #1CA7A3;
  --teal2: #38B5AF;
  --gray: #D8D8D8;
  --white: #FFFFFF;

  /* Tokens UI */
  --bg: var(--white);
  --text: var(--black);
  --muted: rgba(0,0,0,.68);
  --border: var(--gray);

  --panel: rgba(110,42,111,.04);  /* púrpura muy suave */
  --panel2: rgba(28,167,163,.06); /* teal muy suave */
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
}

a{ color: inherit; text-decoration:none; }
.container{ width:min(1100px, 92vw); margin:0 auto; }

/* HEADER */
.header{
  position: sticky; top:0; z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 16px;
}

.brand{ display:flex; align-items:center; gap:12px; }
.brand__logo{
  width: 46px; height: 46px;
  object-fit: contain;
}
.brand__txt{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{ font-weight:800; letter-spacing:.2px; color: var(--purple); }
.brand__tag{ font-weight:700; color: var(--teal); font-size: 13px; margin-top: 2px; }

.nav{ display:flex; gap:16px; align-items:center; }
.nav a{ color: rgba(0,0,0,.75); font-weight:700; }
.nav a:hover{ color: var(--purple); }

.navToggle{
  display:none;
  border:1px solid var(--border);
  background: var(--white);
  color: var(--black);
  border-radius: 12px;
  padding: 10px 12px;
}

/* BUTTONS */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid transparent;
  background: var(--purple);
  color: var(--white);
  font-weight: 800;
}
.btn:hover{ filter: brightness(.96); transform: translateY(-1px); }
.btn--ghost{
  background: var(--white);
  border-color: var(--purple);
  color: var(--purple);
}
.btn--small{ padding: 10px 12px; border-radius: 12px; }

/* HERO */
.hero{
  padding: 56px 0 24px;
  background:
    radial-gradient(900px 420px at 15% 0%, rgba(28,167,163,.14), transparent 60%),
    radial-gradient(900px 420px at 85% 0%, rgba(110,42,111,.12), transparent 60%);
}
.hero__grid{
  display:grid; gap:22px;
  grid-template-columns: 1.2fr .8fr;
  align-items:start;
}
.kicker{
  margin: 0 0 10px;
  font-weight: 900;
  letter-spacing: .8px;
  color: var(--teal);
}
h1{ font-size: clamp(32px, 4vw, 52px); line-height:1.05; margin: 0 0 12px; color: var(--black); }
.lead{ font-size: 18px; color: var(--muted); margin: 0 0 18px; }

.ctaRow{ display:flex; gap:12px; flex-wrap:wrap; margin: 10px 0 16px; }
.badges{
  list-style:none; padding:0; margin: 14px 0 0;
  display:grid; gap:8px;
  color: var(--muted);
}

/* SECTIONS */
.section{ padding: 52px 0; }
.section--alt{
  background: linear-gradient(0deg, var(--panel2), var(--panel2));
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}
h2{ font-size: 30px; margin: 0 0 14px; color: var(--purple); }
.sub{ color: var(--muted); margin-top: -4px; }

.card, .listCard{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.quote{ font-size: 20px; margin: 0 0 10px; color: var(--purple); font-weight:800; }
.meta{ color: var(--muted); font-weight:700; }
.divider{ height:1px; background: var(--border); margin: 14px 0; }

.grid2{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cards3{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.checklist{ margin:0; padding-left: 18px; color: var(--muted); font-weight: 650; }
.checklist li{ margin: 8px 0; }

.hero__card .note{
  margin-top: 12px;
  color: rgba(0,0,0,.75);
  padding: 14px 16px;
  border-left: 4px solid var(--teal);
  background: rgba(28,167,163,.08);
  border-radius: 14px;
}

.heroLogoBox{
  display:flex; justify-content:center;
  padding: 10px 0 6px;
}
.heroLogoBox img{
  width: 150px;
  height: auto;
}

.miniGrid{ display:grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.mini{ background: rgba(0,0,0,.02); border:1px solid var(--border); border-radius: 14px; padding: 12px; }
.mini__k{ display:block; color: rgba(0,0,0,.6); font-weight:800; font-size: 12px; }
.mini__v{ display:block; font-weight:900; margin-top: 4px; color: var(--black); }

.steps{ display:grid; gap: 12px; }
.step{
  display:flex; gap: 12px; align-items:flex-start;
  padding: 14px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
}
.step__n{
  width: 34px; height: 34px; border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(110,42,111,.10);
  border: 1px solid rgba(110,42,111,.25);
  color: var(--purple);
  font-weight: 950;
}

/* PRICING */
.pricing{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 16px; }
.priceCard{
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}
.priceCard--best{
  border-color: rgba(28,167,163,.75);
  box-shadow: 0 0 0 6px rgba(28,167,163,.12);
}
.tag{
  position:absolute; top: 14px; right: 14px;
  font-weight:900; font-size:12px;
  background: rgba(28,167,163,.12);
  border: 1px solid rgba(28,167,163,.30);
  color: var(--teal);
  padding: 6px 10px;
  border-radius: 999px;
}
.price{ font-size: 34px; font-weight: 950; margin: 10px 0 10px; color: var(--black); }
.price span{ font-size: 14px; font-weight: 900; color: rgba(0,0,0,.55); margin-left: 6px; }
.priceCard ul{ margin: 0 0 14px; padding-left: 18px; color: var(--muted); font-weight: 650; }
.fineprint{ color: var(--muted); font-size: 13px; }

/* FAQ */
.faq details{
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px 14px;
  margin: 10px 0;
}
.faq summary{ cursor:pointer; font-weight: 900; color: var(--purple); }
.faq p{ color: var(--muted); margin: 10px 0 0; }

/* FORMS */
label{ display:block; margin: 10px 0; color: rgba(0,0,0,.75); font-weight:800; }
input, textarea{
  width: 100%;
  margin-top: 6px;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--black);
  outline: none;
}
input:focus, textarea:focus{ border-color: rgba(28,167,163,.85); box-shadow: 0 0 0 4px rgba(28,167,163,.12); }

/* FOOTER */
.footer{
  border-top: 1px solid var(--border);
  padding: 18px 0;
  color: rgba(0,0,0,.65);
}
.footer__row{ display:flex; align-items:center; justify-content:space-between; gap: 12px; flex-wrap:wrap; }
.footer a{ color: var(--teal); font-weight: 800; }

/* FAB WhatsApp */
.fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px; height: 54px;
  border-radius: 999px;
  display:flex; align-items:center; justify-content:center;
  background: var(--teal);
  color: var(--white);
  font-size: 22px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
}

/* RESPONSIVE */
@media (max-width: 900px){
  .hero__grid, .grid2, .cards3, .pricing { grid-template-columns: 1fr; }
  .nav{ display:none; }
  .navToggle{ display:inline-flex; }
  .nav.isOpen{
    display:flex;
    position:absolute; right: 16px; top: 70px;
    flex-direction:column;
    background: rgba(255,255,255,.98);
    border:1px solid var(--border);
    padding: 12px;
    border-radius: 16px;
    min-width: 220px;
    box-shadow: 0 16px 40px rgba(0,0,0,.10);
  }
}
/* HEADER - Método Sincro */
.brand{
  display:flex;
  align-items:center;
  gap:10px;
}

.brand__mark{
  width:12px;
  height:12px;
  border-radius:999px;
  background: var(--teal);
  box-shadow: 0 0 0 4px rgba(28,167,163,.18);
}

.brand__name{
  font-weight: 900;
  letter-spacing: .2px;
  color: var(--purple);
}

/* HERO COVER (logo grande como portada) */
.hero--cover{
  padding: 44px 0 20px;
}

.heroCover{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 26px;
  align-items: center;
}

/* Logo GRANDE */
.heroCover__logo{
  background:
    radial-gradient(700px 420px at 30% 10%, rgba(28,167,163,.18), transparent 60%),
    radial-gradient(700px 420px at 80% 30%, rgba(110,42,111,.16), transparent 60%);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  display:flex;
  align-items:center;
  justify-content:center;
}

.heroCover__logo img{
  width: min(520px, 95%);
  height: auto;
  display:block;
}

/* Copy del hero */
.heroCover__copy h1{
  margin-top: 0;
}

@media (max-width: 900px){
  .heroCover{
    grid-template-columns: 1fr;
  }

  .heroCover__logo{
    padding: 18px;
  }

  .heroCover__logo img{
    width: min(440px, 92%);
  }
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand__icon{
  width:36px;
  height:36px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,.08));
}