/* =========================================================
   Amanda Freitas Oliveira Poças - Avaliação Neuropsicológica
   CRP 06/140339

   PALETA
   O site é construído sobre uma escala de VERDE PASTEL.
   O VERMELHO (#B13536, herdado do site atual da Amanda) ficou
   reservado para os ícones e destaques pontuais.

   CUIDADO AO MEXER NAS CORES:
   o vermelho #B13536 e o verde escuro #4C6839 têm luminância
   quase igual (contraste 1,02:1). Vermelho sobre verde escuro
   fica ilegível. Por isso, dentro das seções .section--deep e
   .band--deep os destaques usam --red-pale, não --red.
   ========================================================= */

:root{
  /* ---- escala de verde: a base do site ---- */
  --green-050: #F5F9F0;   /* quase branco */
  --green-100: #EBF2E2;   /* pastel muito claro - fundos suaves */
  --green-200: #DCE8CE;   /* pastel claro - faixas e seções */
  --green-300: #C6D8B2;   /* pastel médio */
  --green-400: #A8C08F;   /* sage claro */
  --green-500: #8AA772;   /* sage - bordas e molduras */
  --green-600: #6B8A55;   /* verde médio */
  --green-700: #4C6839;   /* verde profundo - seções escuras */
  --green-800: #354A28;   /* verde escuro */
  --green-900: #24331B;   /* verde quase preto - rodapé e textos */

  /* ---- vermelho: só destaques e ícones ---- */
  --red:       #B13536;   /* ícones sobre fundo claro */
  --red-deep:  #8D2627;   /* fim dos gradientes dos ícones */
  --red-pale:  #F0BDBD;   /* destaques sobre verde escuro */

  /* ---- neutros ---- */
  --white:     #FFFFFF;
  --ink:       #24331B;   /* títulos */
  --ink-2:     #2F3A28;   /* texto corrido */
  --ink-3:     #333B2E;   /* corpo do site */
  --line:      #DDE6D2;   /* bordas de cartão */

  /* ---- WhatsApp (verde oficial da marca, não mexer) ---- */
  --wpp:       #08A903;
  --wpp-hover: #067A02;
  --wpp-float: #46C254;

  --shadow-sm: 0 2px 10px rgba(36,51,27,.07);
  --shadow:    0 18px 50px -22px rgba(36,51,27,.38);
  --shadow-lg: 0 40px 80px -30px rgba(36,51,27,.45);

  --font-m: 'Montserrat', sans-serif;
  --font-p: 'Poppins', sans-serif;
  --font-s: 'Parisienne', cursive;   /* assinatura, como no site atual */

  --maxw: 1139px;
  --ease: cubic-bezier(.2,.7,.2,1);
}

*,*::before,*::after{ box-sizing:border-box; }

html{ scroll-behavior:smooth; }

body{
  margin:0;
  font-family:var(--font-m);
  font-weight:400;
  color:var(--ink-3);
  background:var(--white);
  line-height:1.6;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

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

h1,h2,h3{ margin:0; line-height:1.25; }
p{ margin:0 0 1em; }
ul{ margin:0; padding:0; list-style:none; }

/* =========================================================
   ANIMAÇÕES
   ========================================================= */
.js .reveal{
  opacity:0;
  transform:translateY(26px);
  transition:opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in{ opacity:1; transform:none; }
.reveal.d1{ transition-delay:.08s; }
.reveal.d2{ transition-delay:.16s; }
.reveal.d3{ transition-delay:.24s; }
.reveal.d4{ transition-delay:.32s; }

@keyframes heroUp{ from{ opacity:0; transform:translateY(24px); } to{ opacity:1; transform:none; } }
@keyframes heroZoom{ from{ opacity:0; transform:scale(.94); } to{ opacity:1; transform:none; } }
@keyframes ctaPulse{
  0%,100%{ box-shadow:0 12px 28px -12px rgba(36,51,27,.45), 0 0 0 0 rgba(8,169,3,.45); }
  50%    { box-shadow:0 14px 32px -12px rgba(36,51,27,.5),  0 0 0 14px rgba(8,169,3,0); }
}
@keyframes floatPulse{
  0%,100%{ box-shadow:0 6px 20px rgba(36,51,27,.3), 0 0 0 0 rgba(70,194,84,.55); }
  50%    { box-shadow:0 6px 20px rgba(36,51,27,.3), 0 0 0 16px rgba(70,194,84,0); }
}

.js .anim-up  { animation:heroUp .9s var(--ease) both; }
.js .anim-zoom{ animation:heroZoom 1s var(--ease) both; }
.a1{ animation-delay:.10s; }
.a2{ animation-delay:.20s; }
.a3{ animation-delay:.30s; }

@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; }
  .reveal{ opacity:1; transform:none; }
}

/* =========================================================
   UTILITÁRIOS
   ========================================================= */
.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 20px; }
.container--narrow{ max-width:900px; }

.section{ padding:78px 0; position:relative; overflow:hidden; }

/* verde profundo: seções com texto branco */
.section--deep{ background:linear-gradient(150deg, var(--green-700) 0%, var(--green-800) 100%); }
/* verde pastel: seções com texto escuro */
.section--pastel{ background:linear-gradient(150deg, var(--green-200) 0%, var(--green-300) 100%); }
/* verde quase branco */
.section--soft{ background:linear-gradient(120deg, var(--green-100) 0%, var(--green-050) 55%, var(--white) 100%); }

.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:start; }
.grid-bio{ display:grid; grid-template-columns:0.78fr 1.22fr; gap:48px; align-items:start; }
.grid-2--middle{ align-items:center; }

.col{ display:flex; flex-direction:column; justify-content:center; }
.col--center{ align-items:center; }

.center{ text-align:center; }

.hide-mobile{ display:block; }
.show-mobile{ display:none !important; }
.only-mobile-inline{ display:none; }

/* destaque dentro de frase, sobre fundo claro */
.accent{ color:var(--red); }
.link{ color:inherit; text-decoration:underline; text-underline-offset:3px; }

/* brilho difuso das seções verde-escuras */
.glow{
  position:absolute;
  width:46%; height:120%;
  top:-20%; left:-12%;
  border-radius:50%;
  background:radial-gradient(circle, rgba(198,216,178,.24) 0%, rgba(198,216,178,0) 64%);
  pointer-events:none;
}
.glow--right{ left:auto; right:-12%; }

/* -----------------------------------------------------------
   ONDA no topo das seções coloridas.
   É a assinatura visual do site atual da Amanda. Como é um
   clareamento da própria seção, não depende da cor da vizinha.
   ----------------------------------------------------------- */
.section--deep::before,
.band--deep::before,
.section--pastel::before{
  content:'';
  position:absolute;
  top:0; left:-6%;
  width:112%; height:78px;
  background:rgba(255,255,255,.12);
  border-radius:0 0 55% 55% / 0 0 100% 100%;
  pointer-events:none;
  z-index:0;
}
/* no pastel a onda é um escurecimento, senão não apareceria */
.section--pastel::before{ background:rgba(53,74,40,.06); }

.section--deep > *,
.band--deep > *,
.section--pastel > *{ position:relative; z-index:1; }

/* =========================================================
   TEXTOS
   ========================================================= */
.text{
  font-family:var(--font-m);
  font-weight:400;
  font-size:16px;
  color:var(--ink-2);
  line-height:1.75;
}
.text--justify{ text-align:justify; }
.text--white{ color:rgba(255,255,255,.92); }
.text--sm{ font-size:16px; line-height:1.65; color:var(--ink-2); }
.text--sm p{ text-align:justify; }

.h-dark,
.h-black{
  font-family:var(--font-m);
  font-weight:600;
  font-size:30px;
  color:var(--ink);
  margin-bottom:18px;
}
.h-dark::after,
.h-black::after{
  content:'';
  display:block;
  width:64px; height:3px;
  margin-top:15px;
  border-radius:3px;
  background:linear-gradient(90deg, var(--red), var(--green-500));
}
.h-dark.center::after,
.h-black.center::after{ margin-left:auto; margin-right:auto; }

.h-name{
  font-family:var(--font-m);
  font-weight:700;
  font-size:25px;
  line-height:1.3;
  color:var(--white);
  margin-bottom:16px;
}
.h-name--dark{ color:var(--ink); }
.h-name::after{
  content:'';
  display:block;
  width:56px; height:3px;
  margin-top:14px;
  border-radius:3px;
  background:linear-gradient(90deg, var(--red-pale), rgba(255,255,255,.7));
}
.h-name--dark::after{ background:linear-gradient(90deg, var(--red), var(--green-600)); }
.h-name.center::after{ margin-left:auto; margin-right:auto; }

/* =========================================================
   BOTÕES
   ========================================================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  align-self:flex-start;
  padding:14px 30px;
  border-radius:50px;
  font-family:var(--font-m);
  font-size:15px;
  font-weight:600;
  letter-spacing:.2px;
  text-decoration:none;
  transition:background .3s ease, transform .3s var(--ease), box-shadow .3s var(--ease);
}
/* sombra neutra escura (e não esverdeada): sobre os fundos
   pastel é ela que recorta o botão do fundo */
.btn--wpp{
  background:var(--wpp);
  color:var(--white);
  box-shadow:0 12px 28px -12px rgba(36,51,27,.55);
}
.btn--wpp:hover{
  background:var(--wpp-hover);
  transform:translateY(-4px);
  box-shadow:0 18px 34px -12px rgba(36,51,27,.65);
}
.btn--pulse{ animation:ctaPulse 2.8s ease-in-out infinite; }
.btn--pulse:hover{ animation:none; }
.btn--mt{ margin-top:20px; }

/* ---------- botão flutuante ---------- */
.wpp-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:9999;
  width:60px;
  height:60px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--wpp-float);
  color:var(--white);
  font-size:30px;
  text-decoration:none;
  animation:floatPulse 2.6s ease-in-out infinite;
  transition:transform .3s var(--ease), background .3s ease, color .3s ease;
}
.wpp-float:hover{ background:#D3FFD8; color:var(--wpp-float); transform:scale(1.1) rotate(-6deg); }

/* =========================================================
   MOLDURAS DE IMAGEM
   ========================================================= */
.frame{ position:relative; display:block; max-width:380px; width:100%; }
.frame img{
  position:relative;
  z-index:1;
  width:100%;
  border-radius:18px 18px 120px 18px;
  box-shadow:var(--shadow);
}
.frame::before{
  content:'';
  position:absolute;
  top:18px; left:18px; right:-18px; bottom:-18px;
  border:2px solid var(--green-500);
  border-radius:18px 18px 120px 18px;
  z-index:0;
  transition:transform .5s var(--ease);
}
.frame:hover::before{ transform:translate(-6px,-6px); }

.frame--bl img,
.frame--bl::before{ border-radius:18px 18px 18px 120px; }
.frame--bl::before{ left:-18px; right:18px; }

.frame--tl img,
.frame--tl::before{ border-radius:120px 18px 18px 18px; }
.frame--tl::before{ top:-18px; bottom:18px; left:-18px; right:18px; }

.frame--round img,
.frame--round::before{ border-radius:30px; }

.frame--light::before{ border-color:rgba(255,255,255,.6); }
.frame--dark::before{ border-color:rgba(53,74,40,.32); }

/* =========================================================
   ÍCONE QUADRADO  -  destaque vermelho
   ========================================================= */
.icon-square{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  align-self:flex-start;
  width:54px; height:54px;
  border-radius:16px 16px 16px 4px;
  background:linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color:var(--white);
  font-size:23px;
  margin-bottom:18px;
  box-shadow:0 12px 26px -12px rgba(141,38,39,.85);
}
.icon-square--dark{ box-shadow:0 14px 28px -12px rgba(36,51,27,.6); }

/* =========================================================
   LISTAS COM ÍCONE
   ========================================================= */
.icon-list li{
  display:flex;
  align-items:flex-start;
  gap:12px;
  font-family:var(--font-m);
  font-weight:400;
  font-size:16px;
  color:var(--ink-2);
}
.icon-list li + li{ margin-top:8px; }
.icon-list i{ color:var(--red); flex:none; line-height:1.6; }

.icon-list--hero{ margin:14px 0 26px; }
.icon-list--hero li{ color:var(--ink-2); font-size:17px; font-weight:500; align-items:center; }
.icon-list--hero i{
  color:var(--red);
  font-size:14px;
  width:32px; height:32px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.75);
}

.icon-list--contato li{ align-items:center; font-family:var(--font-p); color:var(--ink-2); }
.icon-list--contato li + li{ margin-top:14px; }
.icon-list--contato i{
  color:var(--red);
  font-size:19px;
  width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  border-radius:14px;
  background:rgba(255,255,255,.72);
  flex:none;
}
.icon-list--contato a{ display:flex; align-items:center; gap:12px; text-decoration:none; transition:opacity .3s ease; }
.icon-list--contato a:hover{ opacity:.75; }

/* =========================================================
   HERO  -  verde pastel com texto escuro
   ========================================================= */
.hero{
  position:relative;
  background:linear-gradient(140deg, var(--green-100) 0%, var(--green-300) 100%);
  min-height:628px;
  display:flex;
  align-items:center;
  overflow:hidden;
}
.hero__glow{ position:absolute; border-radius:50%; pointer-events:none; }
.hero__glow--a{
  width:54%; height:64%;
  top:-16%; right:-10%;
  background:radial-gradient(circle, rgba(255,255,255,.65) 0%, rgba(255,255,255,0) 65%);
}
.hero__glow--b{
  width:44%; height:58%;
  bottom:-18%; left:-12%;
  background:radial-gradient(circle, rgba(138,167,114,.30) 0%, rgba(138,167,114,0) 66%);
}

.hero__inner{
  position:relative;
  z-index:1;
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:64px 20px;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:50px;
  align-items:center;
}
.hero__col{ display:flex; flex-direction:column; justify-content:center; }

.hero__crp{
  font-family:var(--font-m);
  font-weight:600;
  font-size:15px;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:var(--red);
  margin:0 0 12px;
}
.hero__title{
  font-family:var(--font-m);
  font-weight:700;
  font-size:40px;
  line-height:1.2;
  color:var(--ink);
  margin-bottom:14px;
}
.hero__lead{
  font-family:var(--font-m);
  font-weight:400;
  font-size:18px;
  color:var(--ink-2);
  margin-bottom:0;
}
.hero__col--img .frame{ margin-left:auto; max-width:360px; }

/* =========================================================
   FAIXAS
   ========================================================= */
.band{
  position:relative;
  min-height:157px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:34px 20px;
  text-align:center;
  overflow:hidden;
}
.band--pastel{ background:linear-gradient(120deg, var(--green-300) 0%, var(--green-200) 50%, var(--green-300) 100%); }
.band--deep{ background:linear-gradient(120deg, var(--green-700) 0%, var(--green-800) 100%); }

.band__icon{
  width:52px; height:52px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:var(--white);
  color:var(--red);
  font-size:22px;
  box-shadow:var(--shadow-sm);
}
.band__title{
  font-family:var(--font-p);
  font-weight:700;
  font-size:30px;
  line-height:1.35;
  letter-spacing:.5px;
  color:var(--ink);
}
.band__title--lg{
  font-family:var(--font-m);
  font-size:45px;
  line-height:1.15;
}
.band__kicker{
  font-family:var(--font-m);
  font-weight:400;
  font-size:16px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:rgba(36,51,27,.72);
  margin:0;
}
.band__cta{
  font-family:var(--font-m);
  font-weight:600;
  font-size:21px;
  color:var(--white);
  margin:0 0 6px;
  max-width:660px;
}
.band .btn{ align-self:center; }

/* =========================================================
   CHIPS (como posso te ajudar)
   ========================================================= */
.chips{ display:flex; flex-wrap:wrap; gap:10px; }
.chip{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:11px 18px;
  border-radius:50px;
  background:var(--white);
  border:1px solid var(--line);
  font-family:var(--font-m);
  font-weight:500;
  font-size:15px;
  color:var(--ink-2);
  box-shadow:var(--shadow-sm);
  transition:transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.chip:hover{
  transform:translateY(-3px);
  border-color:var(--green-500);
  box-shadow:0 14px 26px -14px rgba(53,74,40,.55);
}
.chip i{ color:var(--red); font-size:14px; }

/* =========================================================
   HABILIDADES INVESTIGADAS
   ========================================================= */
.funcoes__lead{
  font-family:var(--font-m);
  font-weight:600;
  font-size:28px;
  line-height:1.45;
  color:var(--ink);
  text-align:center;
  margin-bottom:40px;
}
.funcoes{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}
.func{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  padding:24px 14px;
  border-radius:18px;
  background:var(--white);
  border:1px solid var(--line);
  font-family:var(--font-m);
  font-weight:600;
  font-size:15px;
  color:var(--ink-2);
  text-align:center;
  box-shadow:var(--shadow-sm);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.func:hover{
  transform:translateY(-6px);
  border-color:var(--green-500);
  box-shadow:var(--shadow);
}
.func__icon{
  width:52px; height:52px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:var(--green-100);
  color:var(--red);
  font-size:20px;
  transition:background .35s ease, color .35s ease;
}
.func:hover .func__icon{
  background:linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color:var(--white);
}

/* =========================================================
   CARTÕES "COMO POSSO TE AJUDAR"
   Mesmo conteúdo dos cartões brancos do site atual da Amanda.
   ========================================================= */
.ajuda{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:20px;
  margin-top:44px;
}
.ajuda-card{
  display:flex;
  flex-direction:column;
  gap:14px;
  padding:28px 22px;
  border-radius:20px;
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.ajuda-card:hover{
  transform:translateY(-7px);
  border-color:var(--red);
  box-shadow:var(--shadow);
}
.ajuda-card__icon{
  width:50px; height:50px;
  display:flex; align-items:center; justify-content:center;
  border-radius:16px 16px 16px 4px;
  background:linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color:var(--white);
  font-size:20px;
  box-shadow:0 12px 24px -12px rgba(141,38,39,.8);
}
.ajuda-card__title{
  font-family:var(--font-p);
  font-weight:600;
  font-size:19px;
  color:var(--red);
  margin:0;
}
.ajuda-card__text{
  font-family:var(--font-p);
  font-weight:400;
  font-size:14.5px;
  line-height:1.75;
  color:#4A5344;
  margin:0;
  /* colunas estreitas: justificado abriria buracos no meio das linhas */
  text-align:left;
}

/* lista "outros acolhimentos" */
.acolhe{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:10px;
  margin-top:34px;
}
.acolhe span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 18px;
  border-radius:50px;
  background:var(--green-100);
  border:1px solid var(--green-200);
  font-family:var(--font-m);
  font-weight:500;
  font-size:14.5px;
  color:var(--green-900);
}
.acolhe i{ font-size:12px; color:var(--red); }

/* =========================================================
   COMO FUNCIONA O MEU TRABALHO  (sobre verde escuro)
   Aqui o destaque NÃO pode ser --red: vermelho e verde escuro
   têm a mesma luminância. Usa-se --red-pale.
   ========================================================= */
.motivo{
  display:flex;
  align-items:flex-start;
  gap:16px;
  padding:20px 22px;
  margin-top:16px;
  border-radius:18px;
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.16);
  transition:background .35s ease, transform .35s var(--ease);
}
.motivo:hover{ background:rgba(255,255,255,.17); transform:translateX(6px); }
.motivo__icon{
  flex:none;
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  border-radius:14px;
  background:rgba(255,255,255,.16);
  border:1px solid rgba(255,255,255,.2);
  color:var(--red-pale);
  font-size:19px;
}
.motivo__title{
  font-family:var(--font-m);
  font-weight:600;
  font-size:17px;
  color:var(--white);
  margin-bottom:7px;
}
.motivo__text{
  font-family:var(--font-m);
  font-weight:400;
  font-size:14.5px;
  line-height:1.65;
  color:rgba(255,255,255,.86);
  text-align:justify;
  margin:0;
}

/* -----------------------------------------------------------
   ASSINATURA
   A Amanda ainda não tem logomarca (informado no briefing).
   Este bloco faz as vezes de marca: o nome dela em manuscrito,
   como aparece no topo do site atual.
   Quando a logomarca existir, basta trocar o bloco no HTML por:
   <img class="logo-mark" src="img/logo.png" alt="Amanda Poças">
   ----------------------------------------------------------- */
.assinatura{
  width:100%;
  max-width:340px;
  padding:44px 30px;
  border-radius:30px;
  text-align:center;
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.22);
  box-shadow:var(--shadow);
}
.assinatura__nome{
  font-family:var(--font-s);
  font-size:44px;
  line-height:1.15;
  color:var(--white);
  margin-bottom:14px;
}
.assinatura__linha{
  display:block;
  width:70px; height:2px;
  margin:0 auto 14px;
  border-radius:2px;
  background:var(--red-pale);
}
.assinatura__cargo{
  font-family:var(--font-m);
  font-weight:600;
  font-size:14px;
  letter-spacing:1.4px;
  text-transform:uppercase;
  color:var(--red-pale);
  margin-bottom:6px;
}
.assinatura__crp{
  font-family:var(--font-m);
  font-weight:400;
  font-size:13.5px;
  color:rgba(255,255,255,.8);
  margin:0;
}

.logo-mark{
  width:100%;
  max-width:340px;
  border-radius:30px;
  box-shadow:var(--shadow);
}

/* =========================================================
   ICON BOX (como funciona o atendimento)
   ========================================================= */
.atendimento{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
  margin-top:44px;
}
.icon-box{
  display:flex;
  flex-direction:column;
  gap:16px;
  padding:30px 26px;
  border-radius:20px;
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.icon-box:hover{ transform:translateY(-7px); box-shadow:var(--shadow); }
.icon-box__icon{
  flex:none;
  width:56px; height:56px;
  display:flex; align-items:center; justify-content:center;
  border-radius:18px 18px 18px 5px;
  background:linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color:var(--white);
  font-size:22px;
  box-shadow:0 12px 24px -12px rgba(141,38,39,.85);
}
.icon-box__title{
  font-family:var(--font-p);
  font-weight:600;
  font-size:18px;
  line-height:1.4;
  color:var(--ink);
  margin-bottom:8px;
}
.icon-box__desc{
  font-family:var(--font-p);
  font-weight:400;
  font-size:15px;
  line-height:1.7;
  color:#4A5344;
  margin:0;
}

/* =========================================================
   ETAPAS
   ========================================================= */
.etapas__title{
  font-family:var(--font-m);
  font-weight:600;
  font-size:31px;
  color:var(--ink);
  text-align:center;
  margin-bottom:54px;
}
.etapas{
  display:grid;
  grid-template-columns:repeat(5, 1fr);
  gap:44px 18px;
}
.etapa{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:12px;
  padding:42px 16px 26px;
  border-radius:18px;
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.etapa:hover{ transform:translateY(-7px); border-color:var(--green-500); box-shadow:var(--shadow); }
.etapa__num{
  position:absolute;
  top:-24px; left:50%;
  transform:translateX(-50%);
  width:50px; height:50px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:linear-gradient(135deg, var(--red) 0%, var(--red-deep) 100%);
  color:var(--white);
  font-family:var(--font-m);
  font-weight:700;
  font-size:17px;
  border:4px solid var(--white);
  box-shadow:0 10px 22px -10px rgba(36,51,27,.7);
}
.etapa__icon{
  width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  border-radius:14px;
  background:var(--green-100);
  color:var(--red);
  font-size:18px;
}
.etapa__name{
  font-family:var(--font-p);
  font-weight:500;
  font-size:16px;
  line-height:1.45;
  color:var(--ink);
  text-align:center;
}

/* =========================================================
   CONTATO / MAPA
   ========================================================= */
.map{
  width:100%;
  border-radius:18px 18px 90px 18px;
  overflow:hidden;
  border:3px solid var(--white);
  box-shadow:var(--shadow);
}
.map iframe{ width:100%; height:350px; border:0; display:block; }

/* =========================================================
   TOGGLE / FAQ  (sobre verde escuro)
   ========================================================= */
.toggle{
  margin-top:30px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  border-radius:20px;
  padding:10px 18px;
  backdrop-filter:blur(2px);
}
.toggle__item + .toggle__item{ border-top:1px solid rgba(255,255,255,.2); }

.toggle__title{
  display:flex;
  align-items:flex-start;
  gap:12px;
  width:100%;
  padding:18px 4px;
  border:0;
  background:transparent;
  color:var(--white);
  font-family:var(--font-p);
  font-weight:500;
  font-size:17px;
  line-height:1.5;
  text-align:left;
  cursor:pointer;
  transition:color .3s ease;
}
.toggle__title:hover{ color:var(--green-200); }
.toggle__title i{
  flex:none;
  width:20px;
  text-align:center;
  color:var(--red-pale);
  line-height:1.5;
  transition:transform .3s var(--ease);
}

.toggle__content{
  display:none;
  padding:0 4px 18px 32px;
  font-family:var(--font-p);
  font-weight:400;
  font-size:15.5px;
  line-height:1.75;
  color:rgba(255,255,255,.88);
}
.toggle__content p{ margin:0; }
.toggle__item.is-open .toggle__content{ display:block; }

/* =========================================================
   CARROSSEL
   ========================================================= */
.carousel{ position:relative; padding:0 40px; }
.carousel__track{
  display:flex;
  gap:10px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
}
.carousel__track::-webkit-scrollbar{ display:none; }
.carousel__slide{ flex:0 0 100%; scroll-snap-align:start; }
.carousel__slide img{ width:100%; border-radius:18px; box-shadow:var(--shadow); }
.carousel__arrow{
  position:absolute; top:50%; transform:translateY(-50%);
  width:34px; height:34px;
  display:flex; align-items:center; justify-content:center;
  border:0; background:transparent;
  color:#8D8D8D; font-size:24px; cursor:pointer;
}
.carousel__arrow--prev{ left:0; }
.carousel__arrow--next{ right:0; }

/* =========================================================
   DEPOIMENTOS DO GOOGLE
   Estilos prontos. A seção está comentada no HTML porque os
   textos das avaliações não vieram no briefing — basta
   descomentar depois de colar os depoimentos reais.
   ========================================================= */
.stars{
  display:flex;
  justify-content:center;
  gap:7px;
  margin-bottom:18px;
  color:#FBBC04;   /* amarelo do Google, não é cor da marca */
  font-size:22px;
}
.reviews{
  position:relative;
  margin-top:40px;
  padding:0 46px;
}
.reviews .carousel__track{
  display:flex;
  gap:20px;
  padding:8px 4px 14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  scrollbar-width:none;
}
.reviews .review{
  flex:0 0 calc((100% - 40px) / 3);
  scroll-snap-align:start;
  display:flex;
  flex-direction:column;
  padding:24px 22px;
  border-radius:18px;
  background:var(--white);
  border:1px solid var(--line);
  box-shadow:var(--shadow-sm);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}
.review:hover{
  transform:translateY(-6px);
  border-color:var(--green-500);
  box-shadow:var(--shadow);
}
.review__head{ display:flex; align-items:center; gap:12px; margin-bottom:12px; }
.review__avatar{
  flex:none;
  width:44px; height:44px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  color:var(--white);
  font-family:var(--font-m);
  font-weight:600;
  font-size:18px;
  text-transform:uppercase;
}
.review__id{ display:flex; flex-direction:column; min-width:0; flex:1; }
.review__name{ font-family:var(--font-m); font-weight:600; font-size:15px; color:var(--ink); line-height:1.3; }
.review__meta{ font-family:var(--font-m); font-weight:400; font-size:12.5px; color:#8A8A8A; }
.review__g{ flex:none; font-size:19px; color:#4285F4; }
.review__stars{ display:flex; gap:3px; margin-bottom:12px; color:#FBBC04; font-size:14px; }
.review__text{ font-family:var(--font-m); font-weight:400; font-size:14.5px; line-height:1.75; color:#4A5344; margin:0; }
.reviews .carousel__arrow{ color:var(--green-700); font-size:26px; transition:transform .3s var(--ease), color .3s ease; }
.reviews .carousel__arrow:hover{ color:var(--red); transform:translateY(-50%) scale(1.2); }

/* =========================================================
   RODAPÉ
   ========================================================= */
.footer{ background:linear-gradient(120deg, var(--green-800) 0%, var(--green-900) 100%); padding:20px; }
.footer__list{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:8px 22px;
}
.footer__list li{
  display:flex;
  align-items:center;
  gap:7px;
  font-family:var(--font-p);
  font-weight:400;
  font-size:12.5px;
  color:rgba(255,255,255,.92);
}
.footer__list i{ font-size:15px; color:var(--red-pale); }

/* =========================================================
   TABLET
   ========================================================= */
@media (max-width:1024px){
  .section{ padding:58px 0; }

  .hero{ min-height:0; }
  .hero__inner{ grid-template-columns:1fr; gap:34px; padding:52px 20px; }
  /* no celular a foto da profissional vem antes dos textos */
  .hero__col--img{ order:-1; }
  .hero__col--img .frame{ margin:0 auto; }
  .hero__title{ font-size:32px; }

  .band__title{ font-size:24px; }
  .band__title--lg{ font-size:34px; }

  .grid-bio{ grid-template-columns:1fr; }
  .grid-bio .col--center{ margin-bottom:8px; }

  .funcoes{ grid-template-columns:repeat(3, 1fr); }
  .funcoes__lead{ font-size:24px; }

  .ajuda{ grid-template-columns:repeat(2, 1fr); }
  .atendimento{ grid-template-columns:1fr; }
  .etapas{ grid-template-columns:repeat(3, 1fr); }

  .reviews .review{ flex-basis:calc((100% - 20px) / 2); }
}

/* =========================================================
   MOBILE
   ========================================================= */
@media (max-width:767px){
  .section{ padding:46px 0; }

  .hide-mobile{ display:none !important; }
  .show-mobile{ display:block !important; }
  .only-mobile-inline{ display:inline; }

  .grid-2,
  .grid-bio{ grid-template-columns:1fr; gap:30px; }

  .col{ align-items:center; }
  .col > *{ width:100%; }
  .col .frame{ margin:0 auto; max-width:290px; }

  .frame::before{ top:12px; left:12px; right:-12px; bottom:-12px; }
  .frame--bl::before{ left:-12px; right:12px; }
  .frame--tl::before{ top:-12px; bottom:12px; left:-12px; right:12px; }

  .icon-square{ align-self:center; width:54px; flex:none; }

  .hero__inner{ padding:42px 20px; }
  .hero__crp{ font-size:13px; text-align:center; }
  .hero__title{ font-size:27px; text-align:center; }
  .hero__lead{ font-size:15px; text-align:center; }
  .icon-list--hero li{ font-size:15px; }

  .h-dark, .h-black{ font-size:25px; text-align:center; }
  .h-dark::after, .h-black::after{ margin-left:auto; margin-right:auto; }
  .h-name{ font-size:21px; line-height:1.4; text-align:center; }
  .h-name::after{ margin-left:auto; margin-right:auto; }

  .text{ text-align:center; }
  .text--justify{ text-align:left; letter-spacing:.2px; }
  .text--sm{ font-size:14.5px; }
  .text--sm p{ text-align:left; }

  .chips{ justify-content:center; }
  .chip{ font-size:14px; padding:10px 15px; }

  .icon-list li{ font-size:15px; }
  .icon-list--contato li{ justify-content:flex-start; }
  .icon-list--contato i{ width:38px; height:38px; font-size:16px; }

  .btn{ align-self:center; width:100%; }

  .funcoes{ grid-template-columns:repeat(2, 1fr); gap:12px; }
  .funcoes__lead{ font-size:21px; line-height:1.3; letter-spacing:-.4px; }
  .func{ padding:18px 10px; font-size:13.5px; }
  .func__icon{ width:44px; height:44px; font-size:17px; }

  .ajuda{ grid-template-columns:1fr; gap:16px; margin-top:32px; }
  .ajuda-card{ padding:22px 18px; }
  .ajuda-card:hover{ transform:none; }
  .ajuda-card__title{ font-size:17px; text-align:center; }
  .ajuda-card__icon{ align-self:center; }
  .ajuda-card__text{ font-size:14px; text-align:left; }
  .acolhe{ margin-top:26px; }
  .acolhe span{ font-size:13.5px; padding:9px 15px; }

  .motivo{ padding:16px; gap:12px; }
  .motivo:hover{ transform:none; }
  .motivo__title{ font-size:16px; }
  .motivo__text{ font-size:14px; text-align:left; }
  .motivo__icon{ width:40px; height:40px; font-size:16px; }

  .assinatura{ max-width:290px; padding:34px 24px; }
  .assinatura__nome{ font-size:36px; }
  .logo-mark{ max-width:280px; }

  .atendimento{ gap:16px; margin-top:34px; }
  .icon-box{ padding:22px 18px; }
  .icon-box__icon{ width:48px; height:48px; font-size:19px; }
  .icon-box__title{ font-size:16px; }
  .icon-box__desc{ font-size:14px; }

  .etapas{ grid-template-columns:1fr 1fr; gap:40px 12px; }
  .etapas__title{ font-size:23px; margin-bottom:44px; }
  .etapa{ padding:38px 10px 20px; }
  .etapa__name{ font-size:14px; }
  .etapa__num{ width:44px; height:44px; font-size:15px; top:-22px; }

  .band__cta{ font-size:18px; line-height:1.3; }
  .band__icon{ width:44px; height:44px; font-size:18px; }

  .toggle{ padding:6px 12px; }
  .toggle__title{ font-size:15.5px; padding:15px 2px; }
  .toggle__content{ font-size:14px; padding:0 2px 15px 32px; }

  .reviews{ padding:0 30px; margin-top:30px; }
  .reviews .carousel__track{ gap:14px; }
  .reviews .review{ flex-basis:100%; padding:20px 18px; }
  .review:hover{ transform:none; }
  .review__text{ font-size:14px; text-align:left; }
  .review__name{ font-size:14.5px; }

  .map{ border-radius:16px 16px 60px 16px; }
  .map iframe{ height:270px; }

  .wpp-float{ width:54px; height:54px; font-size:27px; right:16px; bottom:16px; }

  .footer__list li{ font-size:10px; }
  .footer__list i{ font-size:12px; }

  .section--deep::before,
  .band--deep::before,
  .section--pastel::before{ height:52px; }
}


/* =========================================================
   BOTAO FLUTUANTE DO WHATSAPP — pilula com o rotulo "WhatsApp"
   (o texto visivel facilita o rastreamento do clique)
   Fica no fim do arquivo de proposito: sobrescreve o circulo
   definido acima, inclusive dentro das media queries.
   ========================================================= */
.wpp-float{
  width:auto; height:auto; min-height:60px;
  padding:0 22px 0 17px; gap:10px;
  border-radius:999px;
}
.wpp-float i{ font-size:28px; line-height:1; }
.wpp-float__label{
  font-size:15px; font-weight:700; line-height:1;
  letter-spacing:.01em; white-space:nowrap;
}
@media (max-width:767px){
  .wpp-float{
    width:auto; height:auto; min-height:54px;
    padding:0 18px 0 14px; gap:8px;
    right:16px; bottom:16px;
  }
  .wpp-float i{ font-size:24px; }
  .wpp-float__label{ font-size:14px; }
}
