/* =========================================================
   Amar Nutrindo — Landing SaaS
   Design tokens, base, components, responsive
   ========================================================= */

:root {
  /* Brand palette (Brandbook 2024) */
  --energy:   #FFC300;  /* amarelo */
  --citrus:   #FF6A00;  /* laranja */
  --dawn:     #5C05F2;  /* roxo */
  --dawn-dk:  #4a04c4;
  --roots:    #2D1C10;  /* marrom escuro (texto) */
  --onix:     #1A1A1A;
  --harmony:  #F7F1E8;  /* creme */
  --cream-bg: #FBF7F0;
  --green:    #256245;

  /* Soft tints */
  --energy-soft: #FEE8B0;
  --citrus-soft: #FFE6D5;
  --dawn-soft:   #E7D9E9;
  --green-soft:  #e6f0ea;
  --amber-text:  #9A6A00;
  --citrus-text: #C85B16;

  /* Neutrals */
  --muted:   #7A6E64;
  --muted-2: #9b8f85;
  --line:    rgba(45,28,16,0.08);

  --maxw: 1200px;
  --radius: 20px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  /* Impede scroll horizontal no mobile (glows/cards decorativos que extrapolam a viewport).
     `clip` recorta sem virar scroll-container, preservando o header sticky. */
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  background: var(--cream-bg);
  color: var(--roots);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;   /* fallback p/ navegadores sem suporte a overflow:clip */
  overflow-x: clip;
  /* Evita zoom acidental (double-tap) durante o scroll no mobile, mantendo
     pan e pinch-zoom de acessibilidade. */
  touch-action: manipulation;
}
h1, h2, h3, h4, p { margin: 0; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
/* Preserva a proporção quando o layout responsivo reduz a largura da imagem
   (companheiro obrigatório dos atributos width/height no HTML). Regras mais
   específicas (.nav__logo img, .footer__brand img, etc.) continuam vencendo. */
img { max-width: 100%; height: auto; }
svg { display: block; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-size: 15px; font-weight: 600;
  border-radius: 14px; padding: 13px 24px; cursor: pointer;
  border: 1px solid transparent; transition: all .2s ease; text-align: center;
}
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--purple { background: var(--dawn); color: #fff; box-shadow: 0 10px 24px rgba(92,5,242,0.28); }
.btn--purple:hover { background: var(--dawn-dk); }
.btn--amber { background: var(--energy); color: var(--roots); font-weight: 700; box-shadow: 0 16px 32px rgba(0,0,0,0.18); }
.btn--amber:hover { background: #ffce2e; transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--roots); border-radius: 100px; }
.btn--ghost:hover { background: rgba(45,28,16,0.05); }
.btn--outline { background: #fff; color: var(--roots); border-color: rgba(45,28,16,0.12); }
.btn--outline:hover { border-color: var(--dawn); color: var(--dawn); }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.25); }
.btn--outline-light:hover { background: rgba(255,255,255,0.08); }
.btn--stack { flex-direction: column; gap: 2px; padding: 14px 30px; }
.btn__big { font-size: 17px; font-weight: 600; }
.btn__small { font-size: 12px; font-weight: 400; opacity: .82; }
.nav .btn--purple { border-radius: 100px; padding: 12px 22px; box-shadow: 0 8px 20px rgba(92,5,242,0.28); }
.nav .btn--ghost { padding: 11px 18px; }

/* ---------- Eyebrow pills ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; padding: 8px 15px;
  border-radius: 100px; margin-bottom: 18px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--citrus); }
.eyebrow--amber  { background: var(--energy-soft); color: var(--amber-text); }
.eyebrow--purple { background: var(--dawn-soft); color: var(--dawn); }
.eyebrow--orange { background: var(--citrus-soft); color: var(--citrus-text); }
.eyebrow--green  { background: var(--green-soft); color: var(--green); }
.eyebrow--amber-dark { background: rgba(255,195,0,0.16); color: var(--energy); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; justify-content: center;
  padding: 18px 20px;
  background: rgba(251,247,240,0.82);
  backdrop-filter: blur(10px);
}
.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  width: 100%; max-width: var(--maxw);
  background: var(--harmony); border: 1px solid rgba(45,28,16,0.06);
  border-radius: 100px; padding: 12px 14px 12px 26px;
  box-shadow: 0 8px 30px rgba(45,28,16,0.06);
  position: relative;
}
.nav__logo img { height: 38px; width: auto; display: block; }
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__links > a { font-size: 15px; font-weight: 500; color: var(--roots); }
.nav__links > a:hover { color: var(--dawn); }
.nav__links-actions { display: none; }
.nav__actions { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px; border-radius: 10px;
}
.nav__toggle span { width: 24px; height: 2.5px; border-radius: 2px; background: var(--roots); transition: .25s; }

/* ---------- Hero ---------- */
.hero { position: relative; display: flex; justify-content: center; padding: 56px 20px 90px; }
.hero__glow { position: absolute; border-radius: 50%; pointer-events: none; }
.hero__glow--amber  { top: -120px; right: -160px; width: 560px; height: 560px; background: radial-gradient(circle, rgba(255,195,0,0.20), transparent 62%); }
.hero__glow--purple { bottom: -40px; left: -180px; width: 520px; height: 520px; background: radial-gradient(circle, rgba(92,5,242,0.10), transparent 64%); }
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.05fr 1fr;
  gap: 56px; align-items: center; width: 100%; max-width: var(--maxw);
}
.hero h1 {
  font-size: clamp(34px, 5vw, 55px); line-height: 1.06; font-weight: 700;
  letter-spacing: -0.02em; margin-bottom: 22px; text-wrap: balance;
}
.hero h1 .accent { color: var(--dawn); }
.hero__sub { font-size: clamp(16px, 2vw, 19px); line-height: 1.6; color: var(--muted); margin-bottom: 34px; max-width: 520px; }
.hero__cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.trust { display: flex; flex-wrap: wrap; gap: 10px 20px; }
.trust li { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; }
.ic-check { width: 18px; height: 18px; fill: none; stroke: var(--green); stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- App mockup ---------- */
.hero__art { position: relative; }
.mock { position: relative; background: #fff; border: 1px solid rgba(45,28,16,0.07); border-radius: 24px; box-shadow: 0 40px 80px -30px rgba(45,28,16,0.30); overflow: hidden; }
.mock__bar { display: flex; align-items: center; gap: 7px; padding: 14px 18px; border-bottom: 1px solid var(--line); }
.dot { width: 11px; height: 11px; border-radius: 50%; display: inline-block; }
.dot--orange { background: var(--citrus); }
.dot--amber  { background: var(--energy); }
.dot--green  { background: var(--green); }
.mock__url { margin-left: 12px; font-size: 12px; color: var(--muted-2); font-weight: 500; }
.mock__body { display: grid; grid-template-columns: 62px 1fr; min-height: 340px; }
.mock__side { background: var(--roots); display: flex; flex-direction: column; align-items: center; gap: 20px; padding: 20px 0; }
.mock__side-logo { width: 30px; height: auto; }
.mock__nav { width: 34px; height: 34px; border-radius: 11px; display: flex; align-items: center; justify-content: center; }
.mock__nav svg { width: 17px; height: 17px; fill: none; stroke: var(--muted-2); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.mock__nav--active { background: var(--dawn); }
.mock__nav--active svg { stroke: #fff; }
.mock__content { padding: 20px 22px; }
.mock__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.mock__label { font-size: 11px; color: var(--muted-2); font-weight: 500; }
.mock__name { font-size: 17px; font-weight: 700; }
.mock__badge { font-size: 11px; font-weight: 600; color: var(--green); background: var(--green-soft); padding: 6px 12px; border-radius: 100px; }
.mock__macros { display: flex; gap: 18px; align-items: center; background: var(--cream-bg); border-radius: 16px; padding: 16px; margin-bottom: 14px; }
.ring { width: 78px; height: 78px; border-radius: 50%; flex-shrink: 0; background: conic-gradient(var(--dawn) 0 45%, var(--energy) 45% 75%, var(--citrus) 75% 100%); display: flex; align-items: center; justify-content: center; }
.ring__center { width: 52px; height: 52px; border-radius: 50%; background: var(--cream-bg); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ring__num { font-size: 15px; font-weight: 700; line-height: 1; }
.ring__unit { font-size: 9px; color: var(--muted-2); }
.bars { flex: 1; display: flex; flex-direction: column; gap: 9px; }
.bar__top { display: flex; justify-content: space-between; font-size: 11px; margin-bottom: 3px; }
.bar__top span { color: var(--muted); font-weight: 500; }
.bar__top strong { font-weight: 600; }
.bar__track { height: 6px; border-radius: 6px; background: #eadfd2; }
.bar__fill { height: 100%; border-radius: 6px; }
.bar__fill--purple { background: var(--dawn); }
.bar__fill--amber  { background: var(--energy); }
.bar__fill--orange { background: var(--citrus); }
.meals { display: flex; flex-direction: column; gap: 9px; }
.meal { display: flex; align-items: center; gap: 11px; background: #fff; border: 1px solid rgba(45,28,16,0.07); border-radius: 12px; padding: 11px 13px; }
.meal__ico { width: 30px; height: 30px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; }
.meal__ico--amber { background: var(--energy-soft); }
.meal__ico--peach { background: var(--citrus-soft); }
.meal__txt { flex: 1; }
.meal__name { font-size: 12px; font-weight: 600; }
.meal__desc { font-size: 10px; color: var(--muted-2); }
.meal__kcal { font-size: 11px; font-weight: 600; color: var(--muted); }

.float { position: absolute; display: flex; align-items: center; gap: 11px; background: #fff; border-radius: 16px; padding: 12px 16px; box-shadow: 0 20px 40px -12px rgba(45,28,16,0.28); }
.float--sent { bottom: -26px; left: -30px; animation: an-floaty 5s ease-in-out infinite; }
.float--appt { top: -22px; right: -26px; background: var(--dawn); border-radius: 14px; padding: 11px 15px; box-shadow: 0 20px 40px -12px rgba(92,5,242,0.45); animation: an-floaty2 6s ease-in-out infinite; }
.float__ico { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.float__ico svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.float__ico--green { background: var(--green); }
.float__ico--glass { width: 34px; height: 34px; background: rgba(255,255,255,0.18); }
.float__title { font-size: 12px; font-weight: 700; }
.float__title--light { color: #fff; }
.float__sub { font-size: 11px; color: var(--muted-2); }
.float__sub--light { color: rgba(255,255,255,0.75); }

@keyframes an-floaty  { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes an-floaty2 { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }

/* ---------- Trust strip ---------- */
.strip { text-align: center; padding: 0 20px 20px; }
.strip p { font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); font-weight: 600; }

/* ---------- Generic section ---------- */
.section { padding: 80px 0; }
.section--white { background: #fff; }
.section--dark { background: var(--roots); }
.section--faq { padding-top: 40px; }
.section__head { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.section__head h2 { font-size: clamp(28px, 4vw, 42px); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; text-wrap: balance; }
.section__head p { font-size: clamp(15px, 2vw, 18px); line-height: 1.6; color: var(--muted); }
.on-dark { color: #fff; }
.on-dark-sub { color: rgba(247,241,232,0.7); }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { background: var(--cream-bg); border: 1px solid rgba(45,28,16,0.06); border-radius: var(--radius); padding: 26px 22px; transition: .2s; }
.feature:hover { border-color: rgba(92,5,242,0.35); transform: translateY(-4px); box-shadow: 0 18px 36px -18px rgba(45,28,16,0.22); }
.feature--link { display: block; color: inherit; text-decoration: none; }
.feature--link:hover h3 { color: var(--dawn); }
.feature__ico { width: 50px; height: 50px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.feature__ico svg, .benefit__ico svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.feature p { font-size: 14px; line-height: 1.55; color: var(--muted); }

.fbox-purple { background: var(--dawn-soft); color: var(--dawn); }
.fbox-amber  { background: var(--energy-soft); color: var(--amber-text); }
.fbox-orange { background: var(--citrus-soft); color: var(--citrus-text); }
.fbox-green  { background: var(--green-soft); color: var(--green); }

/* ---------- Benefits ---------- */
.benefits { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 56px; align-items: center; }
.benefits__media { border-radius: 24px; overflow: hidden; box-shadow: 0 40px 80px -30px rgba(45,28,16,0.35); }
.benefits__media picture { display: block; }
.benefits__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.benefit-list { display: flex; flex-direction: column; gap: 22px; margin-top: 8px; }
.benefit-list li { display: flex; gap: 16px; }
.benefit__ico { flex-shrink: 0; width: 44px; height: 44px; border-radius: 13px; display: flex; align-items: center; justify-content: center; }
.benefit-list h3 { font-size: 18px; font-weight: 600; margin-bottom: 5px; }
.benefit-list p { font-size: 15px; line-height: 1.55; color: var(--muted); }

/* ---------- Plans ---------- */
.plans { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: stretch; margin-top: 44px; }
.plan { display: flex; flex-direction: column; background: #3a2615; border: 1px solid rgba(255,255,255,0.08); border-radius: 22px; padding: 28px 24px; position: relative; }
.plan--featured { background: #fff; transform: translateY(-10px); box-shadow: 0 30px 60px -20px rgba(92,5,242,0.5); border-color: transparent; }
.plan__badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--dawn); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 16px; border-radius: 100px; white-space: nowrap; box-shadow: 0 8px 18px rgba(92,5,242,0.4); }
.plan__name-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.plan__name { font-size: 16px; font-weight: 600; color: var(--energy); margin-bottom: 4px; }
.plan__name--purple { color: var(--dawn); margin-bottom: 0; }
.plan--featured .plan__name { margin-bottom: 0; }
.plan__desc { font-size: 13px; color: rgba(247,241,232,0.6); margin-bottom: 18px; min-height: 38px; }
.plan__desc--dark { color: var(--muted); }
.plan__price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 4px; }
.cur { font-size: 20px; font-weight: 600; color: #fff; }
.cur--dark { color: var(--roots); }
.amt { font-size: 36px; font-weight: 700; color: #fff; line-height: 1; }
.amt--dark { color: var(--roots); }
.per { font-size: 14px; color: rgba(247,241,232,0.6); padding-bottom: 5px; }
.plan__period { font-size: 12px; color: rgba(247,241,232,0.5); margin-bottom: 22px; }
.plan__period--muted { color: var(--muted-2); }
.plan__cta { display: block; width: 100%; margin-bottom: 24px; }
.plan__feats { display: flex; flex-direction: column; gap: 11px; }
.plan__feats li { display: flex; gap: 10px; font-size: 13.5px; color: rgba(247,241,232,0.82); }
.plan__feats li::before { content: "✓"; color: var(--energy); flex-shrink: 0; }
.plan__feats--dark li { color: var(--roots); }
.plan__feats--dark li::before { color: var(--dawn); font-weight: 700; }
.save { font-size: 11px; font-weight: 600; padding: 4px 10px; border-radius: 100px; }
.save--green { color: var(--green); background: var(--green-soft); }
.save--amber { color: var(--energy); background: rgba(255,195,0,0.16); }
.plans__note { text-align: center; font-size: 14px; color: rgba(247,241,232,0.6); margin-top: 34px; }
.plans__note strong { color: #fff; }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi { display: flex; flex-direction: column; background: var(--cream-bg); border: 1px solid rgba(45,28,16,0.06); border-radius: var(--radius); padding: 28px; margin: 0; }
.stars { font-size: 14px; color: var(--citrus); font-weight: 700; letter-spacing: 0.06em; margin-bottom: 14px; }
.testi blockquote { font-size: 15.5px; line-height: 1.6; margin: 0 0 22px; flex: 1; }
.testi figcaption { display: flex; align-items: center; gap: 12px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 15px; flex-shrink: 0; }
.avatar--purple { background: var(--dawn); }
.avatar--orange { background: var(--citrus); }
.avatar--green  { background: var(--green); }
.testi__name { display: block; font-size: 14px; font-weight: 600; }
.testi__role { display: block; font-size: 13px; color: var(--muted-2); }

/* ---------- CTA band ---------- */
.cta-wrap { padding: 20px 0 80px; }
.cta { position: relative; background: var(--dawn); border-radius: 30px; padding: 64px 40px; text-align: center; overflow: hidden; }
.cta__glow { position: absolute; border-radius: 50%; }
.cta__glow--amber  { top: -80px; right: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(255,195,0,0.28), transparent 65%); }
.cta__glow--orange { bottom: -100px; left: -60px; width: 340px; height: 340px; background: radial-gradient(circle, rgba(255,106,0,0.22), transparent 65%); }
.cta__inner { position: relative; }
.cta h2 { font-size: clamp(26px, 4vw, 42px); line-height: 1.12; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; color: #fff; text-wrap: balance; }
.cta p { font-size: clamp(15px, 2vw, 18px); line-height: 1.6; color: rgba(255,255,255,0.85); margin: 0 auto 32px; max-width: 560px; }

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq__item { background: #fff; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 20px 24px; font-family: inherit; font-size: 16.5px; font-weight: 600; color: var(--roots); }
.faq__sign { position: relative; flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--harmony); }
.faq__sign::before, .faq__sign::after { content: ""; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); background: var(--dawn); border-radius: 2px; }
.faq__sign::before { width: 12px; height: 2.5px; }
.faq__sign::after  { width: 2.5px; height: 12px; transition: transform .25s ease; }
.faq__item.is-open .faq__sign::after { transform: translate(-50%,-50%) scaleY(0); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq__a p { padding: 0 24px 22px; font-size: 15px; line-height: 1.6; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--onix); padding: 60px 0 40px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer__brand img { height: 42px; width: auto; margin-bottom: 18px; }
.footer__brand p { font-size: 14px; line-height: 1.6; color: rgba(247,241,232,0.55); max-width: 300px; }
.footer__col h4 { font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 16px; }
.footer__col ul { display: flex; flex-direction: column; gap: 11px; }
.footer__col a { font-size: 14px; color: rgba(247,241,232,0.6); }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 24px; flex-wrap: wrap; gap: 12px; }
.footer__bottom p { font-size: 13px; color: rgba(247,241,232,0.45); }

/* =========================================================
   RESPONSIVE
   ========================================================= */

/* Tablet / small desktop */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .hero__art { max-width: 520px; margin: 0 auto; width: 100%; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .plan--featured { transform: none; }
  .testimonials { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

/* Mobile menu breakpoint */
@media (max-width: 880px) {
  .nav__links, .nav__actions { display: none; }
  .nav__toggle { display: flex; }
  .nav { padding: 12px 16px 12px 22px; }

  .nav__links.is-open {
    display: flex; flex-direction: column; align-items: stretch; gap: 4px;
    position: absolute; top: calc(100% + 12px); left: 0; right: 0;
    background: var(--harmony); border: 1px solid rgba(45,28,16,0.08);
    border-radius: 22px; padding: 14px; box-shadow: 0 20px 50px rgba(45,28,16,0.16);
  }
  .nav__links.is-open > a { padding: 12px 14px; border-radius: 12px; font-weight: 600; }
  .nav__links.is-open > a:hover { background: rgba(45,28,16,0.05); }
  .nav__links.is-open .nav__links-actions { display: flex; flex-direction: column; gap: 8px; margin-top: 6px; padding-top: 12px; border-top: 1px solid rgba(45,28,16,0.1); }
  .nav__links.is-open .btn { width: 100%; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
}

/* Phones */
@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .section__head { margin-bottom: 36px; }
  .container { padding: 0 18px; }
  .hero { padding: 36px 18px 70px; }

  .features { grid-template-columns: 1fr; gap: 14px; }
  .benefits { grid-template-columns: 1fr; gap: 32px; }
  .plans { grid-template-columns: 1fr; gap: 26px; margin-top: 36px; }
  .plan--featured { order: -1; }            /* surface the recommended plan first */
  .testimonials { grid-template-columns: 1fr; }

  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }

  .float--appt { top: -16px; right: -8px; }
  .float--sent { bottom: -18px; left: -8px; }

  .cta { padding: 48px 24px; border-radius: 24px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

/* Very small phones — keep floating cards from overflowing */
@media (max-width: 400px) {
  .float { padding: 10px 12px; }
  .float--sent, .float--appt { display: none; }
}

/* =========================================================
   COOKIE CONSENT — banner, modal e toggles (LGPD)
   ========================================================= */
.cookie-manage-btn {
  background: none; border: none; padding: 0; margin: 0; cursor: pointer;
  font-family: inherit; font-size: 14px; color: rgba(247,241,232,0.6); text-align: left;
}
.cookie-manage-btn:hover { color: #fff; }

/* ---- Banner ---- */
.cookie-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 1000;
  display: flex; justify-content: center; padding: 16px 20px;
  background: rgba(26,26,26,0.97); backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.25);
  animation: cookie-rise .3s ease both;
}
.cookie-banner[hidden] { display: none; }
@keyframes cookie-rise { from { transform: translateY(100%); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cookie-banner__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  width: 100%; max-width: var(--maxw);
}
.cookie-banner__content { display: flex; align-items: flex-start; gap: 14px; }
.cookie-banner__icon { font-size: 26px; line-height: 1; flex-shrink: 0; }
.cookie-banner__title { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 3px; }
.cookie-banner__desc { font-size: 13px; line-height: 1.55; color: rgba(247,241,232,0.7); max-width: 640px; }
.cookie-banner__desc a { color: var(--energy); text-decoration: underline; }
.cookie-banner__actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.cookie-banner__actions .btn { white-space: nowrap; }
.cookie-banner__actions .btn--ghost { color: #fff; }
.cookie-banner__actions .btn--ghost:hover { background: rgba(255,255,255,0.1); }
.cookie-banner__actions .btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.cookie-banner__actions .btn--outline:hover { background: rgba(255,255,255,0.08); border-color: #fff; color: #fff; }

/* ---- Modal ---- */
.cookie-modal { position: fixed; inset: 0; z-index: 1100; display: flex; align-items: center; justify-content: center; padding: 20px; }
.cookie-modal[hidden] { display: none; }
.cookie-modal__overlay { position: absolute; inset: 0; background: rgba(26,26,26,0.55); backdrop-filter: blur(3px); }
.cookie-modal__card {
  position: relative; width: 100%; max-width: 560px; max-height: 88vh; overflow-y: auto;
  background: #fff; border-radius: 22px; box-shadow: 0 40px 90px -30px rgba(0,0,0,0.4);
  animation: cookie-pop .25s ease both;
}
@keyframes cookie-pop { from { transform: translateY(12px) scale(.98); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; } }
.cookie-modal__header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 26px 14px; }
.cookie-modal__title { font-size: 20px; font-weight: 700; color: var(--roots); letter-spacing: -0.01em; }
.cookie-modal__close { display: flex; background: var(--harmony); border: none; cursor: pointer; width: 34px; height: 34px; border-radius: 50%; align-items: center; justify-content: center; flex-shrink: 0; }
.cookie-modal__close svg { width: 18px; height: 18px; fill: none; stroke: var(--roots); stroke-width: 2; stroke-linecap: round; }
.cookie-modal__close:hover { background: #ece2d4; }
.cookie-modal__body { padding: 0 26px 8px; }
.cookie-modal__intro { font-size: 14px; line-height: 1.6; color: var(--muted); margin-bottom: 18px; }

.cookie-category { border: 1px solid var(--line); border-radius: 14px; padding: 16px 18px; margin-bottom: 12px; }
.cookie-category__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.cookie-category__info { flex: 1; }
.cookie-category__name { display: block; font-size: 15px; font-weight: 600; color: var(--roots); margin-bottom: 4px; }
.cookie-category__desc { font-size: 13px; line-height: 1.55; color: var(--muted); margin: 0; }
.cookie-category__always { flex-shrink: 0; font-size: 12px; font-weight: 600; color: var(--green); background: var(--green-soft); padding: 5px 12px; border-radius: 100px; white-space: nowrap; }

/* Toggle switch */
.cookie-toggle { position: relative; flex-shrink: 0; width: 46px; height: 26px; cursor: pointer; }
.cookie-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.cookie-toggle__track { position: absolute; inset: 0; background: #d9cdbd; border-radius: 100px; transition: background .2s ease; }
.cookie-toggle__track::before { content: ""; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform .2s ease; box-shadow: 0 2px 5px rgba(0,0,0,0.2); }
.cookie-toggle input:checked + .cookie-toggle__track { background: var(--dawn); }
.cookie-toggle input:checked + .cookie-toggle__track::before { transform: translateX(20px); }
.cookie-toggle input:focus-visible + .cookie-toggle__track { outline: 2px solid var(--dawn); outline-offset: 2px; }

.cookie-modal__footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 16px 26px 24px; border-top: 1px solid var(--line); margin-top: 8px; flex-wrap: wrap; }
.cookie-modal__footer-actions { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 880px) {
  .cookie-banner__inner { flex-direction: column; align-items: stretch; gap: 14px; }
  .cookie-banner__actions { flex-wrap: wrap; }
  .cookie-banner__actions .btn { flex: 1; min-width: 130px; }
}
@media (max-width: 560px) {
  .cookie-modal__footer { flex-direction: column; align-items: stretch; }
  .cookie-modal__footer .btn { width: 100%; }
  .cookie-modal__footer-actions { flex-direction: column; }
}
