*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --pink:    #e11d78;
  --purple:  #9333ea;
  --grad:    linear-gradient(140deg, #e11d78 0%, #9333ea 100%);
  --dark:    #111827;
  --gray:    #6b7280;
  --light:   #f9fafb;
  --border:  #e5e7eb;
  --radius:  16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Animaciones scroll ──────────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Nav ─────────────────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 24px;
  font-weight: 900;
  text-decoration: none;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav__logo-img {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray);
  transition: color .2s;
}
.nav__links a:hover { color: var(--pink); }

.nav__cta {
  background: var(--grad);
  color: #fff !important;
  padding: 9px 22px;
  border-radius: 20px;
  font-weight: 700 !important;
  font-size: 14px !important;
  box-shadow: 0 2px 12px rgba(219,39,119,.3);
  transition: box-shadow .2s, transform .15s !important;
}
.nav__cta:hover {
  box-shadow: 0 4px 20px rgba(219,39,119,.45) !important;
  transform: translateY(-1px);
  color: #fff !important;
}

/* ── Hero ────────────────────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 100px;
  background:
    radial-gradient(ellipse at 70% -10%, #fce7f3 0%, transparent 55%),
    radial-gradient(ellipse at 0% 90%, #ede9fe 0%, transparent 50%),
    #fff;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fce7f3;
  color: var(--pink);
  font-size: 13px;
  font-weight: 700;
  padding: 7px 16px;
  border-radius: 20px;
  margin-bottom: 28px;
  border: 1px solid #fbcfe8;
}

.hero__title {
  font-size: clamp(40px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.08;
  max-width: 720px;
  margin-bottom: 24px;
  letter-spacing: -1.5px;
}

.hero__title span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 30px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  border: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 4px 24px rgba(219,39,119,.4);
}
.btn--primary:hover { box-shadow: 0 8px 32px rgba(219,39,119,.5); }

.btn--outline {
  background: #fff;
  color: var(--dark);
  border: 1.5px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
}

.btn--white {
  background: #fff;
  color: var(--pink);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}

.hero__note {
  margin-top: 20px;
  font-size: 13px;
  color: #9ca3af;
}

/* ── Sections ────────────────────────────────────────────────────────────── */
.section {
  padding: 100px 32px;
}
.section--gray { background: var(--light); }
.section--dark {
  background: var(--dark);
}

.section__label {
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--pink);
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 14px;
}

.section__title {
  text-align: center;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  max-width: 640px;
  margin: 0 auto 64px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* ── Why grid ────────────────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: box-shadow .25s, transform .25s;
}
.why-card:hover {
  box-shadow: 0 12px 40px rgba(219,39,119,.1);
  transform: translateY(-5px);
}

.why-card__emoji {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #fce7f3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.wc-blue   { background: #eff6ff; }
.wc-pink   { background: #fdf2f8; }
.wc-red    { background: #fff1f2; }
.wc-purple { background: #faf5ff; }
.wc-gold   { background: #fefce8; }
.wc-green  { background: #f0fdf4; }
.wc-teal   { background: #f0fdfa; }

.why-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}

.why-card p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ── Testimonials ────────────────────────────────────────────────────────── */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: box-shadow .2s;
}
.testimonial-card:hover { box-shadow: 0 8px 32px rgba(147,51,234,.12); }

.stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: -4px;
}

.testimonial-card::before {
  content: '"';
  font-size: 64px;
  font-weight: 900;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: -16px;
}

.testimonial-card__text {
  font-size: 16px;
  color: #374151;
  line-height: 1.75;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-card__author strong {
  display: block;
  font-size: 15px;
  color: var(--dark);
}

.testimonial-card__author span {
  font-size: 13px;
  color: var(--gray);
}

/* ── Features ────────────────────────────────────────────────────────────── */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover {
  box-shadow: 0 8px 32px rgba(147,51,234,.14);
  transform: translateY(-4px);
}

.feature-card--dark {
  background: #1f2937;
  border-color: #374151;
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.feature-card__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--dark);
}

.feature-card--dark .feature-card__title { color: #fff; }

.feature-card__desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

.feature-card--dark .feature-card__desc { color: #9ca3af; }

.feature-card__icon.fc-green  { background: rgba(16,185,129,.2); }
.feature-card__icon.fc-pink   { background: rgba(236,72,153,.2); }
.feature-card__icon.fc-blue   { background: rgba(59,130,246,.2); }
.feature-card__icon.fc-purple { background: rgba(168,85,247,.2); }
.feature-card__icon.fc-orange { background: rgba(251,146,60,.2); }
.feature-card__icon.fc-teal   { background: rgba(20,184,166,.2); }

/* ── Steps ───────────────────────────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.step__num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad);
  color: #fff;
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(219,39,119,.35);
}

.step__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 8px;
}

.step__desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
}

/* ── CTA banner ──────────────────────────────────────────────────────────── */
.cta-banner {
  background: var(--grad);
  padding: 100px 24px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(255,255,255,.12) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,.08) 0%, transparent 60%);
  pointer-events: none;
}

.cta-banner__title {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -1px;
}

.cta-banner__sub {
  font-size: 18px;
  opacity: .88;
  margin-bottom: 40px;
}

.cta-banner__note {
  margin-top: 16px;
  font-size: 13px;
  opacity: .65;
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: #9ca3af;
  padding: 64px 32px 32px;
}

.footer__inner {
  max-width: 1000px;
  margin: 0 auto 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer__brand { max-width: 280px; }

.footer__logo {
  font-size: 24px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer__tagline { font-size: 14px; line-height: 1.7; }

.footer__col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.footer__col a {
  font-size: 14px;
  color: #9ca3af;
  transition: color .2s;
}
.footer__col a:hover { color: #fff; }

.footer__bottom {
  max-width: 1000px;
  margin: 0 auto;
  border-top: 1px solid #1f2937;
  padding-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 13px;
}

/* ── Legal pages ─────────────────────────────────────────────────────────── */
.legal-header {
  background: var(--grad);
  padding: 80px 24px 56px;
  text-align: center;
  color: #fff;
}
.legal-header h1 { font-size: clamp(28px, 4vw, 48px); font-weight: 900; letter-spacing: -1px; }
.legal-header p  { margin-top: 10px; opacity: .8; font-size: 15px; }

.legal-body {
  max-width: 760px;
  margin: 60px auto;
  padding: 0 24px 80px;
}

.legal-body h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 44px 0 14px;
  color: var(--dark);
}

.legal-body p, .legal-body li {
  font-size: 15px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 10px;
}

.legal-body ul { padding-left: 20px; }
.legal-body a  { color: var(--pink); text-decoration: underline; }

/* ── Contact ─────────────────────────────────────────────────────────────── */
.contact-grid {
  max-width: 800px;
  margin: 60px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow .2s, transform .2s;
}
.contact-card:hover {
  box-shadow: 0 8px 32px rgba(147,51,234,.14);
  transform: translateY(-4px);
}

.contact-card__icon { font-size: 40px; margin-bottom: 16px; }

.contact-card__title {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-card__desc {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-card a.btn { font-size: 14px; padding: 10px 22px; }

/* ── FAQ ─────────────────────────────────────────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.faq-item:hover {
  box-shadow: 0 4px 20px rgba(219,39,119,.08);
}

.faq-item--open {
  border-color: #fbcfe8;
  box-shadow: 0 4px 20px rgba(219,39,119,.1);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  font-family: inherit;
  transition: color .2s;
}

.faq-question:hover { color: var(--pink); }

.faq-item--open .faq-question { color: var(--pink); }

.faq-icon {
  font-size: 22px;
  font-weight: 300;
  flex-shrink: 0;
  color: var(--pink);
  transition: transform .25s ease;
  line-height: 1;
}

.faq-item--open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 28px;
}

.faq-item--open .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.75;
}

.faq-answer a {
  color: var(--pink);
  text-decoration: underline;
}

/* ── Trust bar ───────────────────────────────────────────────────────────── */
.trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 32px;
  padding: 14px 24px;
  background: var(--light);
  border-bottom: 1px solid var(--border);
}
.trust-bar__item {
  font-size: 13px;
  font-weight: 600;
  color: #374151;
}
.trust-bar__check {
  color: var(--pink);
  margin-right: 4px;
}

/* ── Hamburger / Mobile menu ─────────────────────────────────────────────── */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background .2s;
}
.nav__hamburger:hover { background: var(--light); }
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}
.nav__hamburger--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger--open span:nth-child(2) { opacity: 0; }
.nav__hamburger--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 8px 20px 20px;
  flex-direction: column;
  z-index: 99;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
}
.nav__mobile--open { display: flex; }
.nav__mobile a {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.nav__mobile a:hover { color: var(--pink); }
.nav__mobile .btn--primary {
  margin-top: 10px;
  border-bottom: none;
  text-align: center;
  color: #fff;
  padding: 14px;
}

/* ── Mobile ──────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {

  /* Nav */
  .nav { padding: 0 20px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 64px 20px 80px;
  }
  .hero__title { letter-spacing: -0.5px; }
  .hero__actions { flex-direction: column; width: 100%; }
  .hero__actions .btn { width: 100%; }

  /* Sections */
  .section { padding: 72px 20px; }

  /* Why grid — 1 columna */
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-card { padding: 28px 24px; display: flex; flex-direction: row; align-items: flex-start; gap: 16px; }
  .why-card__emoji { margin-bottom: 0; }

  /* Testimonials — 1 columna */
  .testimonials { grid-template-columns: 1fr; }

  /* Features — 1 columna */
  .features { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px; display: flex; flex-direction: row; align-items: flex-start; gap: 16px; }
  .feature-card__icon { width: 44px; height: 44px; flex-shrink: 0; margin-bottom: 0; font-size: 20px; }

  /* Steps — 1 columna */
  .steps { grid-template-columns: 1fr; gap: 28px; }

  /* CTA */
  .cta-banner { padding: 72px 20px; }
  .cta-banner .btn { width: 100%; }

  /* Footer */
  .footer { padding: 48px 20px 24px; }
  .footer__inner { flex-direction: column; gap: 32px; }
  .footer__brand { max-width: 100%; }
  .footer__bottom { flex-direction: column; align-items: center; text-align: center; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; }

  /* Legal */
  .legal-body { margin: 32px auto; }
  .legal-body h2 { margin-top: 32px; }

  /* FAQ */
  .faq-question { padding: 18px 20px; font-size: 15px; }
  .faq-answer   { padding: 0 20px; }
  .faq-item--open .faq-answer { padding: 0 20px 20px; }
}
