/* home-tweaks.css
   Ajustes finos da home, antes embutidos como <style> inline no index.html.
   Movidos para cá em 2026-07-21 (mesmo efeito visual, HTML mais limpo).
   Deve ser carregado por último no <head> para manter a prioridade da cascata. */

/* v17 — reveal tuning (cards de atuação e dúvidas) */
.cards4 .card.reveal,
.useful-grid .card.reveal{
  transform: translateY(18px) scale(.988);
  transition-duration: .78s;
  transition-timing-function: cubic-bezier(.22,.61,.36,1);
}
.cards4 .card.reveal.is-visible,
.useful-grid .card.reveal.is-visible{
  transform: translateY(0) scale(1);
}
.reveal-delay-0{transition-delay:0s;}
.reveal-delay-1{transition-delay:.10s;}
.reveal-delay-2{transition-delay:.22s;}
.reveal-delay-3{transition-delay:.36s;}

/* v20 — about peek (aproxima a seção "Sobre" do hero) */
#sobre.section.section-soft{padding-top:6px; margin-top:-8px;}
@media (max-width:820px){#sobre.section.section-soft{padding-top:4px; margin-top:-10px;}}

/* v23 — about title fix (tamanho/peso do H2 "Sobre a médica") */
#sobre .about-premium-copy h2{
  font-size:20px !important;
  line-height:1.16 !important;
  margin-bottom:10px !important;
  letter-spacing:0 !important;
  font-weight:700 !important;
}
@media (min-width:900px){
  #sobre .about-premium-copy h2{
    font-size:21px !important;
  }
}

/* v24 — private note (nota "Atendimento particular" no hero) */
.home-hero .hero-copy p.hero-note{
  margin-top:18px !important;
  font-size:clamp(12.6px,0.9vw,14px) !important;
  line-height:1.34 !important;
  color:#7a6d5d;
  font-weight:400;
  letter-spacing:0;
}
.home-hero .hero-copy p.hero-note .hero-note-strong{
  display:block;
  font-weight:600;
  color:#5f5346;
}
.home-hero .hero-copy p.hero-note .hero-note-sub{
  display:block;
  margin-top:0;
}
