/* =========================================================
   Panorama Psicologia e Saúde
   Gustavo Lino (CRP 01/27741) e Maria Luiza Ribeiro (CRP 01/28039)
   Paleta extraída da identidade visual (logo azul):
   Azul Marinho #1A3661 | Azul Royal #205997 | Azul claro #3178B6
   ========================================================= */

:root{
  --mist:       #EAF1F8;
  --mist-2:     #F4F8FC;
  --royal:      #205997;
  --royal-deep: #1B4B82;
  --royal-soft: #DCE8F5;
  --sky:        #3178B6;
  --navy:       #1A3661;
  --navy-deep:  #142B4E;
  --navy-mid:   #21456F;
  --white:      #FFFFFF;
  --ink:        #2C3440;
  --ink-2:      #29313C;
  --ink-3:      #232A34;
  --nav-ink:    #46505E;
  --line:       #D8E3EF;
  --wpp:        #3CB531;
  --wpp-hover:  #2E8E26;
  --wpp-float:  #28A219;

  --shadow-sm:  0 2px 10px rgba(26,54,97,.08);
  --shadow:     0 18px 50px -22px rgba(26,54,97,.42);
  --shadow-lg:  0 40px 80px -30px rgba(26,54,97,.48);

  --font-m: 'Montserrat', sans-serif;
  --font-p: 'Poppins', sans-serif;

  --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-p);
  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(60,181,49,.55), 0 0 0 0 rgba(60,181,49,.45); }
  50%    { box-shadow:0 14px 32px -12px rgba(60,181,49,.65), 0 0 0 14px rgba(60,181,49,0); }
}
@keyframes floatPulse{
  0%,100%{ box-shadow:0 6px 20px rgba(0,0,0,.24), 0 0 0 0 rgba(40,162,25,.5); }
  50%    { box-shadow:0 6px 20px rgba(0,0,0,.24), 0 0 0 16px rgba(40,162,25,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; }

.section{ padding:74px 0; position:relative; overflow:hidden; }
.section--mist{ background:var(--mist); }
.section--white{ background:var(--white); }

.grid-2{ display:grid; grid-template-columns:1fr 1fr; 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; }

.navy{ color:var(--navy-mid); }

/* =========================================================
   TEXTOS
   ========================================================= */
.text{
  font-family:var(--font-p);
  font-weight:400;
  font-size:16px;
  color:var(--ink-3);
  line-height:1.75;
}
.text--justify{ text-align:justify; }
.text--center{ text-align:center; max-width:760px; margin-left:auto; margin-right:auto; }

.h-title{
  font-family:var(--font-p);
  font-weight:600;
  font-size:30px;
  color:var(--ink-2);
  margin-bottom:18px;
}
.h-title::after{
  content:'';
  display:block;
  width:62px; height:3px;
  margin-top:16px;
  border-radius:3px;
  background:linear-gradient(90deg, var(--sky), var(--navy));
}
.h-title.center::after{ margin-left:auto; margin-right:auto; }

.h-consulta{
  font-family:var(--font-p);
  font-weight:500;
  font-size:30px;
  color:var(--ink);
  margin-bottom:16px;
}
.h-consulta::after{
  content:'';
  display:block;
  width:62px; height:3px;
  margin:16px auto 0;
  border-radius:3px;
  background:linear-gradient(90deg, var(--sky), var(--navy));
}

/* =========================================================
   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, color .3s ease, transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s ease;
}
.btn--wpp{
  background:var(--wpp);
  color:var(--white);
  box-shadow:0 12px 28px -12px rgba(60,181,49,.6);
}
.btn--wpp:hover{
  background:var(--wpp-hover);
  transform:translateY(-4px);
  box-shadow:0 18px 34px -12px rgba(46,142,38,.7);
}
/* botão secundário — usado no bloco de avaliações do Google */
.btn--ghost{
  background:var(--white);
  color:var(--navy);
  border:2px solid var(--line);
  box-shadow:var(--shadow-sm);
}
.btn--ghost:hover{
  border-color:var(--royal);
  color:var(--royal);
  transform:translateY(-4px);
  box-shadow:var(--shadow);
}
.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:var(--white); color:var(--wpp-float); transform:scale(1.1) rotate(-6deg); }

/* =========================================================
   MOLDURAS DE IMAGEM
   ========================================================= */
.frame{ position:relative; display:block; width:100%; max-width:370px; }
.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(--royal);
  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; border-color:var(--navy); }

/* =========================================================
   ÍCONE QUADRADO
   ========================================================= */
.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(--sky) 0%, var(--navy) 120%);
  color:var(--white);
  font-size:22px;
  margin-bottom:18px;
  box-shadow:0 12px 26px -12px rgba(32,89,151,.95);
}

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

.icon-list--hero{ margin:16px 0 26px; }
.icon-list--hero li{
  font-family:var(--font-m);
  font-size:17px;
  color:var(--ink);
  align-items:center;
}
.icon-list--hero i{
  color:var(--royal);
  font-size:14px;
  width:32px; height:32px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:var(--royal-soft);
}

.icon-list--contato li{ align-items:center; }
.icon-list--contato li + li{ margin-top:14px; }
.icon-list--contato i{
  color:var(--white);
  font-size:19px;
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  border-radius:15px;
  background:linear-gradient(135deg, var(--sky) 0%, var(--navy) 130%);
  flex:none;
}
.icon-list--contato a,
.icon-list--contato .contato__item{
  display:flex; align-items:center; gap:13px;
  text-decoration:none; color:var(--ink);
  font-size:17px;
  transition:color .3s ease;
}
.icon-list--contato a:hover{ color:var(--royal); }
.icon-list--contato small{
  display:block;
  font-size:13.5px;
  color:#69737F;
  line-height:1.45;
}

/* =========================================================
   MENU
   ========================================================= */
.nav{
  background:var(--white);
  padding:12px 20px;
  border-bottom:1px solid var(--line);
  position:sticky;
  top:0;
  z-index:900;
}
.nav__inner{
  max-width:var(--maxw);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.nav__brand{ display:block; flex:none; }
.nav__brand img{ width:196px; }
.nav__list{ display:flex; flex-wrap:wrap; align-items:center; justify-content:center; }
.nav__list li + li{ border-left:1px solid rgba(70,80,94,.28); }
.nav__list a{
  display:block;
  padding:2px 16px;
  font-family:var(--font-p);
  font-weight:400;
  font-size:14px;
  color:var(--nav-ink);
  text-decoration:none;
  transition:color .3s ease;
}
.nav__list a:hover{ color:var(--royal); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position:relative;
  background:linear-gradient(150deg, var(--mist) 0%, #F3F8FC 60%, var(--mist) 100%);
  min-height:628px;
  display:flex;
  align-items:center;
  padding:40px 0;
  overflow:hidden;
}
.hero__glow{ position:absolute; border-radius:50%; pointer-events:none; }
.hero__glow--a{
  width:52%; height:62%;
  top:-16%; right:-10%;
  background:radial-gradient(circle, rgba(49,120,182,.22) 0%, rgba(49,120,182,0) 64%);
}
.hero__glow--b{
  width:44%; height:56%;
  bottom:-18%; left:-12%;
  background:radial-gradient(circle, rgba(26,54,97,.16) 0%, rgba(26,54,97,0) 64%);
}

.hero__inner{
  position:relative;
  z-index:1;
  width:100%;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 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:500;
  font-size:15px;
  letter-spacing:.5px;
  text-transform:uppercase;
  color:var(--royal);
  margin:0 0 12px;
}
.hero__title{
  font-family:var(--font-m);
  font-weight:700;
  font-size:36px;
  line-height:1.22;
  color:var(--navy);
  margin-bottom:14px;
}
.hero__lead{
  font-family:var(--font-m);
  font-weight:400;
  font-size:18px;
  color:var(--ink);
  margin-bottom:0;
}
.hero__col--img .frame{ margin-left:auto; max-width:370px; }

/* =========================================================
   TRATAMENTOS
   ========================================================= */
.tratamentos{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:44px;
}
.trat-card{
  position:relative;
  min-height:180px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:14px;
  padding:26px 20px;
  border-radius:20px;
  overflow:hidden;
  background:linear-gradient(150deg, var(--navy) 0%, var(--navy-deep) 100%);
  box-shadow:var(--shadow-sm);
  transition:transform .35s var(--ease), box-shadow .35s var(--ease);
}
.trat-card::before{
  content:'';
  position:absolute;
  left:0; right:0; top:0;
  height:4px;
  background:linear-gradient(90deg, var(--sky), var(--royal-soft));
  opacity:.85;
}
.trat-card::after{
  content:'';
  position:absolute;
  width:150px; height:150px;
  right:-52px; bottom:-58px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
  transition:transform .5s var(--ease);
}
.trat-card:hover{ transform:translateY(-7px); box-shadow:var(--shadow); }
.trat-card:hover::after{ transform:scale(1.4); }
.trat-card__icon{
  position:relative;
  z-index:1;
  width:54px; height:54px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:rgba(255,255,255,.14);
  color:var(--royal-soft);
  font-size:22px;
  transition:background .35s ease, color .35s ease;
}
.trat-card:hover .trat-card__icon{ background:rgba(255,255,255,.25); color:var(--white); }
.trat-card h3{
  position:relative;
  z-index:1;
  font-family:var(--font-p);
  font-weight:500;
  font-size:19px;
  line-height:1.35;
  color:var(--white);
  text-align:center;
}

/* =========================================================
   FAIXAS CTA
   ========================================================= */
.band{
  position:relative;
  background:linear-gradient(120deg, var(--royal) 0%, var(--navy) 130%);
  min-height:157px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:16px;
  padding:38px 20px;
  text-align:center;
  overflow:hidden;
}
.band::before{
  content:'';
  position:absolute;
  width:340px; height:340px;
  left:-90px; top:-140px;
  border-radius:50%;
  background:rgba(255,255,255,.06);
}
.band__text{
  position:relative;
  font-family:var(--font-p);
  font-weight:400;
  font-size:21px;
  line-height:1.5;
  color:var(--white);
  margin:0;
  max-width:820px;
}
.band .btn{ align-self:center; position:relative; }

/* =========================================================
   ESTRELAS
   ========================================================= */
.stars{
  display:flex;
  justify-content:center;
  gap:7px;
  margin-bottom:18px;
  color:#FBBC04;
  font-size:22px;
}

/* =========================================================
   AVALIAÇÕES DO GOOGLE
   Os cartões abaixo só aparecem quando houver <article class="review">
   dentro de .reviews — veja o comentário no index.html.
   ========================================================= */
.google-cta{ display:flex; justify-content:center; margin-top:34px; }
.google-cta .btn{ align-self:center; }
.google-cta .btn i{ font-size:18px; color:#4285F4; }

.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 .carousel__track::-webkit-scrollbar{ display: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(--royal);
  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-p);
  font-weight:600;
  font-size:15px;
  color:var(--ink);
  line-height:1.3;
}
.review__meta{
  font-family:var(--font-p);
  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-p);
  font-weight:400;
  font-size:14.5px;
  line-height:1.75;
  color:#4B4B4B;
  margin:0;
}

.reviews .carousel__arrow{
  color:var(--royal);
  font-size:26px;
}
.reviews .carousel__arrow:hover{ color:var(--navy); }

/* =========================================================
   COMO FUNCIONA / PASSOS
   ========================================================= */
.consulta{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:44px 20px;
  margin-top:60px;
}
.passo{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:44px 22px 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), border-color .35s ease;
}
.passo:hover{ transform:translateY(-7px); border-color:var(--royal); box-shadow:var(--shadow); }
.passo__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(--sky) 0%, var(--navy) 130%);
  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(26,54,97,.9);
}
.passo__icon{
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  margin-bottom:14px;
  border-radius:15px;
  background:var(--royal-soft);
  color:var(--navy);
  font-size:19px;
}
.passo__title{
  font-family:var(--font-p);
  font-weight:600;
  font-size:17px;
  line-height:1.4;
  color:var(--ink);
  text-align:center;
  margin-bottom:10px;
}
.passo__desc{
  font-family:var(--font-p);
  font-weight:400;
  font-size:14.5px;
  line-height:1.7;
  color:#4B4B4B;
  text-align:center;
  margin:0;
}
.consulta__cta{ display:flex; justify-content:center; margin-top:46px; }
.consulta__cta .btn{ align-self:center; }

/* =========================================================
   QUEM SOMOS — cartões dos dois profissionais
   ========================================================= */
.profs{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:30px;
  margin-top:48px;
}
.prof{
  display:flex;
  flex-direction:column;
  align-items:center;
  padding:30px 26px 32px;
  border-radius:22px;
  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;
}
.prof:hover{ transform:translateY(-7px); border-color:var(--royal); box-shadow:var(--shadow); }
.prof__foto{
  width:190px; height:190px;
  border-radius:50%;
  overflow:hidden;
  flex:none;
  margin-bottom:20px;
  border:4px solid var(--white);
  box-shadow:0 0 0 2px var(--royal-soft), var(--shadow-sm);
}
.prof__foto img{ width:100%; height:100%; object-fit:cover; object-position:center 22%; }
.prof__nome{
  font-family:var(--font-p);
  font-weight:600;
  font-size:21px;
  color:var(--ink-2);
  text-align:center;
  margin-bottom:6px;
}
.prof__crp{
  font-family:var(--font-m);
  font-weight:600;
  font-size:13px;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:var(--royal);
  margin-bottom:16px;
}
.prof__desc{
  font-family:var(--font-p);
  font-weight:400;
  font-size:15px;
  line-height:1.75;
  color:#4B4B4B;
  text-align:center;
  margin:0 0 18px;
}
.prof__tags{ display:flex; flex-wrap:wrap; justify-content:center; gap:8px; }
.prof__tags li{
  font-family:var(--font-p);
  font-size:12.5px;
  font-weight:500;
  color:var(--navy);
  background:var(--royal-soft);
  border-radius:50px;
  padding:6px 14px;
  line-height:1.3;
}

/* =========================================================
   NOTA DISCRETA — avaliação psicológica
   ========================================================= */
.nota{
  display:flex;
  align-items:flex-start;
  gap:20px;
  max-width:880px;
  margin:0 auto;
  padding:26px 30px;
  border-radius:18px;
  background:var(--mist-2);
  border:1px solid var(--line);
  border-left:4px solid var(--royal);
}
.nota__icon{
  flex:none;
  width:46px; height:46px;
  display:flex; align-items:center; justify-content:center;
  border-radius:14px;
  background:var(--royal-soft);
  color:var(--navy);
  font-size:19px;
}
.nota__body{ min-width:0; }
.nota__title{
  font-family:var(--font-p);
  font-weight:600;
  font-size:17px;
  color:var(--ink-2);
  margin-bottom:6px;
}
.nota__text{
  font-family:var(--font-p);
  font-weight:400;
  font-size:14.5px;
  line-height:1.75;
  color:#4B4B4B;
  margin:0;
}
.nota__text a{ color:var(--royal); font-weight:500; text-decoration:none; }
.nota__text a:hover{ text-decoration:underline; }

/* =========================================================
   LOGO CONTATO
   ========================================================= */
.logo-ring{
  display:flex;
  align-items:center;
  justify-content:center;
  width:300px; height:300px;
  max-width:100%;
  border-radius:50%;
  background:var(--white);
  border:2px solid var(--royal-soft);
  box-shadow:var(--shadow);
}
.logo{ width:76%; }

/* =========================================================
   CARROSSEL
   ========================================================= */
.carousel{ position:relative; padding:0 40px; width:100%; max-width:420px; }
.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:20px;
  box-shadow:var(--shadow);
  border:1px solid var(--line);
}
.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:var(--royal); font-size:24px; cursor:pointer;
  transition:transform .3s var(--ease);
}
.carousel__arrow:hover{ transform:translateY(-50%) scale(1.2); }
.carousel__arrow--prev{ left:0; }
.carousel__arrow--next{ right:0; }

/* =========================================================
   RODAPÉ
   ========================================================= */
.footer{ background:linear-gradient(120deg, var(--royal) 0%, var(--navy) 130%); padding:26px 20px 20px; }
.footer__logo{ display:block; width:190px; margin:0 auto 16px; opacity:.95; }
.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; }

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

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

  .tratamentos{ grid-template-columns:repeat(2, 1fr); }
  .trat-card h3{ font-size:18px; }

  .consulta{ grid-template-columns:repeat(2, 1fr); }

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

  .logo-ring{ width:250px; height:250px; }

  .nav__brand img{ width:170px; }
}

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

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

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

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

  .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; }

  .nav{ padding:8px 12px; position:static; }
  .nav__inner{ flex-direction:column; gap:8px; }
  .nav__brand img{ width:160px; }
  .nav__list a{ padding:2px 9px; font-size:10px; }

  .hero{ padding:30px 0; }
  .hero__crp{ font-size:12px; text-align:center; }
  .hero__title{ font-size:23px; text-align:center; }
  .hero__lead{ font-size:15px; text-align:center; }
  .icon-list--hero li{ font-size:15px; }

  .h-title{ font-size:25px; text-align:center; }
  .h-title::after{ margin-left:auto; margin-right:auto; }
  .h-consulta{ font-size:25px; }

  .text{ font-size:15px; }
  .text--justify{ text-align:justify; }

  .icon-list li{ font-size:14.5px; }
  .icon-list--contato li{ justify-content:flex-start; }
  .icon-list--contato i{ width:40px; height:40px; font-size:17px; }
  .icon-list--contato a,
  .icon-list--contato .contato__item{ font-size:15px; }
  .icon-list--contato small{ font-size:12.5px; }

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

  .tratamentos{ grid-template-columns:1fr 1fr; gap:12px; margin-top:32px; }
  .trat-card{ min-height:150px; padding:18px 12px; gap:10px; }
  .trat-card__icon{ width:44px; height:44px; font-size:18px; }
  .trat-card h3{ font-size:14px; }

  .band{ padding:32px 20px; }
  .band__text{ font-size:17px; line-height:1.35; }

  .consulta{ grid-template-columns:1fr; gap:42px 0; margin-top:48px; }
  .passo{ padding:40px 18px 22px; }
  .passo__title{ font-size:16px; }
  .passo__desc{ font-size:14px; }
  .consulta__cta{ margin-top:36px; }

  .profs{ grid-template-columns:1fr; gap:24px; margin-top:34px; }
  .prof{ padding:26px 20px 28px; }
  .prof__foto{ width:160px; height:160px; }
  .prof__nome{ font-size:19px; }
  .prof__desc{ font-size:14.5px; text-align:justify; }

  .nota{ flex-direction:column; align-items:center; text-align:center; gap:14px; padding:24px 20px; }
  .nota__text{ text-align:justify; }

  .carousel{ padding:0 30px; max-width:100%; }

  .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; }

  .logo-ring{ width:230px; height:230px; margin:0 auto; }

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

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


/* =========================================================
   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; }
}
