/* =========================================================================
   Dr. Breno Eto - Cardiologista · Design tokens + componentes
   Identidade: verde-petróleo do logotipo (coração de ramos) + grafite.
   Tipografia: Lora (títulos, serifa humanista) + Inter (texto/UI).
   ========================================================================= */

/* ---------- Fontes (auto-hospedadas) ---------- */
@font-face { font-family: 'Lora'; font-weight: 400; font-style: normal;
  src: url('../fonts/lora-v37-latin-regular.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Lora'; font-weight: 500; font-style: normal;
  src: url('../fonts/lora-v37-latin-500.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Lora'; font-weight: 600; font-style: normal;
  src: url('../fonts/lora-v37-latin-600.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Lora'; font-weight: 700; font-style: normal;
  src: url('../fonts/lora-v37-latin-700.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Lora'; font-weight: 400; font-style: italic;
  src: url('../fonts/lora-v37-latin-italic.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Inter'; font-weight: 400; font-style: normal;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Inter'; font-weight: 500; font-style: normal;
  src: url('../fonts/inter-v20-latin-500.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Inter'; font-weight: 600; font-style: normal;
  src: url('../fonts/inter-v20-latin-600.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Inter'; font-weight: 700; font-style: normal;
  src: url('../fonts/inter-v20-latin-700.woff2') format('woff2'); font-display: swap; }
@font-face { font-family: 'Inter'; font-weight: 800; font-style: normal;
  src: url('../fonts/inter-v20-latin-800.woff2') format('woff2'); font-display: swap; }

/* ---------- Tokens ---------- */
:root {
  /* Verde-petróleo da marca (círculo da foto ≈ #295a5f, coração do logo) */
  --teal-950: #0c2226;
  --teal-900: #102e33;
  --teal-800: #16393e;
  --teal-700: #1d4a50;
  --teal-600: #245760;
  --teal-500: #2b656d;
  --teal-400: #47828a;
  --teal-300: #7fb6ae;
  --teal-200: #b9d8d3;
  --teal-100: #e0eeec;
  --teal-50:  #f1f7f6;

  /* Neutros quentes */
  --ink-900: #1b2426;
  --ink-700: #37464a;
  --ink-600: #4c5c60;
  --ink-500: #64777b;
  --ink-400: #93a4a7;
  --ink-300: #c4d0d1;
  --ink-200: #dde5e5;
  --ink-100: #edf1f1;
  --white:   #ffffff;

  /* Acentos */
  --gold: #e2a63d;          /* estrelas de avaliação */
  --whats: #22c15e;         /* verde WhatsApp (flutuante) */

  /* Papéis semânticos */
  --primary:     var(--teal-600);
  --primary-strong: var(--teal-700);
  --bg-page:     #fbfcfc;
  --bg-soft:     var(--teal-50);
  --bg-dark:     var(--teal-800);
  --bg-darker:   var(--teal-900);
  --fg-1: var(--ink-900);
  --fg-2: var(--ink-600);
  --fg-3: var(--ink-500);
  --fg-on-dark:   var(--white);
  --fg-on-dark-2: rgba(255,255,255,0.78);
  --fg-on-dark-3: rgba(255,255,255,0.52);
  --border-1: var(--ink-200);
  --border-on-dark: rgba(255,255,255,0.14);

  /* Tipografia */
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
  --fs-xs:   0.75rem;
  --fs-sm:   0.84rem;
  --fs-base: 0.9575rem;
  --fs-md:   1.0625rem;
  --fs-lg:   1.3rem;
  --fs-xl:   1.65rem;
  --fs-2xl:  2.1rem;
  --fs-3xl:  clamp(2.2rem, 4.6vw, 3.35rem);
  --tracking-eyebrow: 0.16em;

  /* Layout */
  --container-max: 1200px;
  --container-pad: clamp(20px, 4.5vw, 48px);
  --header-h: 84px;

  --radius-1: 8px;
  --radius-2: 14px;
  --radius-3: 22px;
  --radius-full: 999px;

  --shadow-1: 0 1px 2px rgba(16,46,51,0.06), 0 2px 8px rgba(16,46,51,0.05);
  --shadow-2: 0 6px 24px rgba(16,46,51,0.10);
  --shadow-3: 0 18px 48px rgba(16,46,51,0.18);

  --dur-fast: 150ms;
  --dur-base: 240ms;
  --ease-out: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--fg-1);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.18; margin: 0; color: var(--fg-1); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
iframe { border: 0; display: block; }
::selection { background: var(--teal-200); color: var(--teal-900); }

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

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Âncoras compensam o header fixo */
section[id] { scroll-margin-top: calc(var(--header-h) + 8px); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 640ms var(--ease-out), transform 640ms var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--dur-fast) ease, color var(--dur-fast) ease,
              border-color var(--dur-fast) ease, transform var(--dur-fast) ease,
              box-shadow var(--dur-fast) ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex: 0 0 auto; }

.btn--primary { background: var(--primary); color: var(--white); box-shadow: var(--shadow-1); }
.btn--primary:hover { background: var(--primary-strong); box-shadow: var(--shadow-2); }

.btn--light { background: var(--white); color: var(--teal-800); box-shadow: var(--shadow-2); }
.btn--light:hover { background: var(--teal-100); }

.btn--ghost-dark { background: transparent; color: var(--fg-on-dark); border-color: rgba(255,255,255,0.38); }
.btn--ghost-dark:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.btn--outline { background: transparent; color: var(--primary); border-color: var(--teal-300); }
.btn--outline:hover { border-color: var(--primary); background: var(--teal-50); }

/* ---------- Eyebrow / cabeçalho de seção ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: var(--tracking-eyebrow);
  text-transform: uppercase;
  color: var(--primary);
}
.eyebrow svg { color: var(--teal-400); }
.eyebrow--dark { color: var(--teal-300); }
.eyebrow--dark svg { color: var(--teal-300); }

.section { padding-block: clamp(64px, 9vw, 110px); }

.section-head { max-width: 680px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-title {
  font-size: var(--fs-2xl);
  font-weight: 600;
  margin-top: 14px;
  letter-spacing: -0.01em;
}
.section-title--dark { color: var(--fg-on-dark); }
.section-lead { margin-top: 14px; font-size: var(--fs-md); color: var(--fg-2); }
.section-lead--dark { color: var(--fg-on-dark-2); }

/* ---------- Chips / estrelas ---------- */
.cred-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  color: var(--fg-on-dark-2);
  font-size: var(--fs-sm);
  font-weight: 500;
}
.cred-chip svg { color: var(--teal-300); }

.stars { display: inline-flex; gap: 2px; color: var(--gold); }

/* =========================================================================
   Header
   ========================================================================= */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(251,252,252,0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base) ease, box-shadow var(--dur-base) ease;
}
.header--scrolled { border-bottom-color: var(--border-1); box-shadow: var(--shadow-1); }

.header__inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 28px;
}
.header__logo { flex: 0 0 auto; }
.header__logo img { width: 132px; height: auto; }

.header__nav {
  display: flex;
  gap: 6px;
  margin-inline: auto;
}
.header__link {
  padding: 9px 14px;
  border-radius: var(--radius-full);
  color: var(--fg-2);
  font-weight: 500;
  font-size: var(--fs-base);
  transition: color var(--dur-fast) ease, background var(--dur-fast) ease;
}
.header__link:hover { color: var(--teal-800); background: var(--teal-50); }
.header__link.is-active { color: var(--teal-800); background: var(--teal-100); font-weight: 600; }

.header__cta { flex: 0 0 auto; }

.header__burger {
  display: none;
  margin-left: auto;
  padding: 8px;
  border: 0;
  background: none;
  color: var(--teal-800);
  cursor: pointer;
}

/* Menu mobile */
.mobile-menu {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  z-index: 99;
  flex-direction: column;
  gap: 4px;
  padding: 28px var(--container-pad) 40px;
  background: var(--bg-page);
  overflow-y: auto;
}
.mobile-menu a:not(.btn) {
  padding: 14px 6px;
  font-family: var(--font-serif);
  font-size: var(--fs-lg);
  color: var(--fg-1);
  border-bottom: 1px solid var(--ink-100);
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 300ms var(--ease-out), transform 300ms var(--ease-out);
}
.mobile-menu.is-open a:not(.btn) { opacity: 1; transform: none; }
.mobile-menu__cta { margin-top: 24px; justify-content: center; }

@media (max-width: 960px) {
  .header__nav, .header__cta { display: none; }
  .header__burger { display: inline-flex; }
  .mobile-menu { display: flex; visibility: hidden; opacity: 0; transition: opacity var(--dur-base) ease, visibility 0s linear var(--dur-base); }
  .mobile-menu.is-open { visibility: visible; opacity: 1; transition: opacity var(--dur-base) ease; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  position: relative;
  overflow: hidden;
  color: var(--fg-on-dark);
  background:
    radial-gradient(1100px 620px at 78% -10%, rgba(127,182,174,0.22), transparent 60%),
    radial-gradient(900px 700px at -12% 110%, rgba(12,34,38,0.85), transparent 55%),
    linear-gradient(160deg, var(--teal-800) 12%, var(--teal-700) 55%, var(--teal-600) 100%);
  padding-top: var(--header-h);
}
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.hero__branches {
  position: absolute;
  right: -60px;
  bottom: -80px;
  width: min(560px, 60vw);
  height: auto;
  color: rgba(255,255,255,0.07);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: center;
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(48px, 7vw, 96px) 0;
}

.hero__copy { padding-bottom: clamp(48px, 7vw, 96px); }

.hero__title {
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--fg-on-dark);
  letter-spacing: -0.015em;
  margin-top: 18px;
  max-width: 13ch;
}
.hero__title em {
  font-style: italic;
  color: var(--teal-200);
}

.hero__lead {
  margin-top: 20px;
  max-width: 46ch;
  font-size: var(--fs-md);
  color: var(--fg-on-dark-2);
}

.hero__regs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.06em;
  /* --teal-200: contraste AA sobre toda a faixa do gradiente do hero */
  color: var(--teal-200);
}
.hero__regs-dot { color: var(--fg-on-dark-3); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero__photo {
  position: relative;
  align-self: end;
  display: flex;
  justify-content: center;
}
.hero__photo img {
  position: relative;
  z-index: 1;
  width: min(440px, 100%);
  filter: drop-shadow(0 24px 48px rgba(8,20,22,0.45));
}
.hero__photo-ring {
  position: absolute;
  z-index: 0;
  inset: auto;
  bottom: -40px;
  width: min(430px, 92%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1.5px dashed rgba(255,255,255,0.22);
  animation: be-ring-spin 60s linear infinite;
}
@keyframes be-ring-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .hero__photo-ring { animation: none; } }

.hero__ecg {
  position: relative;
  height: 42px;
  color: rgba(255,255,255,0.35);
}
.hero__ecg svg { width: 100%; height: 100%; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__copy { padding-bottom: 0; }
  .hero__photo { margin-top: 8px; }
  .hero__photo img { width: min(340px, 78vw); }
  .hero__photo-ring { bottom: -20px; width: min(330px, 76vw); }
  .hero__title { max-width: none; }
}

/* =========================================================================
   Sobre
   ========================================================================= */
.sobre { background: var(--bg-page); }
.sobre__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: start;
}

.sobre__media { position: sticky; top: calc(var(--header-h) + 24px); }
.sobre__photo {
  position: relative;
  border-radius: var(--radius-3);
  overflow: hidden;
  box-shadow: var(--shadow-3);
}
.sobre__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(16,46,51,0.10);
  pointer-events: none;
}
.sobre__photo img { width: 100%; }

.sobre__badge {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: -34px auto 0;
  position: relative;
  z-index: 2;
  width: fit-content;
  padding: 14px 22px;
  border-radius: var(--radius-2);
  background: var(--white);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--ink-100);
}
.sobre__badge svg { color: var(--primary); }
.sobre__badge strong { display: block; font-size: var(--fs-base); color: var(--fg-1); }
.sobre__badge span { display: block; font-size: var(--fs-sm); color: var(--fg-3); }

/* Timeline de formação */
.timeline {
  position: relative;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding-left: 2px;
}
.timeline__item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: start;
}
.timeline__item::before {
  content: '';
  position: absolute;
  left: 31px;
  top: 34px;
  bottom: -26px;
  width: 2px;
  background: linear-gradient(var(--teal-200), var(--teal-100));
}
.timeline__item:last-child::before { display: none; }

.timeline__year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 30px;
  border-radius: var(--radius-full);
  background: var(--teal-100);
  color: var(--teal-700);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.timeline__body { padding-top: 2px; }
.timeline__body strong {
  display: block;
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--fg-1);
}
.timeline__body span { display: block; margin-top: 3px; font-size: var(--fs-sm); color: var(--fg-3); }

@media (max-width: 900px) {
  .sobre__inner { grid-template-columns: 1fr; }
  .sobre__media { position: static; max-width: 420px; margin-inline: auto; }
}

/* =========================================================================
   Áreas de atuação
   ========================================================================= */
.atuacao { background: var(--bg-soft); }

.atuacao__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.atuacao__card {
  background: var(--white);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-2);
  padding: 30px 26px;
  box-shadow: var(--shadow-1);
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
}
.atuacao__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.atuacao__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: var(--radius-2);
  background: var(--teal-100);
  color: var(--teal-700);
}
.atuacao__card h3 { margin-top: 18px; font-size: var(--fs-lg); font-weight: 600; }
.atuacao__card p { margin-top: 10px; color: var(--fg-2); font-size: var(--fs-base); }

/* Banda do canal no YouTube */
.yt-band {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 26px;
  padding: 26px 30px;
  border-radius: var(--radius-2);
  background: var(--white);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-1);
}
.yt-band__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fdecec;
  color: #e02424;
}
.yt-band__copy { flex: 1 1 auto; }
.yt-band__copy strong { font-family: var(--font-serif); font-size: var(--fs-md); }
.yt-band__copy p { margin-top: 4px; color: var(--fg-2); font-size: var(--fs-sm); max-width: 60ch; }

@media (max-width: 900px) {
  .atuacao__grid { grid-template-columns: 1fr; }
  .yt-band { flex-direction: column; align-items: flex-start; }
}

/* =========================================================================
   Depoimentos (seção escura)
   ========================================================================= */
.depoimentos {
  background:
    radial-gradient(900px 500px at 85% 0%, rgba(127,182,174,0.14), transparent 55%),
    linear-gradient(170deg, var(--teal-900), var(--teal-800) 70%);
}

.depo__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.depo__card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 28px;
  border-radius: var(--radius-2);
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--border-on-dark);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.depo__quote { color: var(--teal-300); opacity: 0.85; }
.depo__card p {
  color: var(--fg-on-dark-2);
  font-size: var(--fs-base);
  font-style: italic;
  font-family: var(--font-serif);
  line-height: 1.7;
}
.depo__card footer { margin-top: auto; }
.depo__who { display: flex; align-items: center; gap: 14px; }
.depo__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal-500);
  color: var(--white);
  font-weight: 700;
  font-size: var(--fs-md);
}
.depo__who strong { display: block; color: var(--fg-on-dark); font-size: var(--fs-sm); font-weight: 600; }
.depo__who .stars { margin-top: 2px; }

@media (max-width: 800px) {
  .depo__grid { grid-template-columns: 1fr; }
}

/* =========================================================================
   Contato
   ========================================================================= */
.contato { background: var(--bg-page); }

.contato__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.contato__card {
  padding: 30px 26px;
  border-radius: var(--radius-2);
  background: var(--white);
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.contato__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--teal-100);
  color: var(--teal-700);
}
.contato__card h3 { font-size: var(--fs-md); font-weight: 600; }
.contato__card > p { color: var(--fg-2); font-size: var(--fs-base); }
.contato__card p strong { color: var(--fg-1); }

.contato__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-weight: 600;
  font-size: var(--fs-sm);
}
.contato__link:hover { text-decoration: underline; }

.contato__hours { width: 100%; display: flex; flex-direction: column; gap: 10px; }
.contato__hours li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--ink-200);
  font-size: var(--fs-sm);
  color: var(--fg-2);
}
.contato__hours li:last-child { border-bottom: 0; padding-bottom: 0; }
.contato__hours strong { color: var(--fg-1); font-weight: 600; white-space: nowrap; }

.contato__phones { display: flex; flex-direction: column; gap: 8px; }
.contato__phones a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: var(--fs-md);
  color: var(--teal-700);
}
.contato__phones a:hover { color: var(--teal-500); }

.contato__social { display: flex; flex-direction: column; gap: 6px; margin-top: 6px; }
.contato__social a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: var(--fs-sm);
  color: var(--fg-2);
}
.contato__social a:hover { color: var(--teal-700); }

.contato__map {
  margin-top: 26px;
  border-radius: var(--radius-2);
  overflow: hidden;
  border: 1px solid var(--ink-100);
  box-shadow: var(--shadow-1);
}
.contato__map iframe { width: 100%; height: 340px; }

/* Faixa final de CTA */
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: 26px;
  padding: clamp(28px, 4vw, 44px) clamp(26px, 4vw, 48px);
  border-radius: var(--radius-3);
  background:
    radial-gradient(700px 300px at 90% -20%, rgba(127,182,174,0.25), transparent 60%),
    linear-gradient(135deg, var(--teal-700), var(--teal-600));
  color: var(--fg-on-dark);
  box-shadow: var(--shadow-2);
}
.cta-band__copy h3 {
  color: var(--fg-on-dark);
  font-size: var(--fs-xl);
  font-weight: 600;
}
.cta-band__copy p { margin-top: 8px; color: var(--fg-on-dark-2); }

@media (max-width: 960px) {
  .contato__grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}

/* =========================================================================
   Footer
   ========================================================================= */
.footer {
  background: var(--teal-950);
  color: var(--fg-on-dark-2);
}
.footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 64px);
  padding-block: clamp(48px, 6vw, 72px);
}
.footer__brand img { width: 150px; }
.footer__brand p { margin-top: 18px; font-size: var(--fs-sm); max-width: 34ch; }
.footer__regs { color: var(--fg-on-dark-3); }

.footer__nav, .footer__contact { display: flex; flex-direction: column; gap: 10px; }
.footer__nav strong, .footer__contact strong {
  color: var(--fg-on-dark);
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 600;
  margin-bottom: 6px;
}
.footer__nav a, .footer__contact a {
  color: var(--fg-on-dark-2);
  font-size: var(--fs-sm);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color var(--dur-fast) ease;
}
.footer__nav a:hover, .footer__contact a:hover { color: var(--teal-300); }
.footer__contact svg { color: var(--teal-300); }

.footer__social { display: flex; gap: 10px; margin-top: 10px; }
.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border-on-dark);
  color: var(--fg-on-dark-2);
}
.footer__social a:hover { border-color: var(--teal-300); color: var(--teal-300); }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding-block: 22px;
  border-top: 1px solid var(--border-on-dark);
  font-size: var(--fs-xs);
  color: var(--fg-on-dark-3);
}
.footer__bottom img { height: 26px; width: auto; opacity: 0.75; transition: opacity var(--dur-fast) ease; }
.footer__bottom a:hover img { opacity: 1; }

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
}

/* =========================================================================
   WhatsApp flutuante
   ========================================================================= */
.float-whats {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whats);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(14,116,60,0.42);
  transition: transform var(--dur-fast) var(--ease-out), box-shadow var(--dur-fast) ease;
}
.float-whats:hover { transform: translateY(-3px) scale(1.05); box-shadow: 0 14px 34px rgba(14,116,60,0.5); }
.float-whats::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--whats);
  animation: be-whats-ping 2.2s var(--ease-out) infinite;
}
@keyframes be-whats-ping {
  0% { transform: scale(1); opacity: 0.7; }
  70%, 100% { transform: scale(1.45); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) { .float-whats::after { animation: none; } }
