/* ===== Reset e base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

:root {
  --cor-primaria: #4A1512;
  --cor-primaria-forte: #350D0B;
  --cor-primaria-suave: #C98A94;
  --cor-secundaria: #A65D74;
  --cor-secundaria-suave: #D8A9B8;
  --bege: #F7E9EF;
  --bege-claro: #FBF3F6;
  --branco: #FFFDFC;
  --texto: #2E1210;
  --texto-suave: #6B4A48;
  --borda: rgba(74, 21, 18, 0.14);
  --sombra: rgba(74, 21, 18, 0.14);
  --fonte-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --fonte-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --vao-secao: 7rem;
}

@media (max-width: 720px) {
  :root { --vao-secao: 4.5rem; }
}

html, body { overflow-x: hidden; }

body {
  font-family: var(--fonte-sans);
  color: var(--texto);
  background: var(--bege-claro);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--fonte-serif);
  font-weight: 600;
  line-height: 1.15;
  color: var(--texto);
}

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 2000;
  background: var(--cor-primaria); color: var(--branco);
  padding: 0.75rem 1.25rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.eyebrow {
  font-family: var(--fonte-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cor-primaria);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1.5px;
  background: var(--cor-primaria);
  display: inline-block;
}

.botao {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 3px;
  font-weight: 600;
  font-size: 0.98rem;
  min-height: 44px;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
  white-space: nowrap;
}
.botao-primario {
  background: var(--cor-primaria);
  color: var(--branco);
  box-shadow: 0 8px 24px -10px var(--sombra);
}
.botao-primario:hover { background: var(--cor-primaria-forte); transform: translateY(-2px); box-shadow: 0 12px 28px -8px var(--sombra); }
.botao-secundario {
  background: transparent;
  color: var(--texto);
  border: 1.5px solid var(--borda);
}
.botao-secundario:hover { border-color: var(--cor-primaria); color: var(--cor-primaria); transform: translateY(-2px); }

/* ===== Grão / textura sutil ===== */
.grao { position: absolute; inset: 0; opacity: 0.035; pointer-events: none; mix-blend-mode: multiply; }

/* ===== Divisor com nó central ===== */
.divisor {
  position: relative;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--borda) 18%, var(--borda) 82%, transparent 100%);
  margin: 0 auto;
  max-width: 1180px;
}
.divisor::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 9px; height: 9px;
  background: var(--cor-primaria);
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 1px;
}

/* ===== Header ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: rgba(251, 248, 242, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s ease, border-color .3s ease, padding .3s ease;
  padding: 1.35rem 0;
}
.header.scrolled {
  box-shadow: 0 6px 24px -14px var(--sombra);
  border-bottom-color: var(--borda);
  padding: 0.85rem 0;
}
.header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.marca {
  display: flex; flex-direction: column; line-height: 1.1;
  flex-shrink: 0;
}
.marca .nome {
  font-family: var(--fonte-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.marca .titulo {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--texto-suave);
  margin-top: 0.15rem;
}
.nav-desktop {
  display: flex; align-items: center; gap: 2.1rem;
  flex: 1; justify-content: center;
}
.nav-desktop a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--texto-suave);
  position: relative;
  padding: 0.3rem 0;
  transition: color .2s ease;
}
.nav-desktop a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 1.5px; background: var(--cor-primaria);
  transition: width .25s ease;
}
.nav-desktop a:hover { color: var(--texto); }
.nav-desktop a:hover::after { width: 100%; }
.header .botao-primario { flex-shrink: 0; }

.menu-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 0.5rem;
  z-index: 950;
}
.menu-toggle span { width: 24px; height: 2px; background: var(--texto); transition: transform .25s ease, opacity .25s ease; }

.nav-mobile {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  background: var(--bege-claro);
  z-index: 940;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2rem;
  transform: translateY(-100%);
  transition: transform .35s ease;
  pointer-events: none;
}
.nav-mobile.aberto { pointer-events: auto; }
.nav-mobile.aberto { transform: translateY(0); }
.nav-mobile a { font-family: var(--fonte-serif); font-size: 1.5rem; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .header .botao-primario.desktop-only { display: none; }
  .menu-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: clamp(7.5rem, 14vw, 10rem) 0 var(--vao-secao);
  overflow: hidden;
  background: var(--bege-claro);
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
}
.hero-bg .anel {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--cor-primaria-suave);
  opacity: 0.35;
}
.hero-bg .anel-1 { width: 620px; height: 620px; top: -220px; right: -180px; }
.hero-bg .anel-2 { width: 420px; height: 420px; top: -60px; right: -40px; opacity: 0.5; }
.hero-bg .anel-3 { width: 860px; height: 860px; top: -340px; right: -300px; opacity: 0.22; }
.hero-bg .bloco {
  position: absolute; width: 340px; height: 340px;
  background: var(--cor-secundaria); opacity: 0.08;
  left: -140px; bottom: -140px; border-radius: 4px;
  transform: rotate(8deg);
}
.hero .container {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.25fr 1fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero-texto .citacao {
  font-family: var(--fonte-serif);
  font-style: italic;
  font-size: clamp(1.7rem, 3.3vw, 2.6rem);
  line-height: 1.28;
  color: var(--texto);
  margin: 1.4rem 0 0.9rem;
  max-width: 15ch;
}
.hero-texto .citacao-autor {
  font-size: 0.85rem;
  color: var(--texto-suave);
  letter-spacing: 0.04em;
  margin-bottom: 1.8rem;
  display: block;
}
.hero-texto .sub {
  font-family: var(--fonte-sans);
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.65;
  color: var(--texto-suave);
  max-width: 46ch;
  margin-bottom: 2.3rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-foto { position: relative; }
.moldura-editorial {
  position: relative;
  border: 1.5px solid var(--texto);
  padding: 14px;
}
.moldura-editorial::before {
  content: "";
  position: absolute; top: -14px; left: -14px; right: 14px; bottom: 14px;
  border: 1.5px solid var(--cor-primaria);
  z-index: -1;
}
.moldura-editorial img { width: 100%; height: auto; object-fit: cover; aspect-ratio: 4/5; transition: transform .5s ease; }
.moldura-editorial:hover img { transform: scale(1.02); }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-foto { max-width: 340px; margin: 0 auto; order: -1; }
}

/* ===== Seções genéricas ===== */
section { position: relative; padding: var(--vao-secao) 0; }
.secao-titulo { max-width: 42ch; margin-top: 1rem; }
.secao-intro { max-width: 58ch; color: var(--texto-suave); font-size: 1.05rem; margin-top: 1.1rem; }

/* ===== Sobre ===== */
.sobre { background: var(--bege); }
.sobre .container {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.sobre-foto .moldura-editorial { max-width: 400px; }
.sobre-conteudo .pull-quote {
  font-family: var(--fonte-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.35;
  color: var(--cor-primaria-forte);
  border-left: 3px solid var(--cor-primaria);
  padding-left: 1.5rem;
  margin: 1.8rem 0 1.8rem;
}
.sobre-conteudo p { margin-bottom: 1.1rem; color: var(--texto-suave); font-size: 1.02rem; }
.credenciais {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.6rem; margin-top: 1.6rem;
  font-size: 0.92rem; color: var(--texto-suave);
}
.credenciais span { display: inline-flex; align-items: center; gap: 0.5rem; }
.credenciais svg { flex-shrink: 0; color: var(--cor-primaria); }

@media (max-width: 900px) {
  .sobre .container { grid-template-columns: 1fr; }
  .sobre-foto .moldura-editorial { max-width: 320px; margin: 0 auto 1rem; }
}

/* ===== Abordagem ===== */
.abordagem { position: relative; overflow: hidden; }
.abordagem-fundo { position: absolute; inset: 0; pointer-events: none; }
.abordagem-fundo .anel {
  position: absolute; border-radius: 50%;
  border: 1px solid var(--cor-secundaria-suave); opacity: 0.35;
}
.abordagem-fundo .anel-a { width: 420px; height: 420px; top: -140px; right: -120px; }
.abordagem-fundo .anel-b { width: 260px; height: 260px; top: 10px; right: 40px; opacity: 0.25; }
.abordagem-fundo .anel-c { width: 560px; height: 560px; bottom: -260px; left: -220px; opacity: 0.2; }
.abordagem .container { position: relative; z-index: 1; }
.abordagem-texto { max-width: 66ch; }
.abordagem-texto p { color: var(--texto-suave); margin-bottom: 1.1rem; font-size: 1.02rem; }
.abordagem-texto strong { color: var(--texto); }

/* ===== Supervisão Clínica (faixa destacada, tratamento distinto do Atendimento) ===== */
.supervisao { background: var(--bege); position: relative; overflow: hidden; }
.supervisao-fundo { position: absolute; inset: 0; pointer-events: none; }
.supervisao-fundo .anel { position: absolute; border-radius: 50%; border: 1px solid var(--cor-primaria-suave); opacity: 0.3; }
.supervisao-fundo .anel-a { width: 380px; height: 380px; bottom: -180px; left: -140px; }
.supervisao-fundo .anel-b { width: 220px; height: 220px; bottom: -40px; left: 60px; opacity: 0.22; }
.supervisao .container { position: relative; z-index: 1; }
.supervisao-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2.5rem, 6vw, 5rem); align-items: start; margin-top: 2.5rem; }
.supervisao-texto p { color: var(--texto-suave); margin-bottom: 1.1rem; font-size: 1.05rem; max-width: 52ch; }
.supervisao-painel {
  background: var(--branco);
  border: 1px solid var(--borda);
  border-top: 3px solid var(--cor-primaria);
  padding: 2rem 2.2rem 2.2rem;
}
.supervisao-painel h3 {
  font-family: var(--fonte-sans);
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cor-primaria);
  margin-bottom: 1.4rem;
}
.supervisao-itens { list-style: none; margin: 0; padding: 0; }
.supervisao-itens li {
  display: grid; grid-template-columns: auto 1fr; gap: 1.1rem; align-items: baseline;
  padding: 1.1rem 0;
  border-top: 1px solid var(--borda);
  color: var(--texto);
  font-size: 0.98rem; line-height: 1.55;
}
.supervisao-itens li:first-child { border-top: none; padding-top: 0; }
.supervisao-itens .num {
  font-family: var(--fonte-serif);
  font-size: 1.3rem; font-weight: 600;
  color: var(--cor-primaria);
  opacity: 0.55;
}

@media (max-width: 900px) {
  .supervisao-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== Diferenciais ===== */
.diferenciais { background: var(--bege); }
.lista-diferenciais { margin-top: 3rem; display: flex; flex-direction: column; }
.item-diferencial {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(1.2rem, 4vw, 3rem);
  align-items: start;
  padding: 2.4rem 0;
  border-top: 1px solid var(--borda);
  position: relative;
}
.item-diferencial:last-child { border-bottom: 1px solid var(--borda); }
.item-diferencial .numero {
  font-family: var(--fonte-serif);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--cor-primaria);
  opacity: 0.22;
  line-height: 1;
}
.item-diferencial h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.item-diferencial p { color: var(--texto-suave); max-width: 56ch; }

/* ===== Como funciona ===== */
.como-funciona-passos {
  margin-top: 3rem;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  position: relative;
}
.como-funciona-passos::before {
  content: "";
  position: absolute; top: 26px; left: 12%; right: 12%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--borda) 0 8px, transparent 8px 16px);
  z-index: 0;
}
.passo { position: relative; z-index: 1; text-align: left; }
.passo .bola {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--branco); border: 1.5px solid var(--cor-primaria);
  color: var(--cor-primaria); font-family: var(--fonte-serif); font-weight: 600; font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.passo h4 { font-size: 1.12rem; margin-bottom: 0.5rem; }
.passo p { color: var(--texto-suave); font-size: 0.96rem; }

@media (max-width: 760px) {
  .como-funciona-passos { grid-template-columns: 1fr; gap: 2.4rem; }
  .como-funciona-passos::before { display: none; }
}

/* ===== CTA intermediária ===== */
.cta-intermediaria {
  background: linear-gradient(120deg, var(--cor-primaria-forte), var(--cor-primaria));
  color: var(--branco);
  text-align: center;
  overflow: hidden;
  position: relative;
}
.cta-intermediaria .anel {
  position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.18);
}
.cta-intermediaria .anel-1 { width: 480px; height: 480px; top: -220px; left: -160px; }
.cta-intermediaria .anel-2 { width: 300px; height: 300px; bottom: -160px; right: -100px; }
.cta-intermediaria .container { position: relative; z-index: 1; }
.cta-intermediaria .eyebrow { color: rgba(255,255,255,0.85); }
.cta-intermediaria .eyebrow::before { background: rgba(255,255,255,0.85); }
.cta-intermediaria h2 { color: var(--branco); max-width: 24ch; margin: 1.2rem auto 1rem; }
.cta-intermediaria p { color: rgba(255,255,255,0.86); max-width: 52ch; margin: 0 auto 2.2rem; }
.cta-intermediaria .botao-primario { background: var(--branco); color: var(--cor-primaria-forte); }
.cta-intermediaria .botao-primario:hover { background: var(--bege-claro); }

/* ===== FAQ ===== */
.faq-lista { margin-top: 3rem; max-width: 780px; }
.faq-item { border-bottom: 1px solid var(--borda); }
.faq-pergunta {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.5rem 0; text-align: left;
  font-family: var(--fonte-serif); font-size: 1.12rem; font-weight: 600;
}
.faq-pergunta svg { flex-shrink: 0; transition: transform .3s ease; color: var(--cor-primaria); }
.faq-item.aberto .faq-pergunta svg { transform: rotate(45deg); }
.faq-resposta {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
}
.faq-resposta p { padding-bottom: 1.6rem; color: var(--texto-suave); max-width: 62ch; }

/* ===== Formulário ===== */
.formulario { background: var(--bege); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; align-items: start; }
.form-lado p { color: var(--texto-suave); margin-top: 1rem; max-width: 40ch; }
.contato-direto { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 0.9rem; }
.contato-direto a { display: inline-flex; align-items: center; gap: 0.7rem; font-weight: 500; }
.contato-direto svg { color: var(--cor-primaria); flex-shrink: 0; }

form.site-form { display: flex; flex-direction: column; gap: 1.2rem; }
.campo { display: flex; flex-direction: column; gap: 0.5rem; }
.campo label { font-size: 0.88rem; font-weight: 600; color: var(--texto); }
.campo input, .campo textarea {
  font: inherit; padding: 0.85rem 1rem;
  border: 1.5px solid var(--borda); border-radius: 3px;
  background: var(--branco); color: var(--texto);
  transition: border-color .2s ease;
  min-height: 44px;
}
.campo textarea { min-height: 110px; resize: vertical; }
.campo input:focus, .campo textarea:focus { outline: none; border-color: var(--cor-primaria); }
.campo .erro { font-size: 0.8rem; color: #a83232; min-height: 1.1em; }
.form-status { font-size: 0.92rem; margin-top: 0.4rem; min-height: 1.2em; }
.form-status.sucesso { color: var(--cor-secundaria); }

@media (max-width: 820px) {
  .form-grid { grid-template-columns: 1fr; gap: 2.4rem; }
}

/* ===== Blog chamada ===== */
.blog-chamada { }
.blog-cards { margin-top: 3rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.blog-card {
  border: 1px solid var(--borda); border-radius: 4px; overflow: hidden;
  background: var(--branco);
  transition: transform .25s ease, box-shadow .25s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 16px 32px -18px var(--sombra); }
.blog-card .capa {
  height: 160px;
  background: linear-gradient(140deg, var(--cor-secundaria-suave), var(--cor-primaria-suave));
  position: relative; overflow: hidden;
}
.blog-card .capa .anel { position: absolute; border-radius: 50%; border: 1px solid rgba(255,255,255,0.4); width: 160px; height: 160px; top: -60px; right: -50px; }
.blog-card .corpo { padding: 1.4rem 1.5rem 1.6rem; }
.blog-card h3 { font-size: 1.08rem; margin-bottom: 0.5rem; }
.blog-card p { color: var(--texto-suave); font-size: 0.92rem; margin-bottom: 1rem; }
.blog-card .ler { font-size: 0.88rem; font-weight: 600; color: var(--cor-primaria); display: inline-flex; align-items: center; gap: 0.4rem; }
.blog-card-breve .corpo p { margin-bottom: 0; }
.selo-breve {
  display: inline-block; margin-bottom: 0.6rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--cor-primaria);
  border: 1px solid var(--cor-primaria-suave); border-radius: 2px;
  padding: 0.3rem 0.6rem;
}
.blog-cta-todos { margin-top: 2.6rem; text-align: center; }

@media (max-width: 820px) {
  .blog-cards { grid-template-columns: 1fr; }
}

/* ===== Rodapé ===== */
.footer { background: var(--texto); color: var(--bege-claro); padding: 4.5rem 0 2rem; }
.footer .container { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 3rem; }
.footer-marca { display: flex; align-items: center; gap: 1rem; }
.selo-monograma {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  border: 1.5px solid rgba(251,248,242,0.35);
  flex-shrink: 0;
  box-shadow: 0 6px 18px -8px rgba(0,0,0,0.4);
}
.selo-monograma img { width: 100%; height: 100%; object-fit: cover; }
.footer-marca .nome { font-family: var(--fonte-serif); font-size: 1.2rem; }
.footer-marca .titulo { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.65; margin-top: 0.2rem; }
.footer h4 { color: var(--bege-claro); font-family: var(--fonte-sans); font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.1rem; opacity: 0.75; }
.footer-nav { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-nav a { opacity: 0.82; font-size: 0.95rem; }
.footer-nav a:hover { opacity: 1; }
.contatos { list-style: none; display: flex; flex-wrap: wrap; gap: 1.25rem; margin: 0; padding: 0; }
.contatos a { display: inline-flex; align-items: center; gap: 0.55rem; min-height: 44px; text-decoration: none; }
.contatos svg { flex: 0 0 auto; }
.footer .contatos a { opacity: 0.88; color: var(--bege-claro); }
.footer .contatos a:hover { opacity: 1; }
.footer-base {
  margin-top: 3.5rem; padding-top: 1.8rem; border-top: 1px solid rgba(251,248,242,0.14);
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  font-size: 0.85rem; opacity: 0.65;
}
.footer-base a { text-decoration: underline; }

@media (max-width: 760px) {
  .footer .container { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* ===== WhatsApp flutuante ===== */
.whatsapp-flutuante {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -6px rgba(37,211,102,0.55);
  animation: wa-float 3.2s ease-in-out infinite;
  will-change: transform, box-shadow;
}
.whatsapp-flutuante::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37,211,102,0.55);
  animation: wa-pulse 2.8s ease-out infinite 1.2s;
}
.whatsapp-flutuante:hover { animation-play-state: paused; transform: scale(1.13); }
@keyframes wa-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }
@keyframes wa-pulse { 0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 100% { box-shadow: 0 0 0 20px rgba(37,211,102,0); } }

/* ===== Animações on-scroll ===== */
.animate-on-scroll {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease-out, transform .6s ease-out;
  transition-delay: calc(var(--i, 0) * 90ms);
}
.animate-on-scroll.visible { opacity: 1; transform: none; }

@keyframes drift {
  0% { transform: translate3d(0,0,0) rotate(0); }
  50% { transform: translate3d(0,-14px,0) rotate(1.5deg); }
  100% { transform: translate3d(0,0,0) rotate(0); }
}
.decor-drift { animation: drift 18s ease-in-out infinite; will-change: transform; }

.hero-texto, .hero-foto { opacity: 0; }
.hero-texto.entrou, .hero-foto.entrou { opacity: 1; transition: opacity .7s ease-out, transform .7s ease-out; }
.hero-texto.entrou { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero-texto, .hero-foto { opacity: 1 !important; transition: none !important; }
  .decor-drift { animation: none !important; }
  .whatsapp-flutuante, .whatsapp-flutuante::before { animation: none !important; }
  [data-parallax] { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ===== Placeholder de imagem ===== */
.img-placeholder {
  background: #f0ece3; border: 2px dashed #c9bda9; border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  min-height: 300px; width: 100%;
}
.img-placeholder__inner { display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--texto-suave); text-align: center; padding: 2rem; }
.img-placeholder__label { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; }
.img-placeholder__hint { font-size: 0.72rem; opacity: 0.75; }

/* ===== Utilidades ===== */
.somente-leitor { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
