/* ============================================================
   SITE: Dra. Amanda Aldrighi
   Versão: 1.0 — 2026
   Designer: Faízca

   ÍNDICE
   01. Variáveis
   02. Reset
   03. Base
   04. Acessibilidade
   05. Utilitários
   06. Navegação
   07. Hero
   08. Seções — base compartilhada
   09. Sobre
   10. Serviços / Atuação
   11. Quando procurar
   12. Consulta — Steps
   13. Localização
   14. CTA Final
   15. Rodapé
   16. Responsivo — Tablet (≤ 900px)
   17. Responsivo — Mobile (≤ 600px)
============================================================ */


/* ──────────────────────────────────────────────────────────
   01. VARIÁVEIS
   Para alterar as cores do site, edite apenas esta seção.
────────────────────────────────────────────────────────── */

:root {
  /* Paleta da marca */
  --navy:         #024059;
  --navy-dark:    #013248;
  --sage:         #C1D9D2;
  --cream:        #F2EBDF;
  --amber:        #F2A35E;
  --amber-dark:   #e0924e;
  --white:        #FFFFFF;

  /* Texto — tons escurecidos para passar contraste AA (≥4.5:1 no branco) */
  --text-dark:    #024059;
  --text-mid:     #3F5666;
  --text-light:   #506C7A;
  --text-muted:   #5A7280;

  /* Bordas */
  --border:       #D8D0C5;
  --border-light: rgba(242, 235, 223, 0.12);

  /* Layout */
  --max-width:    1200px;
  --pad-h:        56px;   /* padding horizontal das seções */
  --pad-v:        80px;   /* padding vertical das seções   */

  /* Transições */
  --ease:         0.22s ease;

  /* Tipografia */
  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-sans:    'IBM Plex Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

  /* Escala fluida (clamp) — mobile → desktop sem saltos */
  --fs-hero:   clamp(2.35rem, 1.55rem + 3.9vw, 4rem);   /* 37.6 → 64px */
  --fs-title:  clamp(1.75rem, 1.3rem + 2.1vw, 2.6rem);  /* 28   → 41.6px */
  --fs-cta:    clamp(1.9rem, 1.45rem + 2.1vw, 2.75rem); /* 30.4 → 44px */
  --fs-quote:  clamp(1.15rem, 1.02rem + 0.6vw, 1.4rem); /* 18.4 → 22.4px */
  --fs-sub:    clamp(0.95rem, 0.9rem + 0.3vw, 1.06rem); /* 15.2 → 17px */
}


/* ──────────────────────────────────────────────────────────
   02. 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-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  font: inherit;
}

a {
  color: inherit;
}


/* ──────────────────────────────────────────────────────────
   03. BASE — FOCO
────────────────────────────────────────────────────────── */

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Respeita quem prefere menos movimento */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}


/* ──────────────────────────────────────────────────────────
   04. ACESSIBILIDADE
────────────────────────────────────────────────────────── */

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--amber);
  color: var(--navy);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 0 0 2px 2px;
  z-index: 9999;
  text-decoration: none;
  transition: top var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* Ocultar visualmente mas manter acessível */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}


/* ──────────────────────────────────────────────────────────
   05. UTILITÁRIOS
────────────────────────────────────────────────────────── */

/* Container centralizado */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

/* Botões */
.btn {
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 28px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background var(--ease), transform var(--ease), box-shadow var(--ease);
  cursor: pointer;
}

.btn--amber {
  background: var(--amber);
  color: var(--navy);
}

.btn--amber:hover {
  background: var(--amber-dark);
  transform: translateY(-2px);
}

.btn--navy {
  background: var(--navy);
  color: var(--cream);
}

.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
}


/* ──────────────────────────────────────────────────────────
   06. NAVEGAÇÃO
────────────────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav {
  background: var(--navy);
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--pad-h);
  transition: box-shadow var(--ease);
}

/* Sombra ativada via JS ao rolar */
.nav.is-scrolled {
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.2);
}

.nav__logo {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--ease);
}

.nav__logo:hover {
  opacity: 0.8;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__links a {
  color: rgba(242, 235, 223, 0.65);
  font-size: 12px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--ease);
}

.nav__links a:hover {
  color: var(--cream);
}

.nav__cta {
  background: var(--amber);
  color: var(--navy) !important;
  padding: 7px 18px;
  border-radius: 2px;
  font-weight: 500;
  opacity: 1 !important;
  transition: background var(--ease), transform var(--ease) !important;
}

.nav__cta:hover {
  background: var(--amber-dark) !important;
  transform: translateY(-1px);
}

/* Botão hamburger — oculto no desktop */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  border-radius: 2px;
  flex-shrink: 0;
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
  transition: transform var(--ease), opacity var(--ease);
}

/* Animação do X quando menu aberto */
.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}


/* ──────────────────────────────────────────────────────────
   07. HERO
────────────────────────────────────────────────────────── */

.hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(9,31,44,0.92) 0%, rgba(9,31,44,0.72) 40%, rgba(9,31,44,0.35) 70%, rgba(9,31,44,0.15) 100%),
    url("images/backgroundBanner.jpeg");
  background-repeat: no-repeat, no-repeat;
  background-position: center, center;
  background-size: cover, cover;
  padding: var(--pad-v) 0;
  padding-top: 96px;
  padding-bottom: 104px;
}

.hero .container {
  /* max-width menor no hero para manter o texto confortável */
}

.hero__eyebrow {
  color: var(--sage);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero__divider {
  width: 36px;
  height: 2px;
  background: var(--amber);
  margin-bottom: 24px;
}

.hero__title {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: var(--fs-hero);
  font-weight: 400;
  line-height: 1.08;
  max-width: 15ch;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}

.hero__sub {
  color: rgba(242, 235, 223, 0.78);
  font-size: var(--fs-sub);
  line-height: 1.7;
  max-width: 42ch;
  margin-bottom: 36px;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 64px;
  align-items: center;
}

.hero__media {
  position: relative;
  align-self: stretch;
  min-height: 380px;
}

.hero__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--navy) 0%, rgba(2,64,89,0.3) 8%, transparent 26%);
  pointer-events: none;
  border-radius: 2px;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 2px;
  display: block;
}


/* ──────────────────────────────────────────────────────────
   08. SEÇÕES — BASE COMPARTILHADA
────────────────────────────────────────────────────────── */

.section {
  padding: var(--pad-v) 0;
}

.section--white  { background: var(--white); }
.section--cream  { background: var(--cream); }
.section--navy   { background: var(--navy);  }

.section__label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 10px;
  display: block;
}

.section__label--light {
  color: var(--amber); /* mantém a cor mesmo em fundo escuro */
}

.section__title {
  font-family: var(--font-display);
  font-size: var(--fs-title);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.15;
  letter-spacing: -0.015em;
}

.section__title--light {
  color: var(--cream);
}

.section__intro {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 600px;
}


/* ──────────────────────────────────────────────────────────
   09. SOBRE
────────────────────────────────────────────────────────── */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 28px;
}

/* Inverte o Sobre: imagem à esquerda, texto à direita */
.about__media {
  order: 1;
}

.about__text {
  order: 2;
}

.about__text .section__title {
  margin-bottom: 24px;
}

.about__text p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 16px;
}

.about__text p:last-child {
  margin-bottom: 0;
}

/* Parágrafo de posicionamento: destaque tipográfico */
.about__highlight {
  font-family: var(--font-display) !important;
  font-style: italic;
  font-size: var(--fs-quote) !important;
  color: var(--navy) !important;
  line-height: 1.55 !important;
  padding-left: 22px;
  border-left: 2px solid var(--amber);
  margin-top: 26px !important;
  margin-bottom: 26px !important;
}

/* Foto */
.about__media img {
  width: 100%;
  height: auto;
  border-radius: 2px;
  display: block;
  max-height: 40px !important;
  display: none;
}


.photo-placeholder {
  background: var(--sage);
  border-radius: 2px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.photo-placeholder span {
  font-size: 11px;
  color: var(--navy);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.4;
}


/* ──────────────────────────────────────────────────────────
   10. SERVIÇOS / ATUAÇÃO
────────────────────────────────────────────────────────── */

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 0;
}

.services__card {
  background: var(--white);
  padding: 32px 28px;
  transition: background var(--ease);
}

.services__card:hover {
  background: rgba(193, 217, 210, 0.14); /* leve tom sage */
}

.services__dot {
  width: 28px;
  height: 2px;
  background: var(--navy); /* âmbar reservado à célula-acento da seção */
  margin-bottom: 16px;
}

.services__name {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.services__desc {
  font-size: 13px;
  color: var(--text-light);
  line-height: 1.75;
}

.services__accent {
  background: var(--amber);
  padding: 32px 28px;
  display: flex;
  align-items: flex-end;
}

.services__accent p {
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.35;
}


/* ──────────────────────────────────────────────────────────
   11. QUANDO PROCURAR
────────────────────────────────────────────────────────── */

.when-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 36px;
}

.when-list__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 28px 32px;
  border-bottom: 0.5px solid var(--border-light);
  border-right: 0.5px solid var(--border-light);
}

/* Coluna da direita: sem borda direita */
.when-list__item:nth-child(even) {
  border-right: none;
}

/* Última linha: sem borda inferior */
.when-list__item:last-child,
.when-list__item:nth-last-child(2) {
  border-bottom: none;
}

/* Último item: sem borda direita */
.when-list__item:last-child {
  border-right: none;
}

/* Célula vazia — escondida mas mantém a grade */
.when-list__item--empty {
  pointer-events: none;
}

/* Marcador "+" — situações independentes (não é sequência), com eco médico */
.when-list__mark {
  position: relative;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  margin-top: 5px;
}

.when-list__mark::before,
.when-list__mark::after {
  content: '';
  position: absolute;
  background: var(--amber);
}

.when-list__mark::before { top: 6px; left: 0; width: 14px; height: 2px; }
.when-list__mark::after  { left: 6px; top: 0; width: 2px;  height: 14px; }

.when-list__title {
  font-size: 15px;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 6px;
  line-height: 1.35;
}

.when-list__desc {
  font-size: 13px;
  color: rgba(242, 235, 223, 0.55);
  line-height: 1.7;
}


/* ──────────────────────────────────────────────────────────
   12. CONSULTA — STEPS
────────────────────────────────────────────────────────── */

.steps {
  margin-top: 0;
}

.steps__item {
  display: flex;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 0.5px solid var(--border);
  align-items: flex-start;
}

.steps__item:last-child {
  border-bottom: none;
}

.steps__num {
  font-size: 11px;
  color: var(--amber);
  font-weight: 500;
  letter-spacing: 0.12em;
  flex-shrink: 0;
  min-width: 24px;
  padding-top: 3px;
}

.steps__title {
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 7px;
  line-height: 1.35;
}

.steps__desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.75;
}


/* ──────────────────────────────────────────────────────────
   13. LOCALIZAÇÃO
────────────────────────────────────────────────────────── */

.location {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 36px;
}

/* Quando o mapa real for inserido */
.location__map iframe {
  width: 100%;
  height: 300px;
  border-radius: 2px;
  display: block;
  border: none;
}

.map-placeholder {
  background: var(--sage);
  border-radius: 2px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.map-placeholder span {
  font-size: 11px;
  color: var(--navy);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.4;
}

.location__label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 12px;
}

.location__address {
  font-size: 15px;
  color: var(--navy);
  line-height: 2;
}

.location__note {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 16px;
  line-height: 1.75;
}

.location__info .btn {
  margin-top: 24px;
}


/* ──────────────────────────────────────────────────────────
   14. CTA FINAL
────────────────────────────────────────────────────────── */

.cta-final__inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
}

.cta-final__title {
  font-family: var(--font-display);
  font-size: var(--fs-cta);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.12;
  letter-spacing: -0.015em;
}

.cta-final__sub {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.8;
}


/* ──────────────────────────────────────────────────────────
   15. RODAPÉ
────────────────────────────────────────────────────────── */

.site-footer {
  background: var(--navy);
  padding: 28px 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.site-footer__name {
  color: rgba(242, 235, 223, 0.85);
  font-family: var(--font-display);
  font-size: 15px;
}

.site-footer__copy {
  color: rgba(242, 235, 223, 0.28);
  font-size: 12px;
}


/* ──────────────────────────────────────────────────────────
   16. RESPONSIVO — TABLET (≤ 900px)
────────────────────────────────────────────────────────── */

@media (max-width: 900px) {

  :root {
    --pad-h:  36px;
    --pad-v:  60px;
  }

  /* Navegação */
  .nav {
    position: relative; /* ancora o menu dropdown */
  }

  .nav__toggle {
    display: flex;
  }

  .nav__links {
    /* Dropdown oculto por padrão */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.32s ease, box-shadow 0.3s ease;
  }

  .nav__links.is-open {
    max-height: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  }

  .nav__links li {
    border-top: 0.5px solid rgba(255, 255, 255, 0.06);
  }

  .nav__links a {
    display: block;
    padding: 15px 36px;
    font-size: 13px;
  }

  .nav__cta {
    display: block;
    margin: 12px 36px 16px !important;
    padding: 11px 20px !important;
    text-align: center;
    border-radius: 2px;
  }

  /* Hero */
  .hero {
    padding-top: 72px;
    padding-bottom: 80px;

  }

  .hero__grid {
    grid-template-columns: 1fr 260px;
    gap: 40px;
  }

  /* Sobre */
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__media {
    order: -1; /* foto primeiro no tablet */
  }

  .photo-placeholder {
    height: 280px;
  }

  /* Serviços */
  .services {
    grid-template-columns: 1fr 1fr;
  }

  .services__accent {
    grid-column: 1 / -1; /* span total na linha final */
  }

  /* Quando procurar */
  .when-list__item {
    padding: 22px 24px;
  }

  /* Localização */
  .location {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Tipografia agora fluida via clamp — sem overrides fixos aqui */

}


/* ──────────────────────────────────────────────────────────
   17. RESPONSIVO — MOBILE (≤ 600px)
────────────────────────────────────────────────────────── */

@media (max-width: 600px) {

  :root {
    --pad-h:  20px;
    --pad-v:  48px;
  }

  /* Navegação */
  .nav {
    height: 52px;
  }

  .nav__logo {
    font-size: 13px;
  }

  .nav__links a {
    padding: 14px 20px;
  }

  .nav__cta {
    margin: 10px 20px 14px !important;
  }

  /* Hero */
  .hero {
    padding-top: 56px;
    padding-bottom: 48px;
    /* No mobile o conteúdo empilha, então o degradê fica vertical:
       navy no topo (texto legível) revelando a imagem embaixo.
       A imagem é panorâmica e a doutora fica à direita, então focamos
       o enquadramento nela para não cortá-la pela metade. */
    background-image:
      linear-gradient(180deg, rgba(9,31,44,0.92) 0%, rgba(9,31,44,0.80) 45%, rgba(9,31,44,0.45) 75%, rgba(9,31,44,0.20) 100%),
      url("images/backgroundBanner.jpeg");
    /* background-position: center top, 90% center; */
    background-position: center top, 20% center;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero__content {
    padding-bottom: 0;
  }

  .hero__media {
    min-height: 260px;
    align-self: auto;
  }

  .hero__media::after {
    background: linear-gradient(to bottom, transparent 55%, var(--navy) 100%);
  }

  .hero__title {
    max-width: 100%;
  }

  /* Serviços */
  .services {
    grid-template-columns: 1fr;
  }

  .services__accent {
    display: none; /* remove frase de impacto no mobile — ganha espaço */
  }

  /* Quando procurar */
  .when-list {
    grid-template-columns: 1fr;
  }

  .when-list__item {
    border-right: none !important;
    border-bottom: 0.5px solid var(--border-light) !important;
    padding: 18px 0;
  }

  .when-list__item:last-child,
  .when-list__item--empty {
    border-bottom: none !important;
    display: none; /* esconde célula vazia no mobile */
  }

  /* Steps */
  .steps__item {
    gap: 18px;
    padding: 20px 0;
  }

  /* Tipografia fluida via clamp — sem overrides fixos no mobile */

  /* Rodapé */
  .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

}

/* → Tamanho recomendado: 580 × 720 px, formato JPG ou WebP, máx. 200 KB */
#fotoProfissional {
  width: 100%;
  height: auto;
  display: block;
  max-width: 720px  !important;
  /* Proporção mais vertical para o formato de ovo (estilo Pou) */
  /* aspect-ratio: 5 / 6; */
  aspect-ratio: 1 / 1;
  max-height: none !important;
  object-fit: cover;
  /* Máscara orgânica definida no SVG #organicBlob (index.html) */
  -webkit-clip-path: url(#organicBlob);
  clip-path: url(#organicBlob);
}
/* =====================================================
   BOTÃO FLUTUANTE — WhatsApp
===================================================== */
.whatsapp-float {
  position: fixed;
  right: clamp(16px, 4vw, 32px);
  bottom: clamp(16px, 4vw, 32px);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}

.whatsapp-float:hover {
  background: #1ebe57;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
}

.whatsapp-float:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}

.whatsapp-float__icon {
  display: block;
}

@media (max-width: 640px) {
  .whatsapp-float {
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float:hover {
    transform: none;
  }
}

/* =====================================================
   ÍCONE DO WHATSAPP DENTRO DOS BOTÕES (header + hero)
===================================================== */
.btn,
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn__wa-icon {
  flex-shrink: 0;
}
