/* ===================== VARIÁVEIS ===================== */
:root {
  --bege-claro: #F7F2E9;
  --bege: #EFE6D6;
  --bege-escuro: #E3D6BF;
  --verde-suave: #A9BE97;
  --verde: #6E8B5E;
  --verde-escuro: #45593A;
  --texto: #3B3B31;
  --texto-suave: #6E6B5E;
  --branco: #FFFDF8;
  --sombra: 0 18px 50px rgba(69, 89, 58, 0.12);
  --radius: 22px;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
}

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

/* escala base do site: ~14.4px (90%). Reduz textos e espaçamentos em rem de forma
   proporcional, deixando tudo mais arejado, sem mexer na foto (px/vh) nem ficar pequeno demais. */
html { scroll-behavior: smooth; font-size: 90%; overflow-x: clip; }

body {
  font-family: var(--sans);
  color: var(--texto);
  background: var(--bege-claro);
  line-height: 1.7;
  overflow-x: clip;   /* trava o balanço lateral no celular (decoração botânica sangra sem gerar rolagem horizontal) */
  max-width: 100%;
}

h1, h2, h3 { font-family: var(--serif); font-weight: 500; line-height: 1.15; }

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

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

/* ===================== ABERTURA: ÁRVORE FLORIDA ===================== */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(120% 90% at 50% -10%, #FBF4EA 0%, var(--bege-claro) 45%, var(--bege) 100%);
  transition: opacity 1.4s ease, visibility 1.4s ease, transform 1.4s ease;
}
.intro.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scale(1.04);
}

/* brilho suave que respira atrás da árvore */
.intro__glow {
  position: absolute;
  width: 70vmax; height: 70vmax;
  top: -22vmax; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(243, 217, 208, 0.55) 0%, rgba(243, 217, 208, 0) 60%);
  animation: glowBreathe 9s ease-in-out infinite;
}
@keyframes glowBreathe {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;   transform: translateX(-50%) scale(1.08); }
}

/* árvore */
.tree {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(1100px, 135vw);
  height: auto;
  transform: translateX(-50%);
  transform-origin: 50% 100%;
  animation: treeIn 2.2s cubic-bezier(.2,.7,.2,1) both, treeSway 8s ease-in-out 2.2s infinite;
  filter: drop-shadow(0 20px 40px rgba(69, 89, 58, 0.08));
}
.tree__canopy circle { fill: #F4DCD2; opacity: 0.55; }
.tree__canopy circle:nth-child(odd) { fill: #EAD4CB; }
.tree__canopy circle:nth-child(3n) { fill: #D8E0C8; }
.tree__canopy { filter: blur(10px); }
.tree__blossoms circle { fill: #FBF1EC; opacity: 0.92; }
.tree__blossoms circle:nth-child(even) { fill: #F2D3CB; }
.tree__blossoms circle:nth-child(3n) { fill: #E8C4C0; }

@keyframes treeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(28px) scale(0.98); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
}
@keyframes treeSway {
  0%, 100% { transform: translateX(-50%) rotate(-0.6deg); }
  50%      { transform: translateX(-50%) rotate(0.6deg); }
}

/* nome durante a abertura */
.intro__title {
  position: relative;
  text-align: center;
  z-index: 3;
  margin-bottom: 12vh;
  animation: titleFade 2.6s ease both;
}
.intro__logo {
  display: block;
  height: clamp(84px, 15vw, 128px);
  width: auto;
  margin: 0 auto 1.4rem;
}
.intro__title h1 {
  font-size: clamp(2.8rem, 9vw, 5.4rem);
  color: var(--verde-escuro);
  letter-spacing: 0.01em;
}
.intro__title p {
  font-family: var(--sans);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--texto-suave);
  margin-top: 0.8rem;
  padding-left: 0.42em;
}
@keyframes titleFade {
  0%   { opacity: 0; transform: translateY(18px); }
  35%  { opacity: 1; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

/* canvas das pétalas, sempre no topo, sem capturar clique */
#petalCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1200;
  pointer-events: none;
}

/* ===================== REVELAÇÃO AUTOMÁTICA DO CONTEÚDO ===================== */
main, .nav, .whatsapp-float, .footer {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.3s ease, transform 1.3s cubic-bezier(.2,.7,.2,1);
}
body.is-revealed main,
body.is-revealed .nav,
body.is-revealed .whatsapp-float,
body.is-revealed .footer {
  opacity: 1;
  transform: none;
}

/* ===================== BOTÂNICA (camadas florais suaves e profundas) =====================
   Formas grandes, desfocadas, em baixa opacidade, sangrando pelas bordas.
   Devem parecer ambiente, não decoração colada por cima. */
.bot {
  position: absolute;
  z-index: -1;                 /* atrás do conteúdo / cards, acima do fundo da seção */
  pointer-events: none;
  color: var(--verde-suave);
  line-height: 0;
}
.bot > svg, .bot > use { display: block; width: 100%; height: 100%; }
/* níveis de profundidade (desfoque + opacidade diferentes) */
.bot--near   { filter: blur(4px);  opacity: 0.22; }
.bot--mid    { filter: blur(11px); opacity: 0.16; }
.bot--far    { filter: blur(24px); opacity: 0.12; }
/* sombra botânica projetada (tom escuro, bem difusa) */
.bot--shadow { filter: blur(28px); opacity: 0.10; color: var(--verde-escuro); }
@media (max-width: 700px) {
  /* desfoques grandes custam caro no celular: reduzo o raio e corto as camadas mais pesadas */
  .bot--near { opacity: 0.16; filter: blur(3px); }
  .bot--mid  { opacity: 0.12; filter: blur(7px); }
  .bot--far, .bot--shadow { display: none; }
  .hero__blob { filter: blur(42px); }
}

/* todas as seções deixam a botânica fluir para a vizinha, sem corte reto */
.sobre, .atendimento, .como, .ajuda, .faq, .contato { overflow: visible; }

/* posicionamento por seção (formas grandes, sangrando, atrás dos cards) */
.atendimento .bot--bloom-c  { width: 52vmax; height: 52vmax; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.atendimento .bot--branch-tr { width: 34vmax; height: 44vmax; top: -10vmax; right: -10vmax; transform: rotate(28deg); }
.como .bot--branch-bl { width: 36vmax; height: 47vmax; bottom: -12vmax; left: -11vmax; transform: rotate(8deg); }
.como .bot--leaf-tr   { width: 24vmax; height: 31vmax; top: -6vmax; right: -5vmax; transform: rotate(-22deg); }
.ajuda .bot--bloom-br { width: 44vmax; height: 44vmax; bottom: -16vmax; right: -14vmax; }
.ajuda .bot--leaf-tl  { width: 22vmax; height: 29vmax; top: -7vmax; left: -6vmax; transform: rotate(28deg); }
.sobre .bot--leaf-tr  { width: 30vmax; height: 39vmax; top: -9vmax; right: -7vmax; transform: rotate(-12deg); }
.sobre .bot--branch-bl { width: 30vmax; height: 39vmax; bottom: -12vmax; left: -9vmax; transform: rotate(14deg); }
.contato .bot--branch-tl { width: 38vmax; height: 49vmax; top: -10vmax; left: -8vmax; transform: rotate(-6deg); }
.contato .bot--bloom-br { width: 34vmax; height: 34vmax; bottom: -13vmax; right: -11vmax; }
.atendimento .bot--leaf-bl { width: 24vmax; height: 31vmax; bottom: -8vmax; left: -6vmax; transform: rotate(-18deg); }
.como .bot--bloom-tr { width: 30vmax; height: 30vmax; top: -11vmax; right: -9vmax; }
.ajuda .bot--branch-tr2 { width: 28vmax; height: 36vmax; top: -8vmax; right: -8vmax; transform: rotate(34deg); }
.faq .bot--bloom-tl { width: 34vmax; height: 34vmax; top: -11vmax; left: -10vmax; }
.faq .bot--leaf-br  { width: 24vmax; height: 31vmax; bottom: -8vmax; right: -6vmax; transform: rotate(196deg); }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem clamp(1.2rem, 5vw, 4rem);
  background: transparent;
  transition: padding 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}
/* modo sólido: aparece só quando você rola para além do hero (sobre o conteúdo claro) */
.nav--solid {
  background: rgba(248, 243, 234, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 24px rgba(69, 89, 58, 0.07);
  padding-top: 0.8rem; padding-bottom: 0.8rem;
}
.nav__logo { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--serif); font-size: 1.5rem; color: var(--verde-escuro); font-weight: 600; transition: color 0.3s; }
.nav__logo-mark { height: 36px; width: auto; display: block; }
.nav:not(.nav--solid) .nav__logo-mark { filter: drop-shadow(0 1px 10px rgba(247, 242, 233, 0.85)); }
.nav:not(.nav--solid) .nav__logo { text-shadow: 0 1px 12px rgba(247, 242, 233, 0.85); }

.nav__links { display: flex; gap: clamp(1.2rem, 2vw, 2rem); }
.nav__links a {
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  /* topo da foto é claro (estantes): texto escuro com halo claro p/ legibilidade */
  color: var(--verde-escuro);
  text-shadow: 0 1px 12px rgba(247, 242, 233, 0.85);
  position: relative;
  transition: color 0.3s, text-shadow 0.3s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: -4px;
  width: 0; height: 2px; background: currentColor; transition: width 0.3s;
}
.nav__links a:hover::after { width: 100%; }
/* sobre o conteúdo claro: texto escuro, sem sombra */
.nav--solid .nav__links a { color: var(--texto); text-shadow: none; }
.nav--solid .nav__links a:hover { color: var(--verde); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav__toggle span { width: 26px; height: 2px; background: var(--verde-escuro); transition: 0.3s; }

/* ===================== BOTÕES ===================== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
  cursor: pointer;
}
.btn--primary { background: var(--verde); color: var(--branco); box-shadow: 0 10px 24px rgba(110, 139, 94, 0.3); }
.btn--primary:hover { background: var(--verde-escuro); transform: translateY(-3px); }
.btn--ghost { background: transparent; color: var(--verde-escuro); border: 1.5px solid var(--verde-suave); }
.btn--ghost:hover { background: var(--verde-suave); color: var(--branco); transform: translateY(-3px); }
.btn--lg { padding: 1.05rem 2.6rem; font-size: 1rem; }

/* ===================== ELEMENTOS COMUNS ===================== */
.eyebrow {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  color: var(--verde);
  margin-bottom: 1rem;
}
.eyebrow--center { display: inline-flex; align-items: center; gap: 0.8rem; }
.eyebrow--center::before, .eyebrow--center::after {
  content: ''; width: 30px; height: 1px; background: var(--verde); opacity: 0.55;
}

.section-head { text-align: center; margin-bottom: clamp(2.6rem, 5vw, 4rem); }
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  color: var(--verde-escuro);
  letter-spacing: -0.015em;
}
.section-sub {
  max-width: 540px; margin: 1.1rem auto 0;
  color: var(--texto-suave); font-size: 1.06rem; line-height: 1.75;
}

section { position: relative; z-index: 2; padding: clamp(4rem, 10vw, 7rem) clamp(1.2rem, 6vw, 6rem); }

.hint { color: var(--verde); font-size: 0.78em; opacity: 0.7; }

/* ===================== HERO (editorial premium) ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: clamp(4.5rem, 8vh, 6.5rem) 0 clamp(2rem, 5vh, 3.5rem);
  overflow: hidden;
  /* mesh suave com brilho frio (futurista) terminando em bege-claro pra emendar sem linha */
  background:
    radial-gradient(48% 46% at 72% 14%, rgba(130,196,182,0.30) 0%, rgba(130,196,182,0) 56%),
    radial-gradient(60% 58% at 88% 70%, rgba(169,190,151,0.32) 0%, rgba(169,190,151,0) 60%),
    radial-gradient(46% 50% at 6% 30%, rgba(140,200,182,0.16) 0%, rgba(140,200,182,0) 60%),
    radial-gradient(55% 55% at 8% 92%, rgba(227,214,191,0.5) 0%, rgba(227,214,191,0) 60%),
    linear-gradient(160deg, var(--bege-claro) 0%, var(--bege) 58%, var(--bege-claro) 100%);
}
/* scrim claro no topo: garante legibilidade do menu sobre a foto e dá um respiro "airy" */
.hero::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 150px;
  background: linear-gradient(to bottom, rgba(247, 242, 233, 0.62), rgba(247, 242, 233, 0));
  z-index: 5; pointer-events: none;
}

/* ---- fundo premium: formas orgânicas, ramo floral, textura de papel ---- */
.hero__bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden;
  /* as formas borradas se dissolvem antes da base, sem corte reto */
  -webkit-mask-image: linear-gradient(to bottom, #000 84%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 84%, transparent 100%);
}
.hero__blob { position: absolute; border-radius: 50%; filter: blur(70px); will-change: transform; }
.hero__blob--1 { width: 48vw; height: 48vw; top: -12vw; right: -10vw; background: radial-gradient(circle, rgba(169,190,151,0.55), transparent 70%); }
.hero__blob--2 { width: 38vw; height: 38vw; bottom: -14vw; left: -12vw; background: radial-gradient(circle, rgba(234,217,194,0.7), transparent 70%); }
.hero__grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.035; mix-blend-mode: multiply;
}

.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: 1280px; margin: 0 auto;
  padding: 0 clamp(1.4rem, 6vw, 6rem);
}

/* ---- coluna de texto ---- */
.hero__text { position: relative; z-index: 3; max-width: 660px; }
/* entrada em cascata (fluida, premium) */
.hero__text > * { animation: heroRise 1s cubic-bezier(.2,.7,.2,1) both; }
.hero__eyebrow { animation-delay: .15s; }
.hero__title   { animation-delay: .28s; }
.hero__lead    { animation-delay: .42s; }
.hero__cta     { animation-delay: .54s; }
.hero__trust   { animation-delay: .66s; }

.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.5rem 0.95rem 0.5rem 0.7rem;
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  border: 1px solid rgba(110, 139, 94, 0.22);
  border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: 0.7rem; font-weight: 500; color: var(--verde);
  margin-bottom: 1.6rem;
}
.hero__eyebrow-mark { width: 13px; height: 13px; color: var(--verde-suave); flex-shrink: 0; }

.hero__title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.8vw, 4.4rem);
  font-weight: 500;
  line-height: 1.06; letter-spacing: -0.02em;
  color: var(--verde-escuro);
  margin-bottom: 1.25rem;
}
.hero__title em { position: relative; font-style: italic; color: var(--verde); white-space: nowrap; }
/* floreio organico removido em favor de um filete de luz (futurista) */
.hero__flourish { display: none; }
.hero__title em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -0.1em; height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--verde-suave) 22%, #8fd0c0 50%, var(--verde-suave) 78%, transparent 100%);
  filter: drop-shadow(0 0 7px rgba(143,208,192,0.75));
  transform: scaleX(0); transform-origin: left;
  animation: lineGrow 1s cubic-bezier(.6,.1,.3,1) 1.2s forwards;
}
@keyframes lineGrow { to { transform: scaleX(1); } }
.hero__lead {
  font-size: clamp(1.1rem, 1.45vw, 1.3rem);
  color: var(--texto); line-height: 1.7;
  max-width: 520px; margin-bottom: 1.7rem;
}

.hero__cta { display: flex; align-items: center; gap: 1.6rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--verde); color: var(--branco);
  padding: 1.05rem 2.5rem; border-radius: 100px;
  font-size: 0.98rem; letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(110, 139, 94, 0.3);
  transition: transform 0.5s cubic-bezier(.2,.7,.2,1), box-shadow 0.5s, background 0.5s;
}
.btn-primary span { position: relative; z-index: 1; }
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 28%, rgba(255,255,255,0.38) 50%, transparent 72%);
  transform: translateX(-130%); transition: transform 0.85s ease;
}
.btn-primary:hover::before { transform: translateX(130%); }
.btn-primary:hover { background: var(--verde-escuro); transform: translateY(-4px); box-shadow: 0 24px 46px rgba(69, 89, 58, 0.3); }
.btn-text { position: relative; display: inline-flex; align-items: center; gap: 0.5rem; color: var(--verde-escuro); font-weight: 500; }
.btn-text span { transition: transform 0.35s ease; }
.btn-text::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 100%; height: 1px; background: var(--verde-suave); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.btn-text:hover span { transform: translateX(5px); }
.btn-text:hover::after { transform: scaleX(1); }

.hero__trust { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.2rem; }
.hero__trust li { display: flex; align-items: center; gap: 0.7rem; font-size: 1.05rem; color: var(--texto); }
.hero__trust svg { width: 21px; height: 21px; flex-shrink: 0; filter: drop-shadow(0 2px 4px rgba(69, 89, 58, 0.16)); }

/* ---- coluna visual: foto full-bleed dominante + acabamento futurista suave ---- */
.hero__visual {
  position: absolute; top: 0; right: 0; bottom: 0;
  /* largura travada na proporção da foto (2:3) p/ caber inteira, imersiva, sem barra nem corte */
  width: min(52%, 74vh); z-index: 1;
  animation: heroRise 1.3s cubic-bezier(.2,.7,.2,1) .3s both;
}

/* halo de luz atrás da foto (aura futurista) */
.hero__halo {
  position: absolute; z-index: 0;
  top: 50%; left: -8%; transform: translateY(-50%);
  width: 70%; height: 86%;
  background:
    radial-gradient(closest-side, rgba(140, 200, 182, 0.4), rgba(140, 200, 182, 0) 72%),
    radial-gradient(closest-side, rgba(169, 190, 151, 0.34), rgba(169, 190, 151, 0) 70%);
  filter: blur(26px);
  animation: haloPulse 9s ease-in-out infinite;
}
@keyframes haloPulse {
  0%, 100% { opacity: 0.75; transform: translateY(-50%) scale(1); }
  50%      { opacity: 1;    transform: translateY(-50%) scale(1.05); }
}

/* foto: ocupa toda a coluna e dissolve no fundo (sem moldura, máximo impacto) */
.hero__panel {
  position: absolute; inset: 0; z-index: 1;
  /* dissolve esquerda (no texto) + base (na página): efeito imersivo, sem moldura */
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 13%, #000 36%),
    linear-gradient(to bottom, #000 93%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, rgba(0,0,0,0.5) 13%, #000 36%),
    linear-gradient(to bottom, #000 93%, transparent 100%);
  mask-composite: intersect;
}
.hero__panel img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 52%;  /* foto inteira (rosto + poltrona) no quadro proporcional */
  scale: 1.02;                 /* leve sobra para o parallax não revelar bordas */
  will-change: translate;
}
.hero__panel img.photo-missing {
  display: flex; align-items: center; justify-content: center;
  background: repeating-linear-gradient(45deg, var(--bege), var(--bege) 14px, var(--bege-escuro) 14px, var(--bege-escuro) 28px);
  color: var(--verde-escuro); font-family: var(--sans);
  font-size: 0.85rem; text-align: center; padding: 2rem; scale: 1;
}

/* tinta fria sutil: dá o ar "futurista" sem descaracterizar a marca */
.hero__tint {
  position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(120deg, rgba(110, 139, 94, 0.30) 0%, rgba(110, 139, 94, 0) 46%),
    linear-gradient(300deg, rgba(130, 196, 182, 0.26) 0%, rgba(130, 196, 182, 0) 42%);
  mix-blend-mode: soft-light;
}
/* scanlines finíssimas (toque tech) */
.hero__scan {
  position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0px, rgba(255,255,255,0.05) 1px, transparent 1px, transparent 4px);
  opacity: 0.45; mix-blend-mode: overlay;
}
.layer__glare {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at var(--gx, 50%) var(--gy, 30%), rgba(255,255,255,0.32) 0%, rgba(255,255,255,0) 50%);
  mix-blend-mode: soft-light; opacity: 0;
}

@keyframes heroRise { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* botânica do hero (formas grandes e suaves, atrás de tudo) */
.hero__bg .bot--branch-tl { width: 46vmax; height: 60vmax; top: -10vmax; left: -12vmax; transform: rotate(-10deg); }
.hero__bg .bot--bloom-bl  { width: 40vmax; height: 40vmax; bottom: -14vmax; left: -8vmax; }
.hero__bg .bot--leaf-mid  { width: 26vmax; height: 34vmax; top: 26%; left: -6vmax; transform: rotate(18deg); }

/* ===================== SOBRE ===================== */
/* fundo macio que dissolve no corpo (sem retângulo com borda dura recortando a botânica) */
.sobre { background: radial-gradient(130% 95% at 50% 42%, var(--bege) 0%, rgba(239, 230, 214, 0) 70%); }
.sobre__grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 3rem; max-width: 1000px; margin: 0 auto; align-items: start; }
.sobre__text p { margin-bottom: 1.2rem; color: var(--texto-suave); }
.sobre__text strong { color: var(--verde-escuro); }
.sobre__list { list-style: none; margin-top: 1.5rem; }
.sobre__list li { padding: 0.5rem 0 0.5rem 1.8rem; position: relative; color: var(--texto); }
.sobre__list li::before {
  content: ''; position: absolute; left: 0; top: 0.7em;
  width: 15px; height: 15px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M5 19C5 11 11 5 20 4c0 8-6 14-15 15z' fill='%236E8B5E'/%3E%3Cpath d='M8 16C12 12 16 8 19 6' stroke='%2345593A' stroke-width='1.2' fill='none'/%3E%3C/svg%3E") center/contain no-repeat;
}
/* citação: card que fecha a coluna de texto, logo abaixo da lista */
.sobre__quote {
  position: relative;
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  background: var(--verde-escuro);
  color: var(--bege-claro);
  border-radius: var(--radius);
  padding: clamp(1.9rem, 3vw, 2.5rem) clamp(1.9rem, 3vw, 2.5rem) clamp(1.7rem, 3vw, 2.2rem);
  box-shadow: var(--sombra);
  overflow: hidden;
}
.sobre__quote-mark {
  position: absolute; top: -0.06em; left: 0.28em;
  font-family: var(--serif); font-size: 5rem; line-height: 1;
  color: var(--verde-suave); opacity: 0.28; pointer-events: none;
}
.sobre__quote p {
  position: relative;
  color: var(--bege-claro);
  font-family: var(--serif); font-size: clamp(1.32rem, 1.8vw, 1.62rem);
  font-style: italic; line-height: 1.38; margin-bottom: 1rem;
}
.sobre__quote-author {
  display: inline-block;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.85;
}
/* coluna direita do Sobre: foto da Aline (médio) + citação */
.sobre__media { display: flex; flex-direction: column; gap: clamp(1.3rem, 2.5vw, 1.8rem); }
.sobre__photo { margin: 0; }
.sobre__photo img { width: 100%; height: auto; display: block; border-radius: var(--radius); box-shadow: var(--sombra); }
@media (max-width: 880px) { .sobre__media { max-width: 380px; margin: 0 auto; width: 100%; } }

/* ===================== ATENDIMENTO (editorial, sem caixas) ===================== */
.atend {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  max-width: 880px;
  margin: 0 auto;
}
.atend__col { position: relative; }
/* fio fino vertical separando as duas colunas (some no mobile) */
.atend__col + .atend__col::before {
  content: '';
  position: absolute; top: 4px; bottom: 4px;
  left: calc(clamp(2.5rem, 6vw, 5rem) / -2);
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(110, 139, 94, 0.22), transparent);
}
.atend__icon {
  display: grid; place-items: center;
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--branco);
  box-shadow: 0 8px 20px rgba(69, 89, 58, 0.08);
  margin-bottom: 1.4rem;
}
.atend__icon svg { width: 32px; height: 32px; color: var(--verde); }
.atend h3 { font-size: 1.7rem; color: var(--verde-escuro); margin-bottom: 0.7rem; }
.atend__col > p { color: var(--texto-suave); max-width: 38ch; }
.atend__note {
  margin-top: 1.4rem; padding-top: 1.2rem;
  border-top: 1px solid var(--bege-escuro);
  font-size: 0.95rem; color: var(--texto); line-height: 1.7;
}
.atend__label {
  display: block; margin-bottom: 0.4rem;
  font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--verde); font-weight: 600;
}
.atend__map {
  display: inline-block; margin-top: 0.7rem;
  color: var(--verde); font-weight: 500; font-size: 0.9rem;
  border-bottom: 1px solid transparent; transition: border-color 0.3s, color 0.3s;
}
.atend__map:hover { color: var(--verde-escuro); border-bottom-color: var(--verde-suave); }

/* mapa embutido: emoldurado no padrão do site (cantos macios + sombra) */
.atend__map-embed {
  max-width: 880px;
  margin: clamp(2.6rem, 6vw, 4rem) auto 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--sombra);
  border: 1px solid var(--bege-escuro);
  background: var(--branco);
}
.atend__map-embed iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.5;
  border: 0;
  /* dessaturação leve pra emendar com a paleta quente sem descaracterizar o mapa */
  filter: saturate(0.92) contrast(0.98);
}
.atend__map-caption {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.4rem 1rem;
  padding: 0.95rem clamp(1rem, 3vw, 1.6rem);
  background: var(--branco);
  border-top: 1px solid var(--bege-escuro);
  font-size: 0.9rem; color: var(--texto);
}
.atend__map-caption a {
  color: var(--verde); font-weight: 500;
  border-bottom: 1px solid transparent; transition: border-color 0.3s, color 0.3s;
}
.atend__map-caption a:hover { color: var(--verde-escuro); border-bottom-color: var(--verde-suave); }
@media (max-width: 700px) {
  .atend__map-embed iframe { aspect-ratio: 4 / 3.4; }
}

/* ===================== PERGUNTAS FREQUENTES (acordeão) ===================== */
.faq { background: transparent; }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--bege-escuro); }
.faq__item:first-child { border-top: 1px solid var(--bege-escuro); }

.faq__q {
  display: flex; align-items: center; justify-content: space-between; gap: 1.4rem;
  cursor: pointer; list-style: none;
  padding: clamp(1.1rem, 2.5vw, 1.45rem) 0.3rem;
  font-family: var(--serif);
  font-size: clamp(1.18rem, 2vw, 1.45rem);
  font-weight: 500; line-height: 1.32;
  color: var(--verde-escuro);
  transition: color 0.3s;
}
.faq__q::-webkit-details-marker { display: none; }      /* remove a setinha nativa */
.faq__q:hover,
.faq__item[open] > .faq__q { color: var(--verde); }

/* ícone +/− que vira − ao abrir */
.faq__icon { position: relative; width: 20px; height: 20px; flex-shrink: 0; }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--verde); border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s cubic-bezier(.2,.7,.2,1), opacity 0.35s ease;
}
.faq__icon::before { width: 17px; height: 2px; }        /* traço horizontal */
.faq__icon::after  { width: 2px; height: 17px; }        /* traço vertical */
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }

.faq__a { padding: 0 2.6rem 1.5rem 0.3rem; max-width: 66ch; }
.faq__a p { color: var(--texto-suave); }
/* o conteúdo surge suave ao abrir (height nativo + fade no texto) */
.faq__item[open] .faq__a { animation: faqFade 0.4s ease both; }
@keyframes faqFade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

.faq__cta {
  text-align: center; margin-top: clamp(2rem, 4vw, 2.8rem);
  color: var(--texto-suave); font-size: 1.02rem;
}
.faq__cta a {
  color: var(--verde); font-weight: 500; white-space: nowrap;
  border-bottom: 1px solid transparent; transition: border-color 0.3s, color 0.3s;
}
.faq__cta a:hover { color: var(--verde-escuro); border-bottom-color: var(--verde-suave); }

/* ===================== O ESPAÇO ===================== */
/* Modelo 5: foto panorâmica no topo + fileira de retratos embaixo (todas 100% visíveis, sem corte) */
.espaco__gallery5 {
  display: flex; flex-direction: column;
  gap: clamp(1rem, 2.4vw, 1.6rem);
  max-width: 1040px; margin: 0 auto;
}
.es { margin: 0; }
.es img {
  width: 100%; height: auto; display: block;       /* sem corte: mostra a sala inteira */
  border-radius: var(--radius); box-shadow: var(--sombra);
}
.es img.photo-missing {
  aspect-ratio: 4 / 5; display: grid; place-items: center; padding: 1.5rem;
  background: repeating-linear-gradient(45deg, var(--bege), var(--bege) 14px, var(--bege-escuro) 14px, var(--bege-escuro) 28px);
  color: var(--verde-escuro); font-size: 0.85rem; text-align: center;
}
.espaco__gallery5 .banner { width: 100%; max-width: 780px; margin: 0 auto; }
.espaco__gallery5 .row {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.8rem, 1.8vw, 1.4rem); align-items: start;
}

@media (max-width: 760px) {
  .espaco__gallery5 .banner { max-width: 100%; }
  .espaco__gallery5 .row { grid-template-columns: 1fr 1fr; }
}

/* ===================== COMO FUNCIONA (jornada conectada) ===================== */
/* sem fundo opaco: deixa a botânica da seção de cima atravessar sem corte reto */
.como { background: transparent; }
.journey {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.5vw, 2rem);
  max-width: 1080px;
  margin: 0 auto;
}
.journey__step { position: relative; text-align: center; padding: 0 0.4rem; }
/* a linha pontilhada que liga um passo ao outro (a "jornada") */
.journey__step::before {
  content: '';
  position: absolute;
  top: 27px;                 /* centro do nó (54 / 2) */
  right: 50%; left: -50%;
  border-top: 2px dashed rgba(110, 139, 94, 0.38);
  z-index: 0;
}
.journey__step:first-child::before { display: none; }
.journey__node {
  position: relative; z-index: 1;
  display: grid; place-items: center;
  width: 54px; height: 54px; border-radius: 50%;
  background: var(--verde); color: var(--branco);
  font-family: var(--serif); font-size: 1.4rem; font-weight: 600; line-height: 1;
  /* números alinhados (mesma altura, sem rabinho), centralizados igual */
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
  box-shadow: 0 8px 18px rgba(110, 139, 94, 0.3);
  margin: 0 auto 1.3rem;
}
.journey__step h3 {
  font-size: 1.4rem; font-weight: 600; color: var(--verde-escuro);
  margin-bottom: 0.55rem;
}
.journey__step p { color: var(--texto-suave); font-size: 0.96rem; line-height: 1.7; max-width: 24ch; margin: 0 auto; }

/* ===================== COMO AJUDO (editorial, sem caixas) ===================== */
.ajuda__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.6rem clamp(1.5rem, 5vw, 4rem);
  max-width: 760px;
  margin: 0 auto;
}
.ajuda__hint {
  text-align: center; color: var(--verde);
  font-size: 0.92rem; margin: -0.5rem auto 2.2rem;
  opacity: 0.85;
}
.ajuda__item {
  align-self: start;
  background: transparent; border-radius: 18px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.ajuda__head {
  display: flex; align-items: center; gap: 1.2rem; width: 100%;
  padding: 0.7rem 0.6rem;
  background: transparent; border: 0; border-radius: 18px;
  font: inherit; text-align: left; cursor: pointer;
  transition: transform 0.4s cubic-bezier(.2,.7,.2,1);
}
.ajuda__icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--branco);
  box-shadow: 0 8px 20px rgba(69, 89, 58, 0.08);
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}
.ajuda__icon svg { width: 30px; height: 30px; color: var(--verde); transition: color 0.4s ease; }
.ajuda__label { color: var(--texto); font-size: 1.05rem; font-weight: 500; }
.ajuda__chev {
  width: 20px; height: 20px; margin-left: auto; flex-shrink: 0;
  fill: none; stroke: var(--verde); stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  opacity: 0.55; transition: transform 0.4s cubic-bezier(.2,.7,.2,1), opacity 0.3s ease;
}
.ajuda__head:hover { transform: translateX(5px); }
.ajuda__head:hover .ajuda__icon { background: var(--verde); box-shadow: 0 12px 26px rgba(110, 139, 94, 0.3); transform: scale(1.05); }
.ajuda__head:hover .ajuda__icon svg { color: var(--branco); }
.ajuda__head:hover .ajuda__chev { opacity: 0.9; }
.ajuda__head:focus-visible { outline: 2px solid var(--verde); outline-offset: 3px; }

/* abre/fecha: descrição escondida que desliza ao clicar */
.ajuda__desc {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(.2,.7,.2,1);
}
.ajuda__desc p {
  overflow: hidden; min-height: 0; margin: 0;
  padding: 0 0.6rem 0 calc(56px + 1.2rem + 0.6rem);
  color: var(--texto); opacity: 0.82;
  font-size: 0.98rem; line-height: 1.6;
  transition: opacity 0.4s ease 0.1s;
}

/* estado aberto */
.ajuda__item.is-open { background: var(--branco); box-shadow: 0 10px 30px rgba(69, 89, 58, 0.07); }
.ajuda__item.is-open .ajuda__chev { transform: rotate(180deg); opacity: 0.9; }
.ajuda__item.is-open .ajuda__icon { background: var(--verde); box-shadow: 0 12px 26px rgba(110, 139, 94, 0.3); }
.ajuda__item.is-open .ajuda__icon svg { color: var(--branco); }
.ajuda__item.is-open .ajuda__desc { grid-template-rows: 1fr; }
.ajuda__item.is-open .ajuda__desc p { padding-top: 0.2rem; padding-bottom: 0.9rem; }

/* ===================== CONTATO ===================== */
.contato { padding-bottom: 7rem; }
.contato__inner {
  background: var(--bege);
  border-radius: 48px;
  padding: clamp(2.5rem, 6vw, 4.5rem);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.contato__sub { max-width: 480px; margin: 0 auto; color: var(--texto-suave); }
.contato__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 2.4rem 0; }
.social { display: flex; gap: 2.4rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.social a { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: var(--verde-escuro); font-size: 0.85rem; transition: transform 0.3s, color 0.3s; }
.social a:hover { transform: translateY(-4px); color: var(--verde); }
.social svg { width: 34px; height: 34px; fill: currentColor; }

/* ===================== RODAPÉ ===================== */
.footer { text-align: center; padding: 3rem 1.5rem; background: var(--verde-escuro); color: var(--bege-claro); position: relative; z-index: 2; }
.footer__name { font-family: var(--serif); font-size: 1.8rem; }
.footer__role { font-size: 0.9rem; letter-spacing: 0.1em; opacity: 0.85; margin: 0.4rem 0 1.2rem; }
.footer__copy { font-size: 0.8rem; opacity: 0.6; }

/* ===================== WHATSAPP FLUTUANTE ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 58px; height: 58px;
  background: var(--verde);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(69, 89, 58, 0.4);
  z-index: 90;
  transition: transform 0.3s, background 0.3s;
}
.whatsapp-float:hover { transform: scale(1.08); background: var(--verde-escuro); }
.whatsapp-float svg { width: 30px; height: 30px; fill: var(--branco); }

/* ===================== ANIMAÇÕES DE ENTRADA ===================== */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVO ===================== */

/* foto full-bleed vira bloco no topo em telas menores */
@media (max-width: 1024px) {
  .hero { flex-direction: column; min-height: auto; padding-top: 0; }
  .hero__visual {
    position: relative; width: 100%; aspect-ratio: 1024 / 1536; height: auto;
    max-height: 74vh; order: -1; animation-name: none;
  }
  .hero__halo { left: 50%; top: 40%; width: 90%; height: 70%; transform: translate(-50%, -50%); }
  .hero__panel {
    -webkit-mask-image: linear-gradient(to bottom, #000 90%, transparent 100%);
    mask-image: linear-gradient(to bottom, #000 90%, transparent 100%);
    -webkit-mask-composite: source-over; mask-composite: add;
  }
  .hero__panel img { object-fit: cover; object-position: 50% 50%; }
  .hero__inner { order: 1; padding-top: 2.4rem; padding-bottom: 1rem; }
  .hero__text { max-width: 640px; margin: 0 auto; }
}

@media (max-width: 880px) {
  .sobre__grid { grid-template-columns: 1fr; }
  .ajuda__grid { grid-template-columns: repeat(2, 1fr); }

  /* atendimento empilha e o fio vertical some */
  .atend { grid-template-columns: 1fr; gap: 2.8rem; }
  .atend__col + .atend__col::before { display: none; }

  /* jornada vira vertical (linha pontilhada à esquerda) */
  .journey { grid-template-columns: 1fr; gap: 0; max-width: 440px; }
  .journey__step {
    display: grid; grid-template-columns: 54px 1fr; gap: 1.3rem;
    text-align: left; padding: 0 0 2.4rem;
  }
  .journey__step:last-child { padding-bottom: 0; }
  .journey__step::before {
    top: 54px; bottom: 0; left: 26px; right: auto;
    border-top: 0; border-left: 2px dashed rgba(110, 139, 94, 0.38);
  }
  .journey__step:first-child::before { display: block; }
  .journey__step:last-child::before { display: none; }
  .journey__node { margin: 0; }
  .journey__step h3 { margin-top: 0.25rem; }
  .journey__step p { max-width: none; margin: 0; }

  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh; width: 70%;
    background: var(--bege-claro);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.4rem;
    box-shadow: -10px 0 40px rgba(69,89,58,0.12);
    transition: right 0.4s ease;
  }
  .nav__links.is-open { right: 0; }
  /* dentro do menu aberto os links ficam escuros (sobre o fundo bege) */
  .nav__links.is-open a { color: var(--verde-escuro); text-shadow: none; }
  .nav__toggle { display: flex; z-index: 101; }
}

@media (max-width: 480px) {
  .ajuda__grid { grid-template-columns: 1fr; }
  .hero__title { font-size: clamp(3rem, 13vw, 4.4rem); }
  .hero__cta { flex-direction: column; align-items: center; }
}

/* ===================== ACESSIBILIDADE ===================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}
