/* =================================================================
   LP Andrêssa Taíula · Direito da Saúde
   Estética: editorial, sóbria, acolhedora. Premium sem ser frio.
   Tokens em :root — sem cores hardcoded fora daqui.
   ================================================================= */

:root {
  /* Cores */
  --color-bg:          #f5f0e6;
  --color-bg-alt:      #ede7d9;
  --color-bg-dark:     #2d3d1e;
  --color-bg-mid:      #6b7a56;
  --color-text:        #2a2f23;
  --color-text-dark:   #f0ece2;
  --color-text-light:  #5a6a4a;
  --color-accent:      #c9a94e;
  --color-accent-dark: #a8873a;
  --color-white:       #ffffff;

  /* Verde WhatsApp (CTAs) */
  --color-whatsapp:       #25d366;
  --color-whatsapp-dark:  #1ebe5d;

  /* Tipografia */
  --font-heading:      'Cormorant Garamond', serif;
  --font-body:         'DM Sans', sans-serif;

  /* Layout */
  --container-width:   1200px;

  /* Espaçamento */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Superfícies translúcidas em fundos escuros */
  --surface-dark:       rgba(240, 236, 226, 0.05);
  --surface-dark-hover: rgba(240, 236, 226, 0.09);
  --border-dark:        rgba(240, 236, 226, 0.12);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.65;
  font-size: 1.0625rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.page-wrapper { overflow: hidden; }

/* ---------- Tipografia base ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.12;
  color: var(--color-text);
}

em { font-style: italic; color: var(--color-accent-dark); }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ---------- Seções: ritmo claro/escuro ---------- */
section { padding: clamp(3.5rem, 6vw, 5.5rem) 0; position: relative; }

.section-dark      { background: var(--color-bg-dark);  color: var(--color-text-dark); }
.section-mid       { background: var(--color-bg-mid);   color: var(--color-text-dark); }
.section-light     { background: var(--color-bg); }
.section-light-alt { background: var(--color-bg-alt); }

.section-dark  h1, .section-dark  h2, .section-dark  h3,
.section-mid   h1, .section-mid   h2, .section-mid   h3 { color: var(--color-text-dark); }

/* em invertido em fundos escuros → dourado claro */
.section-dark em, .section-mid em { color: var(--color-accent); }

/* ---------- Títulos de seção ---------- */
.kicker {
  display: inline-block;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 0.78rem;
  color: var(--color-accent-dark);
  margin-bottom: var(--space-sm);
}
.section-dark .kicker, .section-mid .kicker { color: var(--color-accent); }

.section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.5px;
  margin-bottom: var(--space-sm);
}

.section-desc {
  font-size: 1.15rem;
  color: var(--color-text-light);
  max-width: 60ch;
  text-align: justify;
}
.section-dark .section-desc, .section-mid .section-desc { color: var(--color-text-dark); opacity: 0.85; }

.section-head { margin-bottom: 2.5rem; }
.section-head.center { text-align: center; }
.section-head.center .section-desc { margin-left: auto; margin-right: auto; }

/* =================================================================
   BOTÕES
   ================================================================= */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--color-whatsapp);
  color: var(--color-white);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.2px;
  padding: 1rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.4s cubic-bezier(0.16,1,0.3,1),
              transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
  animation: pulseWhatsapp 2.6s infinite;
}
.btn-primary i { transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
.btn-primary:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(37,211,102,0.35);
  animation: none;
}
.btn-primary:hover i { transform: translateX(4px); }

.central-cta { display: flex; justify-content: center; margin-top: var(--space-lg); }
.central-cta--column { flex-direction: column; align-items: center; gap: var(--space-md); }

@keyframes pulseWhatsapp {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =================================================================
   DOBRA 1 — HERO
   ================================================================= */
.hero {
  background: var(--color-bg-dark);
  color: var(--color-text-dark);
  position: relative;
  overflow: hidden;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
/* Imagem de fundo temática (balança + caduceu), escurecida por overlay.
   z-index 0: camada base, atrás de tudo. */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    /* overlay que escurece e funde a imagem ao oliva (mais forte à esquerda p/ o texto) */
    linear-gradient(90deg, var(--color-bg-dark) 0%, rgba(45,61,30,0.92) 30%, rgba(45,61,30,0.74) 60%, rgba(45,61,30,0.62) 100%),
    linear-gradient(0deg, var(--color-bg-dark) 0%, transparent 28%),
    /* a imagem em si */
    url("assets/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover, cover, cover;
  background-position: center, center, right center;
}
/* Textura pontilhada sutil por cima da imagem */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, var(--color-accent) 1px, transparent 0);
  background-size: 36px 36px;
  opacity: 0.05;
  pointer-events: none;
  z-index: 2;
}

.hero .container { position: relative; z-index: 3; width: 100%; padding-top: var(--space-lg); padding-bottom: var(--space-lg); }

.hero-logo { margin-bottom: var(--space-lg); }
.hero-logo img { height: 60px; width: auto; display: inline-block; }

/* Grid 2 colunas: bloco principal (logo+texto) / foto (modelo Wilson) */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.hero-main { min-width: 0; }
.hero-text-content { max-width: 100%; }

/* Visual: arch-frame com a foto da advogada + badge de autoridade */
.hero-visual { position: relative; }
.arch-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 300px 300px 10px 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
  border: 1px solid var(--border-dark);
  max-width: 440px;
  margin: 0 auto;
}
.arch-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
}

.floating-badge {
  position: absolute;
  bottom: 24px; left: -12px;
  background: var(--color-bg);
  color: var(--color-text);
  border-top: 3px solid var(--color-accent);
  border-radius: 8px;
  padding: 0.9rem 1.2rem;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
  max-width: 200px;
}
.floating-badge .badge-strong {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-accent-dark);
  display: flex; align-items: center; gap: 8px;
}
.floating-badge .badge-small {
  font-size: 0.82rem;
  color: var(--color-text-light);
  line-height: 1.35;
  margin-top: 4px;
}

/* Headline em dois tamanhos: pergunta dramática + promessa serena */
.hero h1.headline {
  margin-bottom: var(--space-md);
  font-weight: 500;
}
.headline-lead {
  display: block;
  font-size: clamp(2.6rem, 5.2vw, 4.6rem);
  line-height: 1.04;
  color: var(--color-text-dark);
  letter-spacing: -0.5px;
}
.headline-lead em { color: var(--color-accent); font-style: italic; }
.headline-promise {
  display: block;
  margin-top: var(--space-sm);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.2;
  font-weight: 400;
  font-style: italic;
  color: var(--color-text-dark);
  opacity: 0.92;
}

.hero .subheadline {
  font-size: 1.15rem;
  color: var(--color-text-dark);
  opacity: 0.82;
  max-width: 46ch;
  margin-bottom: var(--space-lg);
  text-align: justify;
}

.hero-cta { display: block; }
.hero-microcopy {
  margin-top: var(--space-md);
  font-size: 0.9rem;
  color: var(--color-text-dark);
  opacity: 0.72;
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 42ch;
}
.hero-microcopy i { color: var(--color-accent); flex-shrink: 0; }

/* =================================================================
   DOBRA 2 — ATUAÇÃO (bg-mid)
   ================================================================= */
.atuacao-intro {
  max-width: 70ch;
  margin: 0 auto var(--space-lg);
  text-align: justify;
  font-size: 1.15rem;
  opacity: 0.92;
}
.eixos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.eixo-card {
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: var(--space-md);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              background 0.4s cubic-bezier(0.16,1,0.3,1);
}
.eixo-card:hover { transform: translateY(-5px); background: var(--surface-dark-hover); }
.eixo-icon {
  width: 56px; height: 56px;
  display: grid; place-items: center;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border-radius: 8px;
  font-size: 1.6rem;
  margin-bottom: var(--space-sm);
}
.eixo-card h3 {
  font-size: 1.7rem;
  color: var(--color-text-dark);
  margin-bottom: var(--space-xs);
}
.eixo-card p { color: var(--color-text-dark); opacity: 0.88; text-align: justify; }

/* =================================================================
   DOBRA 3 — SERVIÇOS (bg light)
   ================================================================= */
.servicos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}
.servico-card {
  background: var(--color-white);
  border: 1px solid rgba(42,47,35,0.07);
  border-radius: 8px;
  padding: var(--space-md);
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.4s cubic-bezier(0.16,1,0.3,1);
}
.servico-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.07);
}
.servico-icon {
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--color-bg-alt);
  color: var(--color-accent-dark);
  border-radius: 8px;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.servico-card:hover .servico-icon { transform: scale(1.1); }
.servico-card h3 { font-size: 1.35rem; margin-bottom: 0.35rem; font-weight: 600; }
.servico-card p { font-size: 0.97rem; color: var(--color-text-light); text-align: justify; }

/* =================================================================
   DOBRA 4 — SOBRE (bg light-alt)
   ================================================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}
.about-visual { position: relative; }
.about-frame {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 300px 300px 10px 10px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.10);
  max-width: 460px;
  margin: 0 auto;
}
.about-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 8%; }
.about-logo-deco {
  position: absolute;
  top: -28px; right: -10px;
  width: 110px; height: auto;
  opacity: 0.9;
  z-index: 2;
}

.about-text h2 { margin-bottom: var(--space-md); }
.about-text p { color: var(--color-text-light); margin-bottom: var(--space-md); font-size: 1.08rem; text-align: justify; }

.selos-list { display: grid; gap: 0.75rem; margin-bottom: var(--space-md); }
.selo-item {
  display: flex; align-items: center; gap: 12px;
  font-weight: 500;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.selo-item:hover { transform: translateX(8px); }
.selo-item i {
  color: var(--color-accent-dark);
  font-size: 1.3rem;
  flex-shrink: 0;
}
.oab-tag {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: var(--color-text-light);
  border-left: 3px solid var(--color-accent);
  padding-left: 12px;
  margin-bottom: var(--space-md);
}

/* =================================================================
   DOBRA 5 — DEPOIMENTOS (bg-dark, marquee)
   ================================================================= */
.marquee-container {
  position: relative;
  overflow: hidden;
  margin-top: var(--space-lg);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track { display: flex; width: max-content; }
.marquee-content {
  display: flex;
  gap: 24px;
  padding-right: 24px;
  animation: slideMarquee 36s linear infinite;
}
.marquee-container:hover .marquee-content { animation-play-state: paused; }

@keyframes slideMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - 24px)); }
}

.feedback-card {
  flex: 0 0 360px;
  max-width: 360px;
  background: var(--surface-dark);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  padding: var(--space-md);
}
.stars { color: var(--color-accent); font-size: 1.05rem; margin-bottom: var(--space-sm); display: flex; gap: 3px; }
.feedback-text { color: var(--color-text-dark); opacity: 0.9; font-size: 1.02rem; margin-bottom: var(--space-md); font-style: italic; }
.feedback-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--color-accent);
  color: var(--color-bg-dark);
  font-weight: 600;
  font-family: var(--font-body);
}
.feedback-author span { color: var(--color-text-dark); font-weight: 500; }

/* =================================================================
   DOBRA 6 — FAQ (bg light, accordion)
   ================================================================= */
.faq-wrapper {
  max-width: 800px;
  margin: var(--space-md) auto 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
/* Cada pergunta é um card escuro (oliva), destacando do fundo claro da seção */
.faq-item {
  background: var(--color-bg-dark);
  border: 1px solid rgba(240,236,226,0.12);
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.10);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.faq-item:hover { border-color: rgba(201,169,78,0.55); box-shadow: 0 12px 28px rgba(0,0,0,0.16); }
.faq-item.active { border-color: var(--color-accent); box-shadow: 0 16px 36px rgba(0,0,0,0.18); }

.faq-trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  padding: 1.35rem 1.5rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.faq-question {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--color-text-dark);     /* branco por padrão */
  transition: color 0.3s ease;
}
/* Ao abrir, a pergunta inverte para dourado */
.faq-item.active .faq-question { color: var(--color-accent); }
.faq-icon {
  flex-shrink: 0;
  font-size: 1.4rem;
  color: var(--color-accent);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-trigger:hover .faq-icon { transform: rotate(-90deg); }
.faq-item.active .faq-icon { transform: rotate(-180deg); }

.faq-answer-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.active .faq-answer-wrapper { grid-template-rows: 1fr; }
.faq-answer-inner { overflow: hidden; }
.faq-answer-inner p {
  padding: 0 1.5rem 1.4rem;
  color: var(--color-text-dark);
  opacity: 0.85;
  font-size: 1.02rem;
  text-align: justify;
}

/* =================================================================
   DOBRA 7 — FECHAMENTO (bg-dark)
   ================================================================= */
.fechamento { text-align: center; }
.fechamento .container { max-width: 760px; }
.fechamento-logo img { height: 52px; width: auto; margin: 0 auto var(--space-lg); }
.fechamento h2 {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
}
.fechamento p {
  color: var(--color-text-dark);
  opacity: 0.85;
  font-size: 1.15rem;
  max-width: 56ch;
  margin: 0 auto var(--space-lg);
  text-align: justify;
}

/* Rodapé */
.site-footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--border-dark);
  padding: var(--space-lg) 0;
  text-align: center;
}
.footer-logo { height: 44px; width: auto; margin: 0 auto var(--space-md); opacity: 0.9; }

.footer-address {
  font-style: normal;
  color: var(--color-text-dark);
  opacity: 0.75;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}
.footer-social a {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border: 1px solid var(--border-dark);
  border-radius: 50%;
  color: var(--color-text-dark);
  font-size: 1.3rem;
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.footer-social a:hover {
  background: var(--color-accent);
  color: var(--color-bg-dark);
  border-color: var(--color-accent);
  transform: translateY(-3px);
}

.footer-legal {
  color: var(--color-text-dark);
  opacity: 0.5;
  font-size: 0.8rem;
  max-width: 70ch;
  margin: 0 auto;
  line-height: 1.7;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-dark);
}

/* =================================================================
   FAB WHATSAPP
   ================================================================= */
.fab-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: var(--color-white);
  display: grid; place-items: center;
  font-size: 1.9rem;
  z-index: 9999;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  animation: pulseWhatsappSmall 2.4s infinite;
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1), background 0.3s ease;
}
.fab-whatsapp:hover { transform: scale(1.1); background: var(--color-whatsapp-dark); animation: none; }

@keyframes pulseWhatsappSmall {
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.55); }
  70%  { box-shadow: 0 0 0 14px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* =================================================================
   ANIMAÇÕES — alvos da timeline GSAP do Hero
   ================================================================= */
.fade-in-up { opacity: 0; transform: translateY(24px); }
.arch-frame.image-reveal { clip-path: inset(0 0 100% 0); }
.badge-pop { opacity: 0; transform: scale(0.85); }

/* Quando GSAP não carrega (no-js / fallback): garante visibilidade */
.no-gsap .fade-in-up { opacity: 1; transform: none; }
.no-gsap .arch-frame.image-reveal { clip-path: none; }
.no-gsap .badge-pop { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVIDADE
   ================================================================= */
@media (min-width: 768px) {
  .eixos-grid    { grid-template-columns: 1fr 1fr; }
  .servicos-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 992px) {
  .hero-grid  { grid-template-columns: 1.4fr 1fr; gap: var(--space-lg); align-items: center; }
  .about-grid { grid-template-columns: 5fr 7fr; }
}

@media (min-width: 1024px) {
  .servicos-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Mobile — compressão e hero empilhado */
@media (max-width: 767px) {
  .btn-primary { width: 100%; justify-content: center; }
  .central-cta { width: 100%; }

  /* Hero mobile (modelo Wilson): logo+texto+CTA ocupam a 1ª tela inteira (.hero-main),
     a foto em arch-frame só aparece ao rolar (abaixo da dobra). */
  .hero { min-height: auto; display: block; padding: 0; }
  .hero .container { padding-top: 0; padding-bottom: var(--space-lg); }

  /* Mobile: sem foto de fundo no hero — apenas o oliva sólido */
  .hero::after { display: none; }

  /* Bloco principal preenche a viewport: logo no topo, texto centralizado no resto */
  .hero-main {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    padding: var(--space-md) 0;
  }
  .hero-logo { margin: 0 0 var(--space-md); text-align: center; flex-shrink: 0; }
  .hero-logo img { height: 52px; }

  /* Texto ocupa o espaço restante e centraliza verticalmente */
  .hero-text-content {
    max-width: 100%;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .headline-lead { font-size: clamp(2.4rem, 10vw, 3.3rem); line-height: 1.04; }
  .headline-promise { font-size: clamp(1.2rem, 5vw, 1.6rem); }
  .hero .subheadline { font-size: 1.05rem; margin-bottom: var(--space-md); }
  .hero-cta { margin-top: var(--space-sm); }

  /* Foto logo após a 1ª tela (sem vão extra) */
  .hero-visual { margin-top: 0; padding-bottom: var(--space-md); }
  .arch-frame { max-width: 340px; }
  .floating-badge { left: 4px; bottom: 16px; }

  /* Dobra Sobre: foto menor e título "Andrêssa Taíula" numa linha só */
  .about-frame { max-width: 280px; }
  .about-logo-deco { width: 72px; top: -16px; right: 8px; }
  .about-text .section-title { font-size: clamp(1.9rem, 7vw, 2.4rem); }
  .about-text .section-title em { white-space: nowrap; }

  .feedback-card { flex-basis: 280px; max-width: 280px; }
  .fab-whatsapp { width: 54px; height: 54px; font-size: 1.7rem; bottom: 16px; right: 16px; }
}

/* Acessibilidade: respeita prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .fade-in-up { opacity: 1; transform: none; }
}
