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

:root {
  --teal: #3a6b35;
  --teal-dark: #2a5025;
  --navy: #4a2c00;
  --navy-dark: #2e1800;
  --gold-mid: #8B6914;
  --accent: #B8860B;
  --bg-light: #fdf9f0;
  --bg-white: #ffffff;
  --text-dark: #2a1c00;
  --text-mid: #6b5030;
  --text-light: #9c7a50;
  --card-bg: #ffffff;
  --footer-bg: #1c1000;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(74, 44, 0, 0.09);
  --shadow-hover: 0 8px 32px rgba(74, 44, 0, 0.16);
  --font: 'Manrope', sans-serif;
  --font-title: 'Fraunces', Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
}

h1, h2 {
  font-family: var(--font-title);
}

/* ── NAV ── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(74, 44, 0, 0.08);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-brand img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  flex: 1;
  margin-left: 40px;
}

.nav-links li:last-child {
  margin-left: auto;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--navy);
}

.btn-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
}

.btn-nav:hover {
  background: var(--navy-dark) !important;
  color: #fff !important;
}

/* ── HAMBURGER (mobile) ── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── HERO ── */
#hero {
  min-height: calc(100vh - 64px);
  background: linear-gradient(135deg, #fef9ed 0%, #fdf5e0 40%, #f2f8ee 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
}

#hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.15;
  max-width: 780px;
}

#hero h1 span.teal {
  color: var(--teal);
}

#hero h1 span.navy {
  color: var(--navy);
}

#hero p {
  margin: 24px auto 0;
  max-width: 560px;
  color: var(--text-mid);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

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

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--navy);
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid var(--navy);
  transition: background 0.2s, color 0.2s;
}

.btn-secondary:hover {
  background: var(--navy);
  color: #fff;
}

.hero-pillars {
  display: flex;
  gap: 48px;
  margin-top: 72px;
  flex-wrap: wrap;
  justify-content: center;
}

.pillar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.pillar-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(74, 44, 0, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.8;
}

.pillar strong {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gold-mid);
}

.pillar span {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-top: -8px;
}

/* ── SECTIONS shared ── */
section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  color: var(--navy);
}

.section-header p {
  margin-top: 16px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-mid);
  font-size: 1rem;
  line-height: 1.7;
}

/* ── PROTOCOLO ── */
#protocolo {
  background: var(--bg-white);
}

.protocolo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.protocolo-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proto-card {
  background: var(--card-bg);
  border: 1px solid rgba(26, 58, 92, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}

.proto-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.proto-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(74, 44, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.proto-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--navy);
  fill: none;
  stroke-width: 1.8;
}

.proto-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.proto-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.protocolo-img {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.protocolo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.img-placeholder {
  width: 100%;
  height: 440px;
  background: linear-gradient(135deg, #e8f0e4, #f0ead4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-placeholder svg {
  width: 64px;
  height: 64px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.2;
  opacity: 0.4;
}

/* ── COMO FUNCIONA ── */
#como-funciona {
  background: var(--bg-light);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.func-card {
  background: var(--card-bg);
  border: 1px solid rgba(26, 58, 92, 0.08);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}

.func-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.func-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(184, 134, 11, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.func-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
}

.func-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold-mid);
  margin-bottom: 12px;
}

.func-card p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.important-box {
  background: rgba(184, 134, 11, 0.06);
  border: 1px solid rgba(184, 134, 11, 0.22);
  border-radius: var(--radius);
  padding: 28px 36px;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.important-box strong {
  color: var(--navy);
}

/* ── SOBRE NÓS ── */
#sobre {
  background: var(--bg-white);
}

.doctors-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 780px;
  margin: 0 auto;
}

.doctor-card {
  background: var(--card-bg);
  border: 1px solid rgba(26, 58, 92, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

.doctor-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.doctor-photo {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.doctor-photo-placeholder {
  width: 100%;
  height: 260px;
  background: linear-gradient(160deg, #e8f0e4, #f5edd4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.doctor-photo-placeholder svg {
  width: 60px;
  height: 60px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.2;
  opacity: 0.4;
}

.doctor-info {
  padding: 24px;
}

.doctor-info h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-mid);
  margin-bottom: 8px;
}

.doctor-info p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ── EVIDÊNCIA ── */
#evidencia {
  background: var(--bg-light);
}

.evidencia-header {
  text-align: center;
  margin-bottom: 48px;
}

.evidencia-header h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.evidencia-header p {
  margin-top: 16px;
  color: var(--text-mid);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.evidencia-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 80px;
}

.ev-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.ev-card-inner {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.ev-live {
  background: linear-gradient(135deg, #4a2c00, #8B6914);
}

.ev-article {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.88)),
    url('Assets/fotos/artigo.png');
  background-size: cover;
  background-position: top center;
  border: 1px solid rgba(74, 44, 0, 0.12);
}

.ev-live-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.18);
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: 4px;
  user-select: none;
}

.ev-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  text-decoration: none;
  white-space: nowrap;
}

.ev-btn-dark {
  background: rgba(26, 58, 92, 0.08);
  color: var(--navy);
  border-color: rgba(26, 58, 92, 0.15);
}

.ev-article-journal {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.ev-article-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
}

/* ── ev-article card inline overrides → moved to CSS ── */
.ev-card-inner.ev-article {
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  height: auto;
  min-height: 240px;
}

.ev-card .ev-btn-dark {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  margin-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  padding: 9px 18px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
}

/* ── CTA BANNER ── */
.cta-banner {
  background: var(--footer-bg);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-radius: 20px;
}

.cta-banner h2 {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 800;
  color: #fff;
  max-width: 500px;
  text-transform: uppercase;
  line-height: 1.3;
}

.cta-banner p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9rem;
}

.btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s;
}

.btn-cta-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── FOOTER ── */
footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 56px 48px 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 2fr 2fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-brand h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-col ul li svg {
  width: 15px;
  height: 15px;
  stroke: rgba(255, 255, 255, 0.4);
  fill: none;
  stroke-width: 1.8;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.footer-social a:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer-social svg {
  width: 17px;
  height: 17px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 48px;
  padding-top: 24px;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.65s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }
.delay-4 { animation-delay: 0.55s; }

/* ── SCROLL FADE (JS-driven) ── */
.scroll-fade {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.scroll-fade.in-view {
  opacity: 1;
  transform: translateY(0);
}

.scroll-fade:nth-child(2) { transition-delay: 0.1s; }
.scroll-fade:nth-child(3) { transition-delay: 0.2s; }
.scroll-fade:nth-child(4) { transition-delay: 0.3s; }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav {
    padding: 0 20px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    z-index: 99;
    flex: none;
    margin-left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid rgba(26, 58, 92, 0.08);
    box-shadow: 0 8px 24px rgba(26, 58, 92, 0.1);
  }

  .nav-links li:last-child {
    margin-left: 0;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 16px 24px;
    font-size: 1rem;
    border-bottom: 1px solid rgba(26, 58, 92, 0.05);
  }

  .nav-links li:last-child .btn-nav {
    margin: 12px 24px;
    border-radius: 50px;
    justify-content: center;
  }

  .protocolo-grid {
    grid-template-columns: 1fr;
  }

  .protocolo-img {
    order: -1;
  }

  .img-placeholder {
    height: 260px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .doctors-grid {
    grid-template-columns: 1fr;
  }

  .evidencia-cards {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
  }

  section {
    padding: 64px 20px;
  }
}

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

  footer {
    padding: 48px 20px 24px;
  }

  .hero-pillars {
    gap: 32px;
  }
}

/* ── UTILITÁRIO ── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── FOOTER — link de privacidade ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-privacy-link {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-privacy-link:hover,
.footer-privacy-link[aria-current="page"] {
  color: rgba(255, 255, 255, 0.8);
}

/* ── PAGE BANNER (páginas internas) ── */
.page-banner {
  background: linear-gradient(135deg, #fef9ed 0%, #fdf5e0 50%, #f2f8ee 100%);
  padding: 80px 24px 64px;
  text-align: center;
  border-bottom: 1px solid rgba(74, 44, 0, 0.08);
}

.page-banner__inner {
  max-width: 680px;
  margin: 0 auto;
}

.page-banner__breadcrumb {
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.page-banner__breadcrumb a {
  color: var(--text-light);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.page-banner__breadcrumb a:hover {
  color: var(--navy);
}

.page-banner__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid rgba(184, 134, 11, 0.2);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.page-banner__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-banner__desc {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 16px;
}

.page-banner__meta {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* ── SEÇÃO DE PRIVACIDADE ── */
.privacidade-section {
  padding: 72px 24px 96px;
  background: var(--bg-light);
}

.privacidade__content {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.privacidade__topic {
  background: var(--bg-white);
  border: 1px solid rgba(74, 44, 0, 0.08);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
}

.privacidade__topic h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.privacidade__topic p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 12px;
}

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

.privacidade__topic ul {
  margin: 8px 0 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.privacidade__topic ul li {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

.privacidade__topic a {
  color: var(--teal);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.privacidade__topic a:hover {
  color: var(--teal-dark);
}

/* ── BOTÃO FLUTUANTE WHATSAPP ── */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}

.float-whatsapp svg {
  width: 28px;
  height: 28px;
}

.float-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.5);
}

@media (max-width: 560px) {
  .privacidade__topic {
    padding: 28px 24px;
  }

  .page-banner {
    padding: 60px 20px 48px;
  }

  .float-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  .float-whatsapp svg {
    width: 24px;
    height: 24px;
  }
}
