/* =====================================================================
   Frutícola CM — estilo do site
   ---------------------------------------------------------------------
   Este arquivo controla a APARÊNCIA. Textos e fotos ficam no index.html.
   As cores da marca estão em :root. Trocar aqui muda o site inteiro.

   A referência visual é o material impresso dos 30 anos: papel creme,
   folha verde e arco laranja sólidos sangrando na borda, frutas em
   recorte "soltas" sobre o papel. As formas são o desenho, não enfeite.
   ===================================================================== */

:root {
  /* cores da marca (logotipo e caderno dos 30 anos) */
  --verde:        #2f9a4c;
  --verde-escuro: #1f6e37;
  --verde-claro:  #e2f1e4;
  --laranja:      #f39a3a;
  --laranja-claro:#fde8cf;
  --coral:        #e9564a;

  /* neutros — o creme vem do papel do caderno */
  --texto:        #1e2d1c;
  --texto-suave:  #56654f;
  --fundo:        #fffaf0;
  --creme:        #f6e6c6;
  --linha:        #e6d9bd;

  /* medidas e movimento */
  --largura:      1160px;
  --raio:         14px;
  --altura-menu:  88px;
  --sombra-fruta: drop-shadow(0 18px 22px rgba(30, 60, 30, .28));
  --suave:        cubic-bezier(.22, .61, .36, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--altura-menu) + 12px); }
body {
  margin: 0;
  font-family: "Nunito", "Segoe UI", Roboto, Arial, sans-serif;
  font-size: 1.0625rem; line-height: 1.6; color: var(--texto); background: var(--fundo);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--verde-escuro); }
h1, h2, h3, h4 { line-height: 1.12; margin: 0 0 .5em; font-weight: 800; letter-spacing: -.015em; text-wrap: balance; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.25rem); font-weight: 900; line-height: 1.02; letter-spacing: -.025em; }
h2 { font-size: clamp(1.85rem, 3.2vw, 2.6rem); color: var(--verde-escuro); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; text-wrap: pretty; }
.manuscrito { font-family: "Caveat", cursive; font-weight: 700; }
:focus-visible { outline: 3px solid var(--laranja); outline-offset: 3px; border-radius: 4px; }

.container { width: min(var(--largura), 100% - 2.5rem); margin-inline: auto; }
.secao { padding: clamp(3.5rem, 8vw, 6.5rem) 0; position: relative; }
.secao-creme { background: var(--creme); }
.secao > .container { position: relative; z-index: 1; }

/* Cabeçalho de seção: à esquerda, largura de leitura. O parágrafo é a
   frase que explica a seção — não um slogan. */
.titulo-secao { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.titulo-secao p { color: var(--texto-suave); font-size: 1.1rem; margin: 0; }

/* Frutas em recorte, soltas no papel (some no celular para não cobrir texto) */
.fruta-solta { position: absolute; pointer-events: none; z-index: 0; width: clamp(110px, 13vw, 190px); filter: var(--sombra-fruta); }
@media (max-width: 900px) { .fruta-solta { display: none; } }

/* ---------- animação de entrada (ver script no fim do index.html) ----------
   Discreta: só opacidade e 12px. A única animação "de verdade" é a da capa. */
.revelar { opacity: 0; transform: translateY(12px); transition: opacity .7s var(--suave), transform .7s var(--suave); }
.revelar.visivel { opacity: 1; transform: none; }
.atraso-1 { transition-delay: .08s; } .atraso-2 { transition-delay: .16s; }
.atraso-3 { transition-delay: .24s; } .atraso-4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .revelar { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- botões ----------
   Verde escuro = ação principal. Laranja com texto escuro = segunda ação.
   Contorno = terceira. Laranja com letra branca não tem contraste — evite. */
.botao {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .9rem 1.6rem; border-radius: 999px; font-weight: 800; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; font-size: 1rem; font-family: inherit; line-height: 1.2;
  transition: background .2s, color .2s, border-color .2s, transform .2s var(--suave);
}
.botao:hover { transform: translateY(-2px); }
.botao:active { transform: none; }
.botao-verde   { background: var(--verde-escuro); color: #fff; }
.botao-verde:hover { background: var(--verde); }
.botao-laranja { background: var(--laranja); color: var(--texto); }
.botao-laranja:hover { background: #f7ab5a; }
.botao-contorno{ background: transparent; color: var(--verde-escuro); border-color: var(--verde-escuro); }
.botao-contorno:hover { background: var(--verde-escuro); color: #fff; }
.botao-whatsapp{ background: #128c4a; color: #fff; }
.botao-whatsapp:hover { background: #0f7a40; }
.botao svg { width: 1.15em; height: 1.15em; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.botao svg.cheio { fill: currentColor; stroke: none; }

/* ---------- menu ---------- */
.menu {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 250, 240, .9); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent; transition: border-color .3s, background .3s;
}
.menu.rolado { border-color: var(--linha); background: rgba(255, 250, 240, .96); }
.menu .container { display: flex; align-items: center; justify-content: space-between; height: var(--altura-menu); }
.menu-logo img { height: 62px; width: auto; }
@media (max-width: 560px) { .menu-logo img { height: 52px; } }
.menu-links { display: flex; gap: 1.6rem; list-style: none; margin: 0; padding: 0; }
.menu-links a { position: relative; color: var(--texto); text-decoration: none; font-weight: 700; font-size: .97rem; padding: .3rem 0; }
.menu-links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--laranja);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--suave);
}
.menu-links a:hover::after, .menu-links a.ativo::after { transform: scaleX(1); }
.menu-acoes { display: flex; align-items: center; gap: .75rem; }
.menu-acoes .botao { padding: .6rem 1.2rem; font-size: .92rem; }
.menu-abrir { display: none; background: none; border: 0; padding: .4rem; cursor: pointer; }
.menu-abrir span { display: block; width: 26px; height: 3px; background: var(--verde-escuro); border-radius: 2px; margin: 5px 0; transition: transform .3s, opacity .3s; }
.menu-abrir[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-abrir[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-abrir[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
@media (max-width: 900px) {
  .menu-links {
    display: none; position: absolute; left: 0; right: 0; top: var(--altura-menu);
    flex-direction: column; gap: 0; background: var(--fundo); border-bottom: 1px solid var(--linha);
    padding: .5rem 0 1rem; box-shadow: 0 16px 30px rgba(0,0,0,.08);
  }
  .menu-links.aberto { display: flex; animation: descer .3s var(--suave); }
  .menu-links a { display: block; padding: .85rem 1.25rem; }
  .menu-abrir { display: block; }
  .menu-acoes .botao-verde { display: none; }
}
@keyframes descer { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- capa ----------
   A capa do caderno dos 30 anos, em tela: papel creme, folha verde
   varrendo de baixo à esquerda, arco laranja no canto, frutas em recorte.
   ---------------------------------------------------------------------- */
.capa { position: relative; overflow: hidden; background: var(--creme); }
.capa-folha, .capa-arco { position: absolute; pointer-events: none; z-index: 0; }
.capa-folha { width: clamp(420px, 62vw, 960px); left: 36%; bottom: -14%; color: var(--verde); transform: rotate(-8deg); }
.capa-arco  { width: clamp(340px, 42vw, 640px); right: -6%; bottom: -34%; color: var(--laranja); }
.capa-grade {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 2rem; align-items: center;
  min-height: min(82vh, 780px); padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(3rem, 7vw, 6rem);
}
.capa-texto { max-width: 40rem; }
.capa-texto h1 { color: var(--verde-escuro); margin-bottom: .6em; }
.capa-texto .chamada { font-size: 1.2rem; line-height: 1.5; max-width: 30rem; color: var(--texto); margin-bottom: 1.8rem; }
.capa-acoes { display: flex; gap: .6rem; flex-wrap: wrap; }
.capa-acoes .botao { padding: .85rem 1.25rem; font-size: .95rem; }

/* selo "30 anos", como no impresso: 3 verde, 0 laranja→coral, "anos" manuscrito com folhinha */
.selo-30 { display: inline-grid; grid-template-columns: auto auto auto; align-items: end; line-height: .85; margin-bottom: 1.2rem; }
.selo-30 .mais { font-size: 2.4rem; color: var(--verde); margin-right: .05em; padding-bottom: .12em; }
.selo-30 .num { font-weight: 900; font-size: 4rem; letter-spacing: -.06em; }
.selo-30 .tres { color: var(--verde); }
.selo-30 .zero { background: linear-gradient(135deg, var(--laranja), var(--coral) 70%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.selo-30 .anos { grid-column: 3; justify-self: end; margin-top: -.15em; color: var(--verde-escuro); font-size: 1.6rem; display: inline-flex; flex-direction: column; align-items: center; line-height: 1; }
.selo-30 .anos svg { width: 1.5em; color: var(--verde); margin-top: .05em; }

/* frutas da capa: natureza-morta com as três principais. Todas apoiadas na
   mesma linha de base, com uma sombra comum no chão; o limão na frente. */
.capa-frutas { position: relative; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 7%; margin-right: -6%; }
.capa-frutas img {
  position: relative; filter: drop-shadow(0 10px 10px rgba(30, 60, 30, .18));
  animation: chegar 1s var(--suave) both; animation-delay: var(--d, 0s);
}
.fruta-limao   { width: 58%; z-index: 3; order: 1; margin-right: -20%; }
.fruta-abacate { width: 44%; z-index: 1; order: 2; margin-bottom: 14%; }
.fruta-goiaba  { width: 62%; z-index: 2; order: 3; margin-left: -22%; margin-bottom: 2%; }
.capa-chao {
  position: absolute; left: 6%; right: 6%; bottom: 0; height: 12%; border-radius: 50%; z-index: 0;
  background: radial-gradient(ellipse at center, rgba(30, 60, 30, .28), rgba(30, 60, 30, 0) 70%);
}
@keyframes chegar { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (max-width: 900px) {
  .capa-grade { grid-template-columns: 1fr; min-height: 0; gap: 1rem; }
  .capa-frutas { max-width: 520px; margin-inline: auto; }
  .capa-folha { width: 120vw; left: -10%; bottom: -6%; }
  .capa-arco { width: 60vw; right: -12%; bottom: -30%; }
}
@media (max-width: 560px) {
  .capa-acoes .botao { width: 100%; }
  .selo-30 .num { font-size: 3.2rem; }
}

/* ---------- quem somos ---------- */
.quem-somos-grade { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: start; }
.quem-somos-grade .texto-grande { font-size: 1.18rem; line-height: 1.55; }
.quem-somos-grade p { max-width: 36rem; }
.quem-somos-grade h2 { max-width: 20ch; }
.linha-tempo { position: relative; padding-left: 2.2rem; margin-top: .6rem; }
.linha-tempo::before { content: ""; position: absolute; left: 11px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--verde), var(--laranja)); border-radius: 2px; }
.marco { position: relative; padding-bottom: 1.8rem; }
.marco:last-child { padding-bottom: 0; }
.marco::before {
  content: ""; position: absolute; left: -2.2rem; top: 6px; width: 24px; height: 24px; border-radius: 50%;
  background: var(--fundo); border: 4px solid var(--verde); box-shadow: 0 0 0 4px var(--verde-claro);
}
.marco:last-child::before { border-color: var(--laranja); box-shadow: 0 0 0 4px var(--laranja-claro); }
.marco .ano { font-weight: 900; color: var(--verde-escuro); font-size: 1.15rem; }
.marco p { margin: .1rem 0 0; color: var(--texto-suave); }
@media (max-width: 900px) { .quem-somos-grade { grid-template-columns: 1fr; } }
/* missão, visão e valores: uma linha cada, no pé da seção. Mesmo desenho de
   ícone das outras seções (círculo, traço de 2px), em verde-claro porque é
   informação de apoio — o círculo cheio fica para públicos e promessas. */
.valores { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem 3rem; margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: clamp(1.5rem, 3vw, 2.5rem); border-top: 1px solid var(--linha); }
.valor { display: grid; grid-template-columns: 44px 1fr; gap: 1rem; align-items: start; }
.valor svg { width: 44px; height: 44px; padding: 10px; border-radius: 50%; background: var(--verde-claro); color: var(--verde-escuro); fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.valor h3 { font-size: 1rem; color: var(--verde-escuro); margin-bottom: .15rem; }
.valor p { margin: 0; color: var(--texto-suave); font-size: .95rem; }
@media (max-width: 760px) { .valores { grid-template-columns: 1fr; gap: 1.2rem; } }

/* ---------- como atendemos (3 públicos) ----------
   Três colunas, uma por público. A cor da barra no topo identifica o
   público e se repete no botão de contato correspondente. Não é cartão:
   não tem caixa, sombra nem hover — o que se clica é o botão. */
.publicos { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); }
.publico { border-top: 5px solid var(--cor, var(--verde)); padding-top: 1.4rem; display: flex; flex-direction: column; }
.publico .icone { width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 1rem; background: var(--cor, var(--verde)); color: #fff; }
.publico[style*="--laranja"] .icone { color: var(--texto); }
.publico .icone svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.publico .para-quem { font-weight: 800; font-size: .95rem; color: var(--texto-suave); margin-bottom: .2rem; }
.publico h3 { font-size: 1.4rem; color: var(--verde-escuro); }
.publico ul { list-style: none; padding: 0; margin: .4rem 0 1.5rem; flex: 1; }
.publico li { position: relative; padding-left: 1.5rem; margin-bottom: .5rem; }
.publico li::before { content: ""; position: absolute; left: 0; top: .6em; width: .6rem; height: .6rem; border-radius: 50%; background: var(--cor, var(--verde)); }
.publico .botao { align-self: flex-start; }
@media (max-width: 900px) { .publicos { grid-template-columns: 1fr; } }

/* ---------- produtos ----------
   Como na página do caderno: a fruta solta no papel, com sombra, e o nome
   embaixo. Sem caixa. */
/* vitrine das três frutas principais: um item por tela, rolagem com encaixe */
.vitrine { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.vitrine-trilho {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none;
  cursor: grab; user-select: none; -webkit-user-select: none;
}
.vitrine-trilho::-webkit-scrollbar { display: none; }
.vitrine-trilho.arrastando { cursor: grabbing; scroll-snap-type: none; }
.vitrine-item {
  flex: 0 0 100%; scroll-snap-align: start;
  display: grid; grid-template-columns: minmax(240px, 380px) 1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
  padding: .5rem 0;
}
/* a fruta apoiada num "chão", como na capa — mesma sombra, mesma elipse */
.vitrine-foto { position: relative; padding-bottom: 9%; }
.vitrine-foto img { position: relative; width: 100%; max-width: 380px; margin-inline: auto; filter: drop-shadow(0 10px 10px rgba(30, 60, 30, .18)); }
.vitrine-foto::after {
  content: ""; position: absolute; left: 12%; right: 12%; bottom: 0; height: 11%; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(30, 60, 30, .24), rgba(30, 60, 30, 0) 70%);
}
.vitrine-texto h3 { font-size: clamp(1.5rem, 2.4vw, 1.9rem); color: var(--verde-escuro); }
.vitrine-texto p { max-width: 38rem; }
.vitrine-texto ul { list-style: none; padding: 0; margin: 0; max-width: 38rem; }
.vitrine-texto li { position: relative; padding-left: 1.4rem; margin-bottom: .35rem; color: var(--texto-suave); }
.vitrine-texto li::before { content: ""; position: absolute; left: 0; top: .6em; width: .55rem; height: .55rem; border-radius: 50%; background: var(--laranja); }
.vitrine-controles { display: flex; align-items: center; gap: .75rem; margin-top: .25rem; }
.vitrine-seta { width: 40px; height: 40px; border-radius: 50%; border: 2px solid var(--linha); background: transparent; color: var(--verde-escuro); cursor: pointer; display: grid; place-items: center; transition: border-color .2s, background .2s; }
.vitrine-seta:hover { border-color: var(--verde-escuro); }
.vitrine-seta svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.vitrine-pontos { display: flex; gap: .5rem; }
.vitrine-pontos button { width: 12px; height: 12px; border-radius: 50%; border: 0; padding: 0; background: var(--linha); cursor: pointer; transition: background .25s, width .25s; }
.vitrine-pontos button[aria-selected="true"] { background: var(--verde-escuro); width: 32px; border-radius: 6px; }
@media (max-width: 700px) {
  .vitrine-item { grid-template-columns: 1fr; gap: 1rem; }
  .vitrine-foto { max-width: 230px; margin-inline: auto; }
  .vitrine-foto img { max-width: 230px; }
}

.grupo-produtos { display: flex; align-items: baseline; gap: .8rem; margin: 2.5rem 0 .8rem; padding-bottom: .5rem; border-bottom: 1px solid var(--linha); }
.grupo-produtos h3 { margin: 0; color: var(--verde-escuro); font-size: 1.15rem; }
.grupo-produtos span { color: var(--texto-suave); font-size: .95rem; }
.produtos-grade { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1rem 1.25rem; }
.produto { text-align: center; padding: 1.2rem .5rem .6rem; }
.produto img { height: 120px; width: auto; object-fit: contain; margin: 0 auto .9rem; filter: var(--sombra-fruta); transition: transform .4s var(--suave); }
.produto:hover img { transform: translateY(-6px); }
.produto h4 { font-size: 1.05rem; color: var(--verde-escuro); margin: 0; }
.pedido-aberto { max-width: 640px; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--linha); }
.pedido-aberto h3 { color: var(--verde-escuro); font-size: 1.25rem; }
.pedido-aberto p { color: var(--texto-suave); margin: 0; }
.acoes-centro { margin-top: 1.5rem; display: flex; gap: .75rem; flex-wrap: wrap; }

/* ---------- packing house (processo) ----------
   Verso do caderno: verde chapado com o arco laranja no canto. Os quatro
   passos são numerados porque acontecem nessa ordem. */
.processo { background: var(--verde-escuro); color: #fff; position: relative; overflow: hidden; }
.processo .forma-arco { position: absolute; right: -8%; bottom: -46%; width: clamp(320px, 38vw, 560px); color: var(--laranja); pointer-events: none; }
.processo .container { position: relative; z-index: 1; }
.processo h2, .processo h3 { color: #fff; }
.processo .titulo-secao p { color: rgba(255,255,255,.85); }
.passos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1000px; }
.passo { position: relative; }
.passo .n { display: inline-grid; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--laranja); color: var(--texto); font-weight: 900; font-size: 1.15rem; margin-bottom: 1rem; }
/* a linha que liga um número ao próximo: a fruta segue essa ordem */
@media (min-width: 1001px) {
  .passo:not(:last-child)::before { content: ""; position: absolute; top: 21px; left: 54px; right: calc(-2rem + 10px); border-top: 2px dashed rgba(255,255,255,.4); }
}
.passo h3 { font-size: 1.15rem; }
.passo p { margin: 0; color: rgba(255,255,255,.85); font-size: .97rem; }
.processo-cta { margin-top: 3rem; display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.processo-cta p { margin: 0; font-size: 1.1rem; font-weight: 700; }
@media (max-width: 1000px) { .passos { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .passos { gap: 1.5rem 1.25rem; } .passo .n { width: 36px; height: 36px; font-size: 1rem; margin-bottom: .6rem; } .passo h3 { font-size: 1.05rem; } .passo p { font-size: .92rem; } }

/* ---------- por que comprar: quatro promessas à vista ---------- */
.promessas { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem 2.5rem; }
.promessa svg { width: 48px; height: 48px; padding: 12px; border-radius: 50%; background: var(--verde-escuro); color: #fff; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 1rem; }
.promessa h3 { font-size: 1.2rem; line-height: 1.2; color: var(--verde-escuro); margin-bottom: .4em; }
.promessa p { margin: 0; color: var(--texto-suave); font-size: .97rem; }
@media (max-width: 960px) { .promessas { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .promessas { grid-template-columns: 1fr; gap: 1.5rem; } .promessa { display: grid; grid-template-columns: 48px 1fr; gap: .1rem 1rem; } .promessa svg { grid-row: 1 / span 2; margin: 0; } .promessa h3, .promessa p { grid-column: 2; } }

/* ---------- parceiros (esteira) ---------- */
/* seção de parceiros: título e botão centralizados, acompanhando a esteira */
#parceiros .titulo-secao { margin-inline: auto; text-align: center; }
#parceiros .acoes-centro { justify-content: center; }
.esteira { overflow: hidden; position: relative; padding: .5rem 0; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.esteira-trilho { display: flex; gap: 1rem; width: max-content; animation: rolar 50s linear infinite; }
.esteira:hover .esteira-trilho { animation-play-state: paused; }
@keyframes rolar { to { transform: translateX(-50%); } }
.parceiro { flex: none; width: 190px; height: 96px; background: #fff; border-radius: var(--raio); display: grid; place-items: center; padding: 1rem 1.25rem; }
.parceiro img { max-height: 56px; max-width: 100%; width: auto; }

/* ---------- contato ---------- */
/* os locais em grade (2 colunas no computador) */
#contato h2 { margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.lugares { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 clamp(2rem, 5vw, 4rem); border-top: 1px solid var(--linha); }
.lugar { padding: 1.5rem 0; border-bottom: 1px solid var(--linha); }
.lugares .lugar:nth-last-child(-n+2) { border-bottom: 0; }
.lugar h3 { color: var(--verde-escuro); font-size: 1.1rem; margin-bottom: .25rem; }
.lugar address { font-style: normal; color: var(--texto-suave); margin-bottom: .3rem; }
.lugar .mapa { display: inline-block; font-weight: 700; font-size: .95rem; margin-bottom: .5rem; }
.lugar .botao-whatsapp { margin-top: .8rem; }
.telefones a { display: flex; align-items: center; gap: .6rem; color: var(--texto); text-decoration: none; font-weight: 800; font-size: 1.15rem; padding: .15rem 0; overflow-wrap: anywhere; }
.telefones a[href^="mailto"] { font-weight: 700; font-size: 1.02rem; }
.telefones a:hover { color: var(--verde-escuro); }
.telefones svg { width: 20px; height: 20px; fill: none; stroke: var(--verde); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
/* a tangerina solta no canto vazio, como nas páginas do caderno */
#contato { overflow: hidden; }
#contato .fruta-solta { right: 4%; bottom: 8%; width: clamp(150px, 15vw, 220px); }
@media (max-width: 1100px) { #contato .fruta-solta { display: none; } }
@media (max-width: 760px) { .lugares { grid-template-columns: 1fr; } }

/* ---------- rodapé ---------- */
.rodape { background: var(--verde-escuro); color: #dfe9df; padding: 3rem 0 1.5rem; font-size: .95rem; position: relative; overflow: hidden; }
.rodape > .container { position: relative; z-index: 1; }
.rodape .forma-arco { position: absolute; right: -6%; bottom: -60%; width: clamp(280px, 34vw, 520px); color: var(--laranja); pointer-events: none; }
.redes { display: flex; gap: .6rem; margin-top: 1rem; }
.redes a { width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center; background: rgba(255,255,255,.14); color: #fff; transition: background .2s; }
.redes a:hover { background: var(--laranja); color: var(--texto); }
.redes svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.rodape-grade { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; }
.rodape img { height: 46px; width: auto; margin-bottom: 1rem; }
.rodape h4 { color: #fff; font-size: 1rem; margin-bottom: .8rem; }
.rodape ul { list-style: none; margin: 0; padding: 0; }
.rodape li { margin-bottom: .4rem; }
.rodape a { color: #dfe9df; text-decoration: none; }
.rodape a:hover { color: #fff; text-decoration: underline; }
.rodape .copy { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2.5rem; padding-top: 1.25rem; opacity: .7; font-size: .85rem; }
@media (max-width: 760px) { .rodape-grade { grid-template-columns: 1fr; } }

/* ---------- botão flutuante do WhatsApp (abre a escolha do local) ---------- */
.whatsapp-flutuante { position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 60; display: flex; flex-direction: column; align-items: flex-end; gap: .75rem; }
.whatsapp-flutuante button {
  width: 58px; height: 58px; border-radius: 50%; border: 0; cursor: pointer;
  background: #128c4a; color: #fff; display: grid; place-items: center; box-shadow: 0 10px 24px rgba(18,140,74,.4);
  transition: transform .25s var(--suave);
}
.whatsapp-flutuante button:hover { transform: scale(1.06); }
.whatsapp-flutuante button svg { width: 30px; height: 30px; fill: currentColor; }
.whatsapp-menu {
  background: #fff; border-radius: var(--raio); box-shadow: 0 16px 40px rgba(20,40,25,.2); padding: .75rem; min-width: 260px;
  animation: subir .25s var(--suave);
}
@keyframes subir { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.whatsapp-menu p { margin: .25rem .5rem .5rem; font-weight: 800; color: var(--verde-escuro); }
.whatsapp-menu a { display: block; padding: .7rem .75rem; border-radius: 10px; text-decoration: none; color: var(--texto); }
.whatsapp-menu a:hover { background: var(--verde-claro); }
.whatsapp-menu a strong { display: block; font-weight: 800; }
.whatsapp-menu a span { display: block; font-size: .9rem; color: var(--texto-suave); }

[hidden] { display: none !important; }
