/* ═══════════════════════════════════════════════════════════
   Casamento Saudável — página mãe
   Paleta extraída da logo oficial:
   creme #FDF6EC · verde-profundo #1D331C · dourado #C7A04B · folha #8CA84E
   ═══════════════════════════════════════════════════════════ */

:root {
  --cream:      #FDF6EC;
  --cream-deep: #F6ECD9;
  --paper:      #FFFDF7;
  --ink:        #1D331C;
  --ink-soft:   #33502B;
  --muted:      #5C6650;
  --gold:       #C7A04B;
  --gold-dark:  #A9803A;
  --gold-light: #E9CE86;
  --leaf:       #8CA84E;
  --dark-bg:    #182B18;
  --dark-soft:  #1F3620;
  --dark-text:  #F3ECDA;
  --dark-muted: #B9BCA4;
  --border:     rgba(29, 51, 28, 0.12);
  --border-gold: rgba(199, 160, 75, 0.35);
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --maxw: 1140px;
  --serif: "Lora", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: rgba(199, 160, 75, .3); }

img { max-width: 100%; display: block; }
a { color: inherit; }

/* ─── Aura decorativa ─── */
.aura {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(720px 480px at 85% -5%, rgba(199,160,75,.13), transparent 65%),
    radial-gradient(640px 520px at -10% 30%, rgba(140,168,78,.10), transparent 65%);
}

/* ─── Layout ─── */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.narrow { max-width: 820px; }
.center { text-align: center; }

.section { padding: 104px 0; }
.section.tint { background: linear-gradient(180deg, var(--cream-deep), #F9F1E1); }
.section.dark {
  background:
    radial-gradient(900px 500px at 80% 0%, rgba(199,160,75,.10), transparent 60%),
    linear-gradient(165deg, var(--dark-soft), var(--dark-bg) 55%, #12210F);
  color: var(--dark-text);
}
.section.dark h2, .section.dark h3 { color: var(--dark-text); }
.section.dark p { color: var(--dark-muted); }
.section.dark .section-head p.eyebrow { color: var(--gold-light); }

/* ─── Tipografia ─── */
h1, h2, h3 { font-family: var(--serif); color: var(--ink); font-weight: 600; line-height: 1.22; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); letter-spacing: -0.01em; }
h1 em, h2 em { font-style: italic; color: var(--gold-dark); }
.section.dark h2 em { color: var(--gold-light); }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 20px; }
h3 { font-size: 1.35rem; }

.eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-dark); margin-bottom: 16px;
}
.eyebrow.gold { color: var(--gold-light); }

.lead { font-size: 1.15rem; max-width: 780px; }
.section-head { margin-bottom: 56px; max-width: 860px; }
.center .section-head, .section-head.center { margin-left: auto; margin-right: auto; }

p + p { margin-top: 18px; }

/* ─── Botões ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 30px; border-radius: 999px;
  font-weight: 600; font-size: .98rem; text-decoration: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  cursor: pointer; border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(160deg, var(--ink-soft), var(--ink));
  color: var(--cream);
  box-shadow: 0 10px 26px -12px rgba(29, 51, 28, .55);
}
.btn-primary:hover { box-shadow: 0 16px 32px -12px rgba(29, 51, 28, .6); }
.btn-outline {
  border-color: var(--gold);
  color: var(--gold-dark);
  background: transparent;
}
.btn-outline:hover { background: rgba(199,160,75,.1); }
.btn-gold {
  background: linear-gradient(160deg, var(--gold-light), var(--gold) 60%, var(--gold-dark));
  color: var(--ink);
  box-shadow: 0 12px 30px -12px rgba(199, 160, 75, .55);
}
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

/* ─── Navegação ─── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(253, 246, 236, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.nav.scrolled { border-bottom-color: var(--border); box-shadow: 0 8px 30px -18px rgba(29,51,28,.25); }
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-name {
  font-family: var(--serif); font-weight: 600; font-size: 1.22rem;
  color: var(--ink); line-height: 1.1;
}
.brand-name em { font-style: normal; color: var(--gold-dark); display: block; }
.brand-name.light { color: var(--dark-text); }
.brand-name.light em { color: var(--gold-light); }

.nav-links { display: flex; gap: 26px; margin-left: auto; }
.nav-links a {
  text-decoration: none; font-size: .93rem; font-weight: 500;
  color: var(--ink-soft); transition: color .25s;
}
.nav-links a:hover { color: var(--gold-dark); }
.btn-nav { padding: 11px 22px; font-size: .9rem; }

.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: .3s var(--ease); }
.nav-mobile { display: none; }

/* ─── Hero ─── */
.hero { padding: 84px 0 110px; position: relative; }
.hero-grid {
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: 56px; align-items: center;
}
.hero-copy h1 { margin-bottom: 26px; }
.hero-copy p { max-width: 620px; }
.hero-verse {
  margin-top: 26px; padding-left: 18px;
  border-left: 3px solid var(--gold);
  font-family: var(--serif); font-style: italic; font-size: 1.18rem;
  color: var(--ink-soft);
}

.hero-art { display: flex; justify-content: center; }
.hero-badge { position: relative; width: min(340px, 72vw); aspect-ratio: 1; }
.hero-mark {
  width: 100%; height: 100%; position: relative; z-index: 2;
  filter: drop-shadow(0 30px 50px rgba(29, 51, 28, .35));
  animation: float 7s ease-in-out infinite;
}
.hero-ring {
  position: absolute; border-radius: 50%; border: 1px solid var(--border-gold);
  inset: -9%; animation: spin 46s linear infinite;
}
.hero-ring.r2 { inset: -19%; border-style: dashed; opacity: .55; animation-duration: 70s; animation-direction: reverse; }
.hero-ring.r1::after, .hero-ring.r2::after {
  content: ""; position: absolute; width: 9px; height: 9px; border-radius: 50%;
  background: var(--gold); top: 12%; left: 8%;
  box-shadow: 0 0 12px rgba(199,160,75,.8);
}
.hero-ring.r2::after { background: var(--leaf); top: 78%; left: 88%; box-shadow: 0 0 12px rgba(140,168,78,.8); }

@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-14px) } }
@keyframes spin { to { transform: rotate(360deg) } }

/* ─── Seção escura: problema ─── */
.stanza {
  margin: 34px 0; padding: 6px 0 6px 22px;
  border-left: 2px solid rgba(199,160,75,.45);
  display: grid; gap: 6px;
}
.stanza p { font-family: var(--serif); font-style: italic; font-size: 1.12rem; color: var(--dark-text); margin: 0; }
.pull {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.35; color: var(--gold-light);
  margin: 44px 0; text-align: center;
}
.pull strong { color: var(--gold-light); font-weight: 700; }

/* ─── Quem somos ─── */
.two-col {
  display: grid; grid-template-columns: .82fr 1.18fr;
  gap: 64px; align-items: center;
}
.photo-frame {
  position: relative; aspect-ratio: 4 / 5; overflow: hidden;
  border-radius: 170px 170px var(--r-lg) var(--r-lg);
  border: 1.5px solid var(--border-gold);
  box-shadow: 0 30px 60px -30px rgba(29,51,28,.4);
  background: linear-gradient(170deg, var(--dark-soft), var(--dark-bg));
  padding: 12px;
}
.photo-frame img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 158px 158px calc(var(--r-lg) - 8px) calc(var(--r-lg) - 8px);
}
.photo-placeholder {
  display: none; position: absolute; inset: 12px;
  border-radius: 158px 158px calc(var(--r-lg) - 8px) calc(var(--r-lg) - 8px);
  border: 1px dashed rgba(233,206,134,.4);
  flex-direction: column; align-items: center; justify-content: center; gap: 10px;
}
.photo-frame.empty .photo-placeholder { display: flex; }
.mono {
  font-family: var(--serif); font-size: 3.4rem; color: var(--gold-light); letter-spacing: .04em;
}
.mono i { font-style: italic; color: var(--leaf); font-size: 2.4rem; }
.photo-hint { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--dark-muted); }

.creed { margin-top: 26px; display: grid; gap: 10px; }
.creed p {
  margin: 0; font-family: var(--serif); font-style: italic;
  font-size: 1.12rem; color: var(--ink-soft);
  padding-left: 28px; position: relative;
}
.creed p::before {
  content: "❧"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-style: normal;
}

/* ─── Cards: o que fazemos ─── */
.cards-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;
}
.card {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 30px 26px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 44px -24px rgba(29,51,28,.3);
  border-color: var(--border-gold);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 18px;
  background: linear-gradient(150deg, rgba(199,160,75,.16), rgba(140,168,78,.14));
  border: 1px solid var(--border-gold);
}
.card-icon svg { width: 26px; height: 26px; fill: none; stroke: var(--gold-dark); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.18rem; margin-bottom: 10px; }
.card p { font-size: .97rem; color: var(--muted); }

/* ─── Jornada / metodologia ─── */
.journey {
  list-style: none; max-width: 860px;
  position: relative; padding-left: 34px;
}
.journey::before {
  content: ""; position: absolute; left: 11px; top: 16px; bottom: 16px;
  width: 2px;
  background: linear-gradient(180deg, var(--gold-light), var(--gold) 30%, var(--leaf) 85%, transparent);
  opacity: .55;
}
.journey li {
  display: flex; gap: 24px; padding: 20px 0; position: relative;
}
.journey li::before {
  content: ""; position: absolute; left: -29px; top: 32px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--cream); border: 2.5px solid var(--gold);
}
.step {
  font-family: var(--serif); font-size: 1.6rem; font-style: italic;
  color: var(--gold); min-width: 56px; line-height: 1.3;
}
.journey h3 { margin-bottom: 6px; }
.journey p { color: var(--muted); font-size: 1rem; }

/* ─── Produtos ─── */
.products { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.product {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 44px 40px;
  display: flex; flex-direction: column; align-items: flex-start;
  position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.product:hover { transform: translateY(-5px); box-shadow: 0 30px 56px -28px rgba(29,51,28,.32); }
.product::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold), var(--leaf));
}
.product-tag {
  font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--gold-dark); background: rgba(199,160,75,.12);
  border: 1px solid var(--border-gold); border-radius: 999px;
  padding: 5px 14px; margin-bottom: 18px;
}
.product h3 { font-size: 1.9rem; margin-bottom: 6px; }
.product-motto {
  font-family: var(--serif); font-style: italic; font-size: 1.12rem;
  color: var(--ink-soft); margin-bottom: 18px;
}
.product p { font-size: .99rem; color: var(--muted); }
.product-slogan {
  font-family: var(--serif); font-style: italic; font-size: 1.1rem;
  color: var(--gold-dark) !important; margin-top: 20px;
}
.product-who { margin-top: 16px; font-size: .95rem; }
.product .btn { margin-top: 28px; }

/* ─── Fio condutor ─── */
.thread {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 40px;
  align-items: center; max-width: 940px; margin: 0 auto;
}
.thread-col { text-align: center; }
.thread-col h3 { color: var(--gold-light); font-size: 1.5rem; margin-bottom: 14px; }
.thread-col p { font-family: var(--serif); font-style: italic; font-size: 1.13rem; margin: 6px 0; color: var(--dark-text); }
.thread-divider { display: grid; place-items: center; }
.thread-divider svg {
  width: 54px; height: 54px; stroke: var(--leaf); stroke-width: 1.6;
  stroke-linecap: round; fill: none; opacity: .9;
}
.thread-close {
  text-align: center; max-width: 720px; margin: 48px auto 0;
  font-size: 1.1rem;
}

/* ─── Para quem é ─── */
.who-list { list-style: none; display: grid; gap: 16px; margin-top: 8px; }
.who-list li {
  background: var(--paper); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 20px 24px 20px 58px;
  position: relative; font-size: 1.03rem;
  transition: border-color .3s, transform .3s var(--ease);
}
.who-list li:hover { border-color: var(--border-gold); transform: translateX(4px); }
.who-list li::before {
  content: ""; position: absolute; left: 22px; top: 26px;
  width: 18px; height: 18px;
  background: var(--leaf);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22c0-6 1-10 6-13 2-1.2 4-1.6 4-1.6S21.8 14 17 18c-2.4 2-5 4-5 4Zm0 0c0-5-.8-8.4-5-11C4.6 9.5 2 9 2 9s.3 5.8 4.4 9C8.5 19.7 12 22 12 22Z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 22c0-6 1-10 6-13 2-1.2 4-1.6 4-1.6S21.8 14 17 18c-2.4 2-5 4-5 4Zm0 0c0-5-.8-8.4-5-11C4.6 9.5 2 9 2 9s.3 5.8 4.4 9C8.5 19.7 12 22 12 22Z"/></svg>') center / contain no-repeat;
}
.who-close {
  margin-top: 36px; text-align: center;
  font-family: var(--serif); font-size: 1.6rem; color: var(--ink);
}
.who-close em { color: var(--gold-dark); }

/* ─── Visão ─── */
.cascade { margin: 40px auto; display: grid; gap: 0; max-width: 640px; }
.cascade p {
  font-family: var(--serif); font-style: italic; font-size: 1.22rem;
  color: var(--ink-soft); margin: 0; padding: 14px 0; position: relative;
}
.cascade p + p { border-top: 1px solid var(--border-gold); }
.cascade p:nth-child(2) { padding-left: 34px; }
.cascade p:nth-child(3) { padding-left: 68px; }
.purpose {
  font-family: var(--serif); font-size: clamp(1.4rem, 2.8vw, 1.9rem);
  line-height: 1.4; color: var(--ink); font-style: italic;
  max-width: 760px; margin: 28px auto 0;
  padding-top: 28px; position: relative;
}
.purpose::before {
  content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 72px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-light), var(--gold));
}

/* ─── CTA final ─── */
.final { padding: 120px 0; }
.final-mark { width: 96px; height: 96px; margin: 0 auto 28px; display: block; filter: drop-shadow(0 18px 34px rgba(0,0,0,.4)); }
.final h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.final > .wrap > p { max-width: 640px; margin-left: auto; margin-right: auto; }
.paths {
  display: grid; grid-template-columns: repeat(2, minmax(0, 360px));
  gap: 22px; justify-content: center; margin: 46px 0;
}
.path-card {
  background: rgba(253,246,236,.05); border: 1px solid rgba(233,206,134,.22);
  border-radius: var(--r-md); padding: 30px 26px;
  display: flex; flex-direction: column; gap: 20px; align-items: center;
  transition: background .3s, border-color .3s;
}
.path-card:hover { background: rgba(253,246,236,.08); border-color: rgba(233,206,134,.45); }
.path-label { font-family: var(--serif); font-style: italic; font-size: 1.08rem; color: var(--dark-text) !important; }
.final-close { font-size: 1.15rem; margin-top: 10px; }
.final-close em {
  display: block; margin-top: 6px;
  font-family: var(--serif); font-size: 1.35rem; color: var(--gold-light);
}

/* ─── Rodapé ─── */
.footer {
  background: linear-gradient(180deg, #12210F, #0D1A0C);
  color: var(--dark-muted); padding: 64px 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr .8fr .8fr; gap: 44px;
  padding-bottom: 44px;
}
.footer-brand p { margin-top: 18px; font-size: .95rem; max-width: 380px; }
.footer-col h4 {
  font-family: var(--sans); font-size: .78rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 14px;
}
.footer-col a {
  display: block; text-decoration: none; font-size: .95rem;
  padding: 5px 0; color: var(--dark-muted); transition: color .25s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-base {
  border-top: 1px solid rgba(243,236,218,.12);
  padding-top: 22px; padding-bottom: 26px;
  font-size: .85rem;
}

/* ─── Toast ─── */
.toast {
  position: fixed; bottom: 28px; left: 50%;
  transform: translate(-50%, 20px);
  background: var(--ink); color: var(--cream);
  padding: 13px 26px; border-radius: 999px;
  font-size: .93rem; font-weight: 500;
  border: 1px solid rgba(233,206,134,.35);
  box-shadow: 0 18px 40px -14px rgba(0,0,0,.45);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  z-index: 90; max-width: min(90vw, 480px); text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ─── Reveal on scroll ─── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-mark, .hero-ring { animation: none; }
  html { scroll-behavior: auto; }
}

/* ─── Responsivo ─── */
@media (max-width: 980px) {
  .section { padding: 80px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-art { order: -1; }
  .hero-badge { width: min(240px, 60vw); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 44px; }
  .photo-frame { max-width: 380px; margin: 0 auto; }
  .thread { grid-template-columns: 1fr; gap: 24px; }
  .thread-divider svg { transform: rotate(90deg); width: 44px; height: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  body { font-size: 1rem; }
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav.open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav.open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav.open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-mobile {
    display: none; flex-direction: column; gap: 4px;
    padding: 10px 24px 22px;
    border-top: 1px solid var(--border);
  }
  .nav.open .nav-mobile { display: flex; }
  .nav-mobile a { text-decoration: none; padding: 10px 0; font-weight: 500; color: var(--ink-soft); }
  .nav-mobile .btn { margin-top: 10px; color: var(--cream); }
  .hero { padding: 56px 0 80px; }
  .cards-grid { grid-template-columns: 1fr; }
  .paths { grid-template-columns: 1fr; }
  .product { padding: 34px 26px; }
  .journey { padding-left: 26px; }
  .journey li { flex-direction: column; gap: 4px; }
  .journey li::before { left: -21px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cascade p:nth-child(2) { padding-left: 20px; }
  .cascade p:nth-child(3) { padding-left: 40px; }
}
