:root {
  --ink: #100c49;
  --teal: #41827a;
  --sage: #e0e6dc;
  --paper: #fbfbf8;
  --white: #ffffff;
  --pink: #e96fa6;
  --pink-soft: #f8e5ef;
  --yellow: #f4c542;
  --yellow-soft: #fff7da;
  --muted: #5c6670;
  --line: rgba(16, 12, 73, 0.12);
  --shadow: 0 24px 80px rgba(16, 12, 73, 0.10);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  color: var(--ink);
  font-family: "Nunito Sans", ui-sans-serif, system-ui, sans-serif;
  background: var(--paper);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 320px; color: var(--ink); background: radial-gradient(circle at 86% 8%, var(--pink-soft) 0 11rem, transparent 11.2rem), linear-gradient(180deg, #fbfbf8 0%, #f6f8f3 100%); }
a { color: inherit; text-decoration: none; }

.site-header { position: sticky; top: 0; z-index: 20; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 18px clamp(18px, 5vw, 64px); background: rgba(251, 251, 248, 0.82); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--ink); color: var(--white); font-weight: 850; letter-spacing: -0.04em; }
.brand strong { display: block; font-weight: 850; line-height: 1; }
.brand small { display: block; color: var(--muted); font-size: 0.78rem; margin-top: 4px; }
.nav { display: flex; gap: 26px; color: var(--muted); font-weight: 750; }
.nav a:hover { color: var(--ink); }
.header-cta { padding: 11px 18px; border: 1px solid var(--ink); border-radius: 999px; font-weight: 850; }
.header-cta:hover { background: var(--ink); color: var(--white); }

.section-shell { width: min(1120px, calc(100% - 36px)); margin: 0 auto; }
.hero { min-height: 760px; display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.72fr); gap: 48px; align-items: center; padding: 68px 0 92px; }
.eyebrow { margin: 0 0 16px; color: var(--teal); font-weight: 850; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; }
h1, h2, h3 { margin: 0; letter-spacing: -0.055em; line-height: 0.96; }
h1, h2 { font-family: "Fraunces", Georgia, serif; }
h1 { font-size: clamp(3.4rem, 8vw, 6.9rem); max-width: 820px; }
h2 { font-size: clamp(2.2rem, 5vw, 4.6rem); }
h3 { font-size: 1.4rem; letter-spacing: -0.035em; }
p { line-height: 1.55; }
.hero-lead { max-width: 650px; color: var(--muted); font-size: clamp(1.13rem, 2vw, 1.35rem); margin: 28px 0 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; font-weight: 850; transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease; border: 1px solid var(--ink); }
.button:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(16, 12, 73, 0.14); }
.button.primary { background: var(--ink); color: var(--white); }
.button.ghost { background: rgba(255,255,255,0.58); }
.button.full { width: 100%; border: 0; cursor: pointer; font-size: 1rem; }

.hero-panel { position: relative; min-height: auto; border-radius: var(--radius-xl); background: var(--sage); overflow: hidden; box-shadow: var(--shadow); padding: 34px; align-self: center; }
.orb { position: absolute; border-radius: 50%; pointer-events: none; }
.orb-pink { width: 230px; height: 230px; right: -52px; top: -44px; background: var(--pink-soft); }
.orb-yellow { width: 112px; height: 112px; right: 34px; bottom: 30px; background: var(--yellow); }
.quick-facts { position: relative; z-index: 1; display: grid; gap: 14px; padding: 0; margin: 0; list-style: none; }
.quick-facts li { padding: 18px 20px; border-radius: 20px; background: rgba(255,255,255,0.74); border: 1px solid rgba(16, 12, 73, 0.08); }
.quick-facts span { display: block; color: var(--teal); font-weight: 850; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 6px; }
.quick-facts strong { display: block; font-size: 1.18rem; line-height: 1.15; }

.intro { display: grid; grid-template-columns: 1.08fr 0.92fr; gap: 64px; align-items: end; padding: 88px 0; border-top: 1px solid var(--line); }
.intro p:last-child { margin: 0; color: var(--muted); font-size: 1.2rem; }
.section-heading { max-width: 850px; margin-bottom: 34px; }
.section-heading.compact { max-width: 720px; }

.method { padding: 86px 0; }
.method-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.method-grid article { min-height: 270px; padding: 26px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 46px rgba(16, 12, 73, 0.06); }
.method-grid article:nth-child(2) { background: var(--pink-soft); }
.method-grid article:nth-child(3) { background: var(--yellow-soft); }
.step { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--yellow); color: var(--ink); font-weight: 850; margin-bottom: 42px; }
.method-grid p { color: var(--muted); margin-bottom: 0; }

.logistics { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 48px; align-items: center; padding: 74px 0; }
.logistics-list { display: grid; gap: 14px; }
.logistics-list div { display: grid; grid-template-columns: 0.8fr 1fr; gap: 16px; align-items: center; padding: 20px 22px; background: var(--white); border: 1px solid var(--line); border-radius: 20px; }
.logistics-list strong { font-size: 1.2rem; }
.logistics-list span { color: var(--muted); }

.weeks { padding: 92px 0; }
.week-board { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; }
.week-card { padding: 24px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); min-height: 365px; }
.week-card.featured { background: var(--sage); transform: translateY(-18px); }
.week-card.soft { background: var(--yellow-soft); }
.week-card h3 { color: var(--teal); margin-bottom: 22px; }
.week-card ul { display: grid; gap: 13px; padding: 0; margin: 0; list-style: none; }
.week-card li { position: relative; padding-left: 20px; color: var(--muted); line-height: 1.25; font-weight: 750; }
.week-card li::before { content: ""; position: absolute; left: 0; top: 0.48em; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); }

.families { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; padding: 84px 0; }
.family-card { padding: 46px; border-radius: var(--radius-xl); background: var(--ink); color: var(--white); }
.family-card .eyebrow { color: var(--yellow); }
.family-card p:last-child { color: rgba(255,255,255,0.78); font-size: 1.12rem; }
.family-points { display: grid; gap: 14px; align-content: center; }
.family-points div { padding: 22px; background: var(--white); border-radius: 20px; border: 1px solid var(--line); font-weight: 850; }
.family-points span { display: inline-grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--yellow); margin-right: 12px; }

.signup { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 42px; align-items: start; padding: 92px 0 110px; }
.signup-copy p:last-child { color: var(--muted); font-size: 1.12rem; max-width: 520px; }
.signup-form { padding: 28px; border-radius: var(--radius-xl); background: var(--sage); border: 1px solid var(--line); box-shadow: var(--shadow); }
.signup-form label { display: grid; gap: 8px; font-weight: 850; margin-bottom: 16px; }
input, select { width: 100%; min-height: 54px; border: 1px solid rgba(16, 12, 73, 0.18); border-radius: 16px; padding: 0 16px; color: var(--ink); background: var(--white); font: inherit; outline: none; }
input:focus, select:focus { border-color: var(--teal); box-shadow: 0 0 0 4px rgba(65, 130, 122, 0.16); }
.form-note { margin: 14px 0 0; color: var(--muted); font-size: 0.86rem; }
code { color: var(--ink); font-weight: 850; }

.floating-whatsapp { position: fixed; right: 18px; bottom: 18px; z-index: 30; padding: 14px 18px; border-radius: 999px; background: var(--teal); color: var(--white); font-weight: 850; box-shadow: 0 18px 42px rgba(16, 12, 73, 0.18); }
.footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(18px, 5vw, 64px); border-top: 1px solid var(--line); color: var(--muted); }
.footer strong { color: var(--ink); }

@media (max-width: 920px) {
  .nav { display: none; }
  .hero, .intro, .logistics, .families, .signup { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 44px; }
  .hero-panel { min-height: 480px; }
  .method-grid, .week-board { grid-template-columns: repeat(2, 1fr); }
  .week-card.featured { transform: none; }
}

@media (max-width: 620px) {
  .site-header { padding: 14px 16px; }
  .header-cta { display: none; }
  h1 { font-size: 3.4rem; }
  h2 { font-size: 2.45rem; }
  .hero-panel, .family-card, .signup-form { padding: 24px; border-radius: 24px; }
  .method-grid, .week-board { grid-template-columns: 1fr; }
  .logistics-list div { grid-template-columns: 1fr; }
  .footer { flex-direction: column; }
}

.process { padding: 72px 0; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.process-steps div { min-height: 230px; padding: 26px; border-radius: var(--radius-lg); background: var(--white); border: 1px solid var(--line); box-shadow: 0 16px 40px rgba(16, 12, 73, 0.055); }
.process-steps span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--pink-soft); color: var(--ink); font-weight: 850; margin-bottom: 30px; }
.process-steps strong { display: block; font-size: 1.25rem; letter-spacing: -0.03em; margin-bottom: 10px; }
.process-steps p { margin: 0; color: var(--muted); }

.plans { padding: 88px 0 72px; }
.plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.plan-card { padding: 34px; border-radius: var(--radius-xl); background: var(--white); border: 1px solid var(--line); box-shadow: 0 18px 52px rgba(16, 12, 73, 0.06); }
.plan-card.plus { background: var(--sage); position: relative; overflow: hidden; }
.plan-card.plus::after { content: ""; position: absolute; right: -48px; top: -48px; width: 180px; height: 180px; border-radius: 50%; background: var(--yellow); opacity: 0.72; }
.plan-label { position: relative; z-index: 1; display: inline-flex; margin: 0 0 18px; padding: 8px 14px; border-radius: 999px; background: var(--pink-soft); color: var(--ink); font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.76rem; }
.plan-card h3 { position: relative; z-index: 1; font-size: clamp(1.8rem, 3vw, 2.7rem); max-width: 520px; }
.plan-card ul { position: relative; z-index: 1; display: grid; gap: 13px; padding: 0; margin: 24px 0 0; list-style: none; }
.plan-card li { position: relative; padding-left: 24px; color: var(--muted); font-weight: 750; }
.plan-card li::before { content: ""; position: absolute; left: 0; top: 0.58em; width: 9px; height: 9px; border-radius: 50%; background: var(--teal); }

.menu-section { padding: 72px 0 88px; }
.menu-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.menu-grid article { min-height: 245px; padding: 20px; border-radius: 22px; background: var(--white); border: 1px solid var(--line); }
.menu-grid article:nth-child(even) { background: var(--yellow-soft); }
.menu-grid article:nth-child(3) { background: var(--pink-soft); }
.menu-grid span { display: inline-block; color: var(--teal); font-weight: 850; margin-bottom: 14px; }
.menu-grid p { margin: 0; color: var(--muted); font-weight: 750; line-height: 1.38; }

@media (max-width: 920px) {
  .process-steps, .plans-grid { grid-template-columns: 1fr; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .process-steps, .plans-grid, .menu-grid { grid-template-columns: 1fr; }
  .process-steps div, .plan-card, .menu-grid article { padding: 22px; }
}


/* Hero facts geometry fix */
.hero-panel { max-width: 430px; }
.quick-facts { gap: 14px; max-width: 100%; }
.quick-facts li { min-height: 96px; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 920px) {
  .hero-panel { max-width: none; min-height: auto; }
}
