@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Nunito:ital,wght@0,700;0,800;0,900;1,700&display=swap');

:root {
  --brand: #3b1e8e;
  --brand-l: #f0eaff;
  --brand-m: #5b3ec4;
  --brand-d: #2a1566;
  --gold: #f5a623;
  --pink: #e91e8c;
  --g50: #f9fafb;
  --g100: #f3f4f6;
  --g200: #e5e7eb;
  --g400: #9ca3af;
  --g500: #6b7280;
  --g600: #4b5563;
  --g700: #374151;
  --g800: #1f2937;
  --white: #fff;
  --shadow: 0 18px 50px rgba(59, 30, 142, 0.12);
  --radius: 18px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--g50);
  color: var(--g800);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* ── 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(--g200);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}

.nav-logo img {
  height: 40px;
  width: auto;
  border-radius: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--g600);
}

.nav-links a:hover {
  color: var(--brand);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--brand);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(59, 30, 142, 0.28);
}

.btn-primary:hover {
  background: var(--brand-m);
}

.btn-secondary {
  background: var(--white);
  color: var(--brand);
  border-color: rgba(59, 30, 142, 0.2);
}

.btn-secondary:hover {
  background: var(--brand-l);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
}

.btn-block {
  width: 100%;
}

/* ── Hero ── */
.hero {
  background: linear-gradient(135deg, #1a0a52 0%, var(--brand) 55%, var(--brand-m) 100%);
  border-radius: 24px;
  padding: 56px 40px 48px;
  margin: 28px 0 64px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.hero::before {
  width: 280px;
  height: 280px;
  top: -80px;
  right: -60px;
}

.hero::after {
  width: 180px;
  height: 180px;
  bottom: -50px;
  left: -40px;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: min(300px, 70vw);
  margin: 0 auto 20px;
  border-radius: 16px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero h1 em {
  font-style: italic;
  color: #c9b8ff;
}

.hero-lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  margin: 0 auto 28px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-n {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}

.stat-l {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── Sections ── */
.section {
  margin-bottom: 72px;
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-m);
  margin-bottom: 10px;
}

.section h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 12px;
}

.section-intro {
  color: var(--g600);
  max-width: 640px;
  margin-bottom: 36px;
}

/* ── Features ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--brand-l);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 14px;
}

.feature-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--g600);
}

/* ── Audience ── */
.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-tag {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--g700);
}

/* ── Pricing ── */
.pricing-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 32px;
}

.billing-toggle {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 100px;
  padding: 4px;
}

.billing-toggle button {
  border: none;
  background: transparent;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  color: var(--g500);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.billing-toggle button.active {
  background: var(--brand);
  color: var(--white);
}

.billing-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--gold);
  margin-left: 6px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}

.pricing-card.featured {
  border-color: var(--brand);
  box-shadow: 0 20px 60px rgba(59, 30, 142, 0.18);
  position: relative;
}

.pricing-card.featured::before {
  content: 'Más popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--g800);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
}

.plan-name {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 4px;
}

.plan-desc {
  font-size: 13px;
  color: var(--g500);
  margin-bottom: 20px;
}

.plan-price {
  margin-bottom: 6px;
}

.plan-price .amount {
  font-family: 'Nunito', sans-serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--g800);
  line-height: 1;
}

.plan-price .currency {
  font-size: 1.1rem;
  font-weight: 700;
  vertical-align: super;
}

.plan-period {
  font-size: 13px;
  color: var(--g500);
  margin-bottom: 20px;
}

.plan-features {
  list-style: none;
  margin-bottom: 24px;
  flex: 1;
}

.plan-features li {
  font-size: 14px;
  color: var(--g600);
  padding: 7px 0;
  border-bottom: 1px solid var(--g100);
  display: flex;
  gap: 8px;
}

.plan-features li::before {
  content: '✓';
  color: var(--brand-m);
  font-weight: 800;
  flex-shrink: 0;
}

.price-monthly,
.price-annual {
  display: none;
}

body.billing-annual .price-annual {
  display: block;
}

body.billing-monthly .price-monthly {
  display: block;
}

/* ── Benefits ── */
.benefits-section {
  margin: 0 -20px 72px;
  padding: 0 20px;
}

.benefits-inner {
  background: linear-gradient(145deg, #1a0a52 0%, var(--brand) 45%, #6b4fd4 100%);
  border-radius: 24px;
  padding: 52px 40px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.benefits-inner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 50%;
}

.benefits-inner::after {
  content: '';
  position: absolute;
  bottom: -120px;
  right: -60px;
  width: 280px;
  height: 280px;
  background: rgba(245, 166, 35, 0.12);
  border-radius: 50%;
}

.benefits-header {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.benefits-label {
  color: #c9b8ff;
}

.benefits-header h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.7rem, 3.8vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}

.benefits-header p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
}

.benefits-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 32px;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 24px 22px;
  backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.15);
}

.benefit-card--highlight {
  background: rgba(245, 166, 35, 0.18);
  border-color: rgba(245, 166, 35, 0.35);
}

.benefit-card--pink {
  background: rgba(233, 30, 140, 0.18);
  border-color: rgba(233, 30, 140, 0.35);
}

.benefit-number {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.benefit-icon {
  font-size: 28px;
  margin-bottom: 12px;
  line-height: 1;
}

.benefit-card h3 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.benefit-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
}

.benefits-banner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 22px 28px;
}

.benefits-banner-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 520px;
}

.benefits-banner-text strong {
  color: var(--white);
}

.benefits-banner .btn-primary {
  background: var(--white);
  color: var(--brand);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.benefits-banner .btn-primary:hover {
  background: var(--brand-l);
}

/* ── CTA band ── */
.cta-band {
  background: linear-gradient(135deg, var(--brand-d), var(--brand));
  border-radius: var(--radius);
  padding: 48px 36px;
  text-align: center;
  color: var(--white);
  margin-bottom: 48px;
}

.cta-band h2 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 10px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 24px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Footer ── */
.footer {
  border-top: 1px solid var(--g200);
  padding: 36px 0 44px;
  text-align: center;
  color: var(--g500);
  font-size: 13px;
}

.footer-logo {
  height: 36px;
  margin: 0 auto 18px;
  border-radius: 6px;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
  margin-bottom: 16px;
}

.footer-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--g600);
  transition: color 0.15s ease;
}

.footer-link:hover {
  color: var(--brand);
}

.footer-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-copy {
  color: var(--g500);
}

/* ── Coming soon page ── */
.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(160deg, var(--brand-l) 0%, var(--g50) 50%, var(--white) 100%);
}

.coming-soon-card {
  background: var(--white);
  border: 1px solid var(--g200);
  border-radius: 24px;
  padding: 48px 36px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
}

.coming-soon-logo {
  width: min(280px, 80vw);
  margin: 0 auto 24px;
  border-radius: 16px;
}

.coming-soon h1 {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--brand);
  margin-bottom: 12px;
}

.coming-soon p {
  color: var(--g600);
  margin-bottom: 28px;
}

.coming-soon .pulse {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-l);
  color: var(--brand);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.coming-soon .pulse::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  animation: pulse 1.8s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding: 40px 22px 36px;
    border-radius: 18px;
  }

  .pricing-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .benefits-inner {
    padding: 36px 22px 28px;
    border-radius: 18px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .benefits-banner {
    flex-direction: column;
    text-align: center;
  }

  .benefits-banner .btn-primary {
    width: 100%;
  }
}
