/* =========================================================
   APONTO CARE - STYLE.CSS (MODERNO / LIMPO / CONSISTENTE)
   - Sem !important
   - Sem duplicação de regras
   - Responsivo
   - Hover / Active / Focus-visible
   - Respeita prefers-reduced-motion
========================================================= */

/* =========================
   1) TOKENS / VARIÁVEIS
========================== */
:root {
  --primary: #6F8147;
  --dark: #4E5B27;

  --bg: #ffffff;
  --alt: #F9FAF7;

  --text: #2f2f2f;
  --muted: #666;

  --radius: 16px;

  --shadow-sm: 0 10px 24px rgba(0, 0, 0, .06);
  --shadow-md: 0 18px 40px rgba(0, 0, 0, .08);

  --container: 1180px;
  --container-pad: 24px;

  --ease: cubic-bezier(.2, .8, .2, 1);

  /* foco “iOS-like” (sem copiar iOS) */
  --ring: rgba(111, 129, 71, .35);
  --ring-strong: rgba(111, 129, 71, .55);

  /* bordas sutis */
  --border: rgba(0, 0, 0, .06);
  --border-strong: rgba(111, 129, 71, .35);
}

/* =========================
   2) RESET / BASE
========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  /* Para não cortar conteúdo atrás do header sticky */
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: clamp(16px, 0.3vw + 14px, 20px);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: 88px;
}


img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* zera estilo padrão de botões, cada componente define o seu */
button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
}

/* foco acessível padrão */
:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 4px;
}

/* =========================
   3) CONTAINER (2K/4K)
========================= */
.container {
  width: 100%;
  max-width: min(var(--container), 100%);
  /* Impede overflow */
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Aumenta só o “miolo” */
@media (min-width: 1200px) {
  :root {
    --container: 1240px;
  }
}

@media (min-width: 1440px) {
  :root {
    --container: 1360px;
  }
}

@media (min-width: 1680px) {
  :root {
    --container: 1480px;
  }
}

@media (min-width: 1920px) {
  :root {
    --container: 1560px;
  }
}

@media (min-width: 2560px) {
  :root {
    --container: 1680px;
  }
}

/* =========================
   4) SEÇÕES / TIPOGRAFIA
========================= */
.section {
  padding: clamp(56px, 6vw, 92px) 0;
}

@media (max-width: 768px) {
  .section {
    padding: 24px 0;
  }
}

.section-compact {
  padding: 40px 0;
}

.pt-0 {
  padding-top: 0 !important;
}

.section-alt {
  background: var(--alt);
}

.kicker {
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
  text-transform: uppercase;
}

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

.section-header h2 {
  font-size: clamp(28px, 3vw, 44px);
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.15;
}

.subtitle {
  color: #777;
  max-width: 720px;
  margin: 0 auto;
}

/* =========================
   5) BOTÕES (base)
========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  padding: 12px 18px;
  border-radius: 999px;

  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;

  transition: transform .18s var(--ease),
    box-shadow .18s var(--ease),
    filter .18s var(--ease),
    background .18s var(--ease);
}

.btn:active {
  transform: scale(.98);
}

.btn i {
  /* margin-right removido pois o gap do flex já faz o espaçamento */
  font-size: 1.35em;
  line-height: 1;
  /* Evita que o ícone aumente a altura da linha */
}

.btn-primary,
.btn-whatsapp {
  /* Variáveis locais para o gradiente */
  --g1: #8ea55b;
  --g2: #6F8147;
  --g3: #4E5B27;

  /* Layout & Tipografia */
  color: #fff;
  font-weight: 950;
  letter-spacing: .2px;
  border-radius: 999px;
  padding: 14px 28px;
  /* Um pouco maior que o original */

  /* Estilo Premium (Gradiente + Sombra) */
  border: 1px solid rgba(255, 255, 255, .22);
  background: linear-gradient(120deg, var(--g1), var(--g2), var(--g3));
  background-size: 220% 220%;
  animation: waMove 6s var(--ease) infinite;

  box-shadow:
    0 10px 25px rgba(78, 91, 39, .15),
    0 6px 10px rgba(111, 129, 71, .12);

  position: relative;
  overflow: hidden;
  transition: all .3s var(--ease);
}

.btn-primary::before,
.btn-whatsapp::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, .28) 25%,
      rgba(255, 255, 255, .12) 45%,
      transparent 70%);
  transform: translateX(-120%) skewX(-12deg);
  animation: waShine 3s var(--ease) infinite;
  animation-delay: 1s;
  /* Pequeno delay para desencontrar do waMove */
  pointer-events: none;
  opacity: .9;
}

.btn-primary:hover,
.btn-whatsapp:hover {
  transform: translateY(-2px);
  filter: brightness(1.04) saturate(1.04);
  box-shadow:
    0 18px 40px rgba(78, 91, 39, .22),
    0 10px 20px rgba(111, 129, 71, .18);
}

.btn-primary:active,
.btn-whatsapp:active {
  transform: scale(.98);
}

/* =========================
   6) HEADER / NAV (controlado)
========================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: rgba(255, 255, 255, .98);
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-size: 16px;

  /* Fix para tremor no mobile */
  transform: translateZ(0);
  will-change: transform;
  -webkit-transform: translateZ(0);
}

/* Blur para efeito de vidro (glass effect) */
@supports (backdrop-filter: blur(10px)) {
  .site-header {
    backdrop-filter: blur(10px);
  }
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  min-height: 64px;
  gap: 14px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 12px;
}

.logo-img {
  height: 52px;
  width: auto;
  display: block;
}

@media (min-width: 1440px) {
  .logo-img {
    height: 60px;
  }
}

@media (max-width: 1024px) {
  .logo-img {
    height: 54px;
  }

  .logo {
    margin-left: 20px;
    /* Aumentado de 10px para afastar da borda */
  }
}

.nav {
  display: block;
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 22px;
  align-items: center;
}

.nav-link {
  cursor: pointer;
  color: #666;
  font-weight: 650;
  padding: 6px 0;
  transition: color .18s var(--ease);
}

.nav-link:hover {
  color: var(--primary);
}

.header-cta {
  white-space: nowrap;
}

/* Botão do HEADER (premium e menor) - seletor corrigido */
.site-header .header-cta.btn.btn-primary {
  padding: 10px 16px;
  font-size: 14px;
  background: linear-gradient(180deg, #7B8F4F 0%, #5B6A34 100%);
  border: 1px solid rgba(78, 91, 39, .28);
  box-shadow: 0 10px 18px rgba(78, 91, 39, .16);
}

.site-header .header-cta.btn.btn-primary:hover {
  background: linear-gradient(180deg, #879C59 0%, #4E5B27 100%);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  /* Esconde no desktop */
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 101;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}

.hamburger-box {
  width: 24px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -1px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 24px;
  height: 2px;
  background-color: var(--dark);
  border-radius: 2px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  bottom: -8px;
}

/* Active State (X) */
.menu-toggle[aria-expanded="true"] .hamburger-inner {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .hamburger-inner::before {
  top: 0;
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
}

/* CTA dentro do menu aparece só no mobile */
.nav-cta {
  display: none;
}

@media (max-width: 1024px) {
  .menu-toggle {
    display: inline-flex;
    /* Mostra no mobile */
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 101;
    /* Fica acima do menu aberto */
  }

  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 240px;
    height: 100vh;
    background: #fff;
    box-shadow: -5px 0 25px rgba(0, 0, 0, .15);
    display: flex;
    flex-direction: column;
    padding: 70px 20px 20px;
    /* Top padding para não conflitar com o botão fechar/toggle */

    transform: translateX(100%);
    visibility: hidden;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), visibility 0s linear .3s;
    z-index: 100;
    border-bottom: none;
  }

  .nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform .3s cubic-bezier(.2, .8, .2, 1), visibility 0s linear 0s;
  }

  .nav-list {
    flex-direction: column;
    gap: 0;
    padding: 0;
    align-items: flex-start;
    width: 100%;
  }

  .nav-list li {
    padding: 0;
    width: 100%;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  }

  .nav-link {
    display: block;
    padding: 12px 0;
    width: 100%;
    text-align: left;
    font-size: 1rem;
  }

  .nav-cta {
    display: block;
    width: 100%;
    padding-top: 24px;
    margin-top: auto;
    /* Empurra para o final se sobrar espaço */
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
  }
}

/* =========================
   7) HERO (vídeo + overlay)
========================== */
.hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg,
      rgba(25, 18, 10, .60) 0%,
      rgba(30, 22, 12, .44) 55%,
      rgba(25, 18, 10, .60) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 84px 0;
  max-width: 820px;
}

/* hero kicker herda .kicker, aqui só ajusta cor */
.hero .kicker {
  color: rgba(255, 255, 255, .86);
}

.hero-title {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .35);
}

.hero .lead {
  font-size: clamp(16px, 1.3vw, 19px);
  color: rgba(255, 255, 255, .88);
  margin-bottom: 22px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, .25);
}

/* Botão Premium: Gradiente Verde + Texto Amarelo + Vidro */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

/* Animação de brilho sutil (Premium Sheen) */
/* Animação de brilho sutil (Premium Sheen) */
@keyframes sheen {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* =========================================
   ROTATING TEXT ANIMATION
   ========================================= */
/* Evita pulo de layout */
.static-text {
  display: inline-block;
  /* transform: translateY(-7px); removed to lower text */
  transform: translateY(-3px);
}

.rotating-text-container {
  display: inline-flex;
  vertical-align: bottom;
  min-width: 140px;
  height: 1.25em;
  /* Trava altura para eivtar pulo */
  overflow: visible;
  /* Evita pulo de layout */
  text-align: left;
}

.rotating-text-wrapper {
  position: relative;
  display: inline-block;
}

.rotating-word {
  display: inline-flex;
  white-space: nowrap;
  position: relative;
}

.rotating-word.exit-word {
  position: absolute;
  top: 0;
  left: 0;
}

.rotating-char {
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  animation: rotateEnter 0.6s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(300ms + var(--index) * 0.05s);
  color: #fff;
  /* Garante que fique branco */
}

/* Saída (sobe e desaparece) */
.exit-word .rotating-char {
  animation: rotateExit 0.4s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(var(--index) * 0.03s);
}

@keyframes rotateEnter {
  0% {
    opacity: 0;
    transform: translateY(20px) rotateX(-45deg);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes rotateExit {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    transform: translateY(-30px);
  }
}

@keyframes rotateExitMobile {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 0;
  }

  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}

.hero-actions .btn {
  position: relative;
  /* Tipografia */
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #FFFFFF;

  /* Layout */
  padding: 16px 32px;
  border-radius: 14px;
  /* Mais quadrado (Squircle) */
  border: none;

  /* Estilo: Gradiente Verde + Profundidade */
  background: linear-gradient(135deg, #7A8E50 0%, #4E5B27 100%);
  background-size: 200% 200%;

  /* Sombras para dar volume 3D sutil */
  box-shadow:
    0 4px 6px rgba(0, 0, 0, 0.1),
    /* Sombra perto */
    0 10px 20px rgba(78, 91, 39, 0.3),
    /* Sombra colorida difusa */
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    /* Luz no topo (vidro) */
    inset 0 -2px 0 rgba(0, 0, 0, 0.1);
  /* Sombra interna base */

  /* Animação suave do gradiente */
  animation: sheen 6s ease infinite;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}

/* Efeito de Vidro/Brilho passando */
.hero-actions .btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transform: skewX(-25deg);
  transition: 0.5s;
  pointer-events: none;
}

.hero-actions .btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 8px 12px rgba(0, 0, 0, 0.15),
    0 15px 30px rgba(78, 91, 39, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  color: #FFF;
  /* Fica branco puro no hover para brilhar */
}

/* O brilho passa rápido no hover */
.hero-actions .btn:hover::after {
  left: 150%;
  transition: 0.7s ease-in-out;
}

.hero-actions .btn:active {
  transform: scale(0.97) translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.title-mobile,
.lead-mobile {
  display: none;
}

@media (max-width: 768px) {

  .title-desktop,
  .lead-desktop {
    display: none;
  }

  .title-mobile,
  .lead-mobile {
    display: inline;
  }

  .hero {
    min-height: auto;
    /* Aspect ratio do vídeo - ajuste se necessário */
    aspect-ratio: 16 / 9;
  }

  .hero-video {
    object-fit: contain;
    background: #000;
    transform: none;
  }

  .hero-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, .25) 45%, rgba(0, 0, 0, .55) 100%);
    z-index: 0;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, .18);
  }

  .hero-content {
    max-width: 92%;
    padding: 12px 0 18px;
  }

  .hero .kicker {
    font-size: 9px;
    letter-spacing: .1em;
    margin-bottom: 6px;
  }

  /* Custom animation para mobile: sobe menos e some mais cedo */
  .exit-word .rotating-char {
    animation-name: rotateExitMobile;
  }

  .hero-title {
    font-size: clamp(18px, 5vw, 26px);
    line-height: 1.1;
    margin-bottom: 6px;
  }

  .hero .lead {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 10px;
  }

  .hero-actions .btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}

/* =========================
   8) QUEM SOMOS (Redesign)
========================== */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 16px;
  }

  .about-image-wrapper {
    max-width: 600px;
    margin: 0 auto;
    /* FIX: Voltar para altura natural para nao sobrar espaco em branco */
    aspect-ratio: auto !important;
    height: auto !important;
  }

  .about-image-wrapper img {
    height: auto !important;
    transform: none !important;
    /* Desativa o zoom/subida no mobile/tablet */
  }

  .about-media:hover .about-image-wrapper img {
    transform: none !important;
    /* Garante que nao suba no hover */
  }
}

/* Coluna da Imagem */
.about-media {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  /* Aspect ratio fixo para garantir alinhamento */
  aspect-ratio: 4/3;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 75%;
  /* Focus on the right side (bancada) and shifted slightly down/top-aligned */
  transition: transform 0.6s var(--ease);
}

.about-media:hover .about-image-wrapper img {
  transform: scale(1.05);
}

/* Decoração sutil atrás da imagem */
.about-deco {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 70%;
  height: 70%;
  border-radius: 32px;
  background: radial-gradient(circle at top left, var(--primary), transparent 70%);
  opacity: 0.08;
  z-index: -1;
}

/* Coluna do Texto */
.about-text h2 {
  font-size: clamp(36px, 4vw, 52px);
  color: var(--dark);
  margin-bottom: 28px;
  line-height: 1.05;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.about-intro p {
  color: #000;
  margin-bottom: 24px;
  font-size: 1.25rem;
  line-height: 1.8;
}

/* Box de Propósito (Clean Premium) */
.about-purpose {
  margin-top: 36px;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  /* Gradient Border Effect via box-shadow inset or border-image? 
     Vamos usar borda esquerda sólida + shadow forte */
  border-left: 6px solid var(--primary);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.about-purpose h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 12px;
  font-weight: 800;
}

.about-purpose p {
  font-size: 1.15rem;
  /* Larger for impact */
  color: #111;
  line-height: 1.6;
  font-weight: 600;
  /* More weight */
  margin: 0;
}

/* Stats Premium */
.stats {
  display: flex;
  gap: 20px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.stat-card {
  flex: 1;
  min-width: 120px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.04);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: all 0.3s var(--ease);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
  border-color: transparent;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--dark), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 600px) {
  .stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 colunas lado a lado */
    gap: 8px;
    /* Espaço menor */
  }

  .stat-card {
    min-width: 0;
    /* Permite encolher */
    padding: 10px 4px;
    /* Padding reduzido */
    width: 100%;
  }

  .stat-number {
    font-size: 1.5rem;
    /* Menor para caber */
    margin-bottom: 4px;
  }

  .stat-label {
    font-size: 0.65rem;
    /* Label pequena */
    line-height: 1.1;
    letter-spacing: 0;
  }
}

/* =========================
   9) GRIDS / CARDS
========================== */
.grid {
  display: grid;
  gap: 18px;
}

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

/* Centro o último card se for ímpar (fica sozinho na linha) */
@media (min-width: 769px) {
  .grid-2> :last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }
}

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

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

@media (max-width: 900px) {

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

@media (max-width: 768px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}

/* card como botão */
.card-cta {
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(78, 91, 39, .10);
  border-color: rgba(111, 129, 71, .35);
}

.card:focus-visible {
  outline: 3px solid var(--ring-strong);
  outline-offset: 4px;
}

.icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(111, 129, 71, .12);
  color: var(--primary);
  margin-bottom: 14px;
}

.icon i {
  font-size: 24px;
}

.card h3 {
  color: var(--dark);
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
}

.card-more {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: var(--dark);
}

.card-more::after {
  content: "→";
  opacity: .85;
  transition: transform .18s var(--ease);
}

.card:hover .card-more::after {
  transform: translateX(4px);
}

/* =========================
   9.1) FEATURE CARD (Home Care)
========================== */
.feature-card {
  margin-top: 24px;
  background: #fff;
  border: 1px solid rgba(111, 129, 71, .2);
  /* Borda sutilmente verde */
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .03);
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(78, 91, 39, .10);
}

.feature-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(111, 129, 71, .15);
  color: var(--primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.feature-content {
  flex: 1;
}

.feature-kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
  display: block;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.feature-text {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.feature-text strong {
  color: var(--dark);
  font-weight: 700;
}

.feature-highlight {
  display: inline-block;
  background: #F4F6F0;
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 8px;
}

@media (max-width: 768px) {
  .feature-card {
    flex-direction: column;
    padding: 24px;
    gap: 18px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    font-size: 26px;
  }
}

/* =========================
   10) EQUIPE
========================== */
.doctor {
  background: #fff;
  border-radius: 20px;
  /* Opção B: Borda sutil para dar estrutura */
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  text-align: center;
  padding-bottom: 24px;

  /* FLEX LAYOUT FIX */
  display: flex;
  flex-direction: column;
  height: 100%;

  /* Sombra mais leve */
  box-shadow: 0 4px 20px rgba(0, 0, 0, .04);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}

.doctor-click {
  cursor: pointer;
}

.doctor:hover {
  transform: translateY(-5px);
  /* Sombra um pouco mais forte no hover */
  box-shadow: 0 15px 35px rgba(78, 91, 39, .12);
  border-color: rgba(111, 129, 71, .2);
}

.doctor:focus-visible {
  outline: 3px solid var(--ring-strong);
  outline-offset: 4px;
}

.doctor-photo {
  height: 280px;
  background: #f0f0f0;
  overflow: hidden;
  position: relative;
}

.doctor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform .5s var(--ease);
}

/* Zoom suave na foto ao passar o mouse */
.doctor:hover .doctor-photo img {
  transform: scale(1.05);
}

.doctor h3 {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 6px;
}

.role {
  color: var(--primary);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.crm {
  color: #888;
  font-size: 13px;
  margin-top: 8px;
  line-height: 1.4;
  font-weight: 400;
  border: none;
  padding-top: 0;
  display: block;
  width: 100%;
  margin-bottom: 24px;
  /* Mais espaço antes do botão */
}

.doctor-details {
  /* Push to bottom */
  margin: 18px auto 0;
  margin-top: auto;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 8px;

  /* Botãozinho elegante */
  background: rgba(111, 129, 71, 0.08);
  /* Fundo verde bem clarinho */
  border: 1px solid transparent;
  padding: 10px 20px;
  border-radius: 99px;

  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  transition: all .2s var(--ease);
}

.doctor-details::after {
  content: "→";
  opacity: 0.8;
  font-weight: 900;
  transition: transform .2s var(--ease);
}

.doctor:hover .doctor-details {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 12px rgba(111, 129, 71, .25);
}

.doctor:hover .doctor-details::after {
  opacity: 1;
  transform: translateX(4px);
}

/* =========================
   11) BLOG
========================== */
.post {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}

.post:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(111, 129, 71, .22);
}

.post-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.post-body {
  padding: 18px;
}

.date {
  color: var(--primary);
  font-weight: 900;
  font-size: 12px;
  display: block;
  margin-bottom: 8px;
}

.post h3 {
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}

.post p {
  color: var(--muted);
  margin-bottom: 12px;
}

.link {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--dark);
  padding: 10px 0;
}

.link i {
  transition: transform .18s var(--ease);
}

.link:hover i {
  transform: translateX(4px);
}

/* =========================
   12) CONVÊNIOS (MARQUEE)
========================== */
.convenios.section {
  padding: 44px 0 16px;
}

.convenios .section-header {
  margin-bottom: 14px;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  padding: 0;
  margin-top: 10px;
}

.logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: convenios-marquee 70s linear infinite;
  gap: 0;
  /* Gap must be 0 for seamless loop calculation */
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 40px;
  /* Space between logos inside the group */
  padding-right: 0 !important;
  /* No extra space between groups */
  margin: 0;
}

.logo-group img {
  height: 220px !important;
  width: auto !important;
  display: block;
  object-fit: contain;
  filter: saturate(1.02);
  margin: 0 !important;
  /* Ensure no image margins interfere */
}

/* Care Plus Logo Fix - smaller to match other logos visually */
.logo-group img[src*="logo-careplus.png"] {
  height: 180px !important;
  /* Increased by 20px as per user request */
}

/* EletroSaúde Logo Fix - increase by 20px */
.logo-group img[src*="logo-eletrossaude.png"] {
  height: 240px !important;
  /* Increased from base 220px to 240px as per user request */
}

/* Klini Saúde Logo Fix - make smaller to match visually */
.logo-group img[src*="logo-header.webp"] {
  height: 45px !important;
}

@keyframes convenios-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .convenios.section {
    padding: 32px 0 12px;
  }

  .logo-track {
    animation-duration: 60s;
    gap: 0;
  }

  .logo-group {
    gap: 30px;
    padding-right: 0 !important;
  }

  .logo-group img {
    height: 180px !important;
  }
}

@media (max-width: 520px) {
  .convenios.section {
    padding: 24px 0 8px;
  }

  .convenios .section-header {
    margin-bottom: 8px;
  }

  .logo-track {
    animation-duration: 50s;
    gap: 0;
  }

  .logo-group {
    gap: 15px;
    padding-right: 0 !important;
  }

  .logo-group img {
    height: 170px !important;
  }
}

/* =========================
   13) CTA WHATSAPP (button premium)
========================== */
/* .btn-whatsapp agora herda de .btn-primary, mas podemos manter ajustes específicos se necessário.
   Como o usuário pediu para TODOS ficarem iguais, podemos simplificar. */


@media (max-width: 1024px) {

  .btn-whatsapp,
  .btn-primary {
    width: fit-content;
    /* Volta ao tamanho natural */
    width: -moz-fit-content;
    min-height: 48px;
    padding: 12px 24px;
    font-size: 15px;
    margin: 0;
    /* Garante que não centralize forçado se for flex */
  }
}

/* =========================
   14) CONTATO (card clean)
========================== */
.contact-cta {
  background: var(--alt);
}

.contact-cta__card {
  max-width: 880px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.contact-cta__title {
  color: var(--dark);
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.15;
  margin-bottom: 10px;
}

.contact-cta__subtitle {
  color: #777;
  max-width: 60ch;
  margin: 0 auto 18px;
}

.contact-cta__btn {
  margin-top: 8px;
}

.contact-cta__mini {
  margin-top: 14px;
  color: #777;
  font-size: 14px;
}

/* =========================================================
   FOOTER - premium (limpo)
========================================================= */

.site-footer {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #2b3a16;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: -50px;
  background:
    radial-gradient(circle at 18% 18%, rgba(143, 173, 92, .55), transparent 55%),
    radial-gradient(circle at 78% 22%, rgba(111, 129, 71, .50), transparent 55%),
    radial-gradient(circle at 55% 92%, rgba(195, 210, 165, .28), transparent 60%),
    linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(0, 0, 0, .18));
  filter: blur(10px);
  transform: scale(1.05);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .08);
  pointer-events: none;
}

.footer-inner {
  position: relative;
  z-index: 1;
  padding: clamp(44px, 5vw, 72px) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 1.1fr 1.15fr;
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}

.footer-title {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-mark {
  width: 52px;
  height: 52px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.footer-mark-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

/* texto */
.footer-text {
  color: rgba(255, 255, 255, .86);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 18px;
}

/* SOCIAL */
.footer-social {
  display: flex;
  gap: 14px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .10);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}

.social-btn i {
  font-size: 20px;
}

.social-btn:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .34);
}

.social-btn:active {
  transform: scale(.98);
}

/* COL 2 */
.footer-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.footer-subtitle {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .95;
  margin-bottom: 12px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* como você usa <button> no footer */
.footer-link,
.footer-bottom-link {
  border: 0;
  background: transparent;
}

.footer-link {
  color: rgba(255, 255, 255, .84);
  cursor: pointer;
  text-align: left;
  padding: 6px 0;
  width: fit-content;
  transition: color .18s var(--ease), transform .18s var(--ease);
}

.footer-link:hover {
  color: rgba(255, 255, 255, 1);
  transform: translateX(2px);
}

.footer-link.inline {
  padding: 0;
  width: auto;
}

/* COL 3 (Contato) */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, .86);
}

.contact-row i {
  font-size: 18px;
  opacity: .95;
  margin-top: 2px;
}

/* MAPA real */
.footer-map {
  position: relative;
  height: 190px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .10);
  backdrop-filter: blur(10px);
  overflow: hidden;
}

.footer-map-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.map-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
  font-size: 13px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .26);
  background: rgba(0, 0, 0, .18);
  transition: transform .18s var(--ease), background .18s var(--ease);
}

.map-btn:hover {
  transform: translateY(-1px);
  background: rgba(0, 0, 0, .24);
}

/* BARRA INFERIOR */
.footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, .22);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(255, 255, 255, .86);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-link {
  cursor: pointer;
  color: rgba(255, 255, 255, .86);
  transition: color .18s var(--ease);
}

.footer-bottom-link:hover {
  color: rgba(255, 255, 255, 1);
}

.sep {
  opacity: .75;
}

/* MOBILE */
@media (max-width: 980px) {

  /* some com a coluna de navegação no celular (precisa existir no HTML) */
  .footer-col--nav {
    display: none;
  }

  .footer-inner {
    padding: 34px 0 22px;
  }

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

  .footer-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .footer-text {
    max-width: none;
    font-size: 14px;
    line-height: 1.7;
  }

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

  .footer-contact {
    padding: 14px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
  }

  .contact-row {
    gap: 10px;
    font-size: 14px;
  }

  .footer-map {
    height: 220px;
    border-radius: 18px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}





/* =========================
   16) RESPONSIVO GERAL
========================== */
@media (max-width: 980px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

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

  .about-media img {
    height: 420px;
  }
}

@media (max-width: 760px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .doctor-photo {
    height: 220px;
  }
}

/* =========================
   17) DOCTOR PROFILE PAGE
========================== */
.doctor-profile {
  padding-top: 40px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  font-size: 14px;
  color: var(--muted);
}

.breadcrumb button {
  cursor: pointer;
  color: var(--muted);
  transition: color .18s var(--ease);
}

.breadcrumb button:hover {
  color: var(--primary);
}

.breadcrumb .current {
  color: var(--dark);
  font-weight: 600;
}

.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}

.profile-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}

.profile-photo {
  width: 200px;
  height: 200px;
  margin: 0 auto 20px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid rgba(111, 129, 71, .2);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
}

.profile-name {
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 6px;
}

.profile-role {
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 8px;
}

.profile-crm {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.profile-cta {
  width: 100%;
}

.profile-details h2 {
  font-size: clamp(28px, 3vw, 36px);
  color: var(--dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

.profile-details h3 {
  font-size: 18px;
  color: var(--dark);
  margin: 28px 0 14px;
}

.profile-bio {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 65ch;
}

.profile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.profile-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--text);
  line-height: 1.5;
}

.profile-list li i {
  color: var(--primary);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: rgba(111, 129, 71, .12);
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.profile-back {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all .18s var(--ease);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

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

  .profile-card {
    position: static;
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 520px) {
  .profile-card {
    padding: 20px;
  }

  .profile-photo {
    width: 160px;
    height: 160px;
  }

  .profile-name {
    font-size: 20px;
  }

  .breadcrumb {
    font-size: 12px;
    flex-wrap: wrap;
  }

  .profile-details h2 {
    font-size: 24px;
  }
}

/* =========================
   19) SERVICE PAGES
========================== */
.service-hero {
  background: var(--alt);
  padding: 40px 0 60px;
}

.service-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.service-hero .icon-lg {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  font-size: 32px;
}

.service-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  color: var(--dark);
  margin-bottom: 16px;
}

.service-hero .lead {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* Service Hero with Image */
.service-hero--with-image {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 40px;
}

.service-hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.service-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  /* Desktop: balanced position */
  /* Show more of the top/middle */
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, .2) 0%, rgba(0, 0, 0, .6) 100%);
}

.service-hero--with-image .container {
  position: relative;
  z-index: 1;
}

.service-hero-top {
  align-self: flex-start;
}

.service-hero-bottom {
  align-self: flex-end;
}

.service-hero--with-image .service-hero-content {
  text-align: left;
  max-width: 600px;
  margin: 0;
}

.service-hero--with-image h1 {
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, .3);
}

.service-hero--with-image .lead {
  color: rgba(255, 255, 255, .9);
}

.service-hero--with-image .icon-lg {
  margin: 0 0 16px 0;
  background: rgba(255, 255, 255, .2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
}

/* Breadcrumb light variant */
.breadcrumb--light,
.breadcrumb--light button,
.breadcrumb--light span {
  color: rgba(255, 255, 255, .8);
}

.breadcrumb--light button:hover {
  color: #fff;
}

.breadcrumb--light .current {
  color: #fff;
}

/* Mobile adjustments for hero with image */
@media (max-width: 768px) {
  .service-hero--with-image {
    min-height: 420px;
    padding-bottom: 24px;
  }

  .service-hero-image img {
    object-position: 30% center;
    /* Show ultrasound machine on the left */
  }

  .service-hero--with-image .service-hero-content {
    text-align: left;
  }

  .service-hero--with-image .icon-lg {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .service-hero--with-image h1 {
    font-size: 24px;
  }

  .service-hero--with-image .lead {
    font-size: 14px;
  }
}

/* =========================
   25) BLOG POST DETAILS (Premium V2)
========================== */
.blog-post-header {
  background-color: var(--alt);
  padding: 40px 0 20px;
  /* Reduced spacing */
  text-align: center;
}

.blog-post-header .kicker {
  display: block;
}

.blog-post-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  /* Larger title */
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--dark);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  /* Main content | Sidebar */
  gap: 64px;
  margin-top: 40px;
  margin-bottom: 80px;
  align-items: start;
}

.blog-main {
  min-width: 0;
  /* Prevents grid blowout */
}

/* Sidebar Styles */
.blog-sidebar {
  position: sticky;
  top: 120px;
  /* Below fixed header */
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.sidebar-widget {
  margin-bottom: 40px;
}

.sidebar-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 700;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
  padding-bottom: 4px;
}

.sidebar-post {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
}

.sidebar-post img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar-post h4 {
  font-size: 1rem;
  line-height: 1.3;
  margin-bottom: 4px;
}

.sidebar-post h4 a {
  color: var(--dark);
  transition: color 0.2s;
}

.sidebar-post h4 a:hover {
  color: var(--primary);
}

/* Main Content Styles */
.blog-hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 40px;
  box-shadow: var(--shadow-md);
}

.blog-content h2 {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 48px;
  margin-bottom: 20px;
}

.blog-content p {
  font-size: 1.125rem;
  /* Larger text for readability */
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 24px;
}

.blog-content p.lead {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 40px;
}

.blog-content ul {
  font-size: 1.125rem;
  margin-bottom: 32px;
  padding-left: 24px;
}

.blog-content li {
  margin-bottom: 12px;
}

/* Interactive Elements */
.blog-callout {
  background: var(--alt);
  padding: 40px;
  border-radius: var(--radius);
  border-left: 5px solid var(--primary);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 40px 0;
}

/* Dual Section re-styled */
.blog-dual-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 60px 0;
}

.blog-dual-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

/* Treatment Grid */
.blog-treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin: 40px 0;
}

.treatment-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .2s;
}

.treatment-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}

/* Responsive */
@media (max-width: 900px) {
  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    margin-top: 60px;
  }

  .blog-dual-section {
    grid-template-columns: 1fr;
  }
}

.condition-icon i {
  font-size: 26px;
}

.condition-card h3 {
  color: var(--dark);
  font-size: 20px;
  margin-bottom: 16px;
}

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

.condition-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
}

.condition-list li i {
  color: var(--primary);
  font-size: 16px;
}

.condition-card .card-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* Service Info Grid */
.service-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-info-content {
  max-width: 600px;
}

.section-header--left {
  text-align: left;
  margin-bottom: 24px;
}

.section-header--left h2 {
  text-align: left;
}

.service-text {
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-text strong {
  color: var(--dark);
}

.highlight-box {
  display: flex;
  gap: 16px;
  background: rgba(111, 129, 71, .1);
  border-left: 4px solid var(--primary);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px;
  margin: 24px 0;
}

.highlight-box>i {
  font-size: 28px;
  color: var(--primary);
  flex-shrink: 0;
}

.highlight-box strong {
  display: block;
  color: var(--dark);
  font-size: 17px;
  margin-bottom: 6px;
}

.highlight-box p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
}

.service-info-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.service-info-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

  .service-info-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .highlight-box {
    flex-direction: column;
    gap: 12px;
  }
}


/* Steps */
.steps {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step-content h3 {
  color: var(--dark);
  font-size: 18px;
  margin-bottom: 6px;
}

.step-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  color: var(--dark);
  font-size: 16px;
  transition: background .2s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question:hover {
  background: var(--alt);
}

.faq-question i {
  font-size: 20px;
  color: var(--primary);
  transition: transform .2s ease;
}

.faq-item[open] .faq-question i {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 18px 16px;
  }
}

/* Service CTA */
/* Service CTA (Premium Redesign) */
.service-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 48px;
  background: linear-gradient(135deg, #F9FAF7 0%, #FFFFFF 100%);
  border: 1px solid rgba(111, 129, 71, .15);
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .06);
  position: relative;
  overflow: hidden;
}

/* Detalhe decorativo (borda superior) */
.service-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(90deg, var(--primary), var(--dark));
}

.service-cta h2 {
  color: var(--dark);
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.service-cta p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.service-cta .btn {
  padding: 16px 32px;
  font-size: 18px;
  box-shadow: 0 10px 20px rgba(111, 129, 71, .25);
}

.service-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(111, 129, 71, .35);
}

@media (max-width: 768px) {
  .service-cta {
    padding: 32px 20px;
    border-radius: 20px;
  }

  .service-cta h2 {
    font-size: 24px;
  }

  .service-cta p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .service-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 16px;
  }
}

.service-cta .btn {
  min-width: 280px;
}

@media (max-width: 768px) {
  .service-hero {
    padding: 24px 0 40px;
  }

  .service-hero .icon-lg {
    width: 64px;
    height: 64px;
    font-size: 26px;
  }

  .service-hero h1 {
    font-size: 28px;
  }

  .service-hero .lead {
    font-size: 15px;
  }

  /* Force single column for condition cards */
  .section .grid.grid-3,
  .section .grid.grid-2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .condition-card {
    padding: 20px;
    width: 100%;
  }

  .step {
    padding: 18px;
    gap: 14px;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .service-cta {
    padding: 24px;
  }

  .service-cta .btn {
    width: 100%;
    min-width: auto;
  }
}

/* =========================
   20) REDUZ MOVIMENTO (global)
========================== */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .card,
  .post,
  .doctor,
  .link i {
    transition: none;
  }

  .logo-track {
    animation: none;
  }

  .btn-whatsapp {
    animation: none;
  }

  .btn-whatsapp::before {
    animation: none;
  }
}

/* =========================
   21) UTILS
========================== */
.mobile-break {
  display: inline;
}

@media (min-width: 760px) {
  .mobile-break {
    display: none;
  }
}

/* =========================
   22) CONDITION CARDS (Consultas & Especialidades)
========================== */
.condition-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  height: 100%;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.condition-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(111, 129, 71, .3);
}

.condition-icon {
  width: 48px;
  height: 48px;
  background: var(--alt);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--primary);
  font-size: 24px;
}

.condition-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--dark);
}

.card-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

/* =========================
   23) PERFIL MÉDICO (Doctor Profile)
========================== */
.profile-card {
  text-align: center;
  margin-bottom: 40px;
}

.profile-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 24px;
  border: 4px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 28px;
  color: var(--dark);
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.2;
}

.profile-role {
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.profile-crm {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 32px;
}

.profile-cta {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 12px;
  /* Espaço entre ícone e texto */
  width: 100%;
  max-width: 360px;
  /* Um pouco mais largo */
  margin: 0 auto;
  padding: 14px 20px;
  min-height: 56px;

  /* Melhoria de Legibilidade */
  white-space: normal;
  text-align: left;
  /* Alinha a esquerda fica melhor com ícone ao lado */
  line-height: 1.4;
  font-size: 16px;
  font-weight: 700;
  /* Reduz levemente o peso (era 950) */
  letter-spacing: 0.01em;

  box-shadow: 0 12px 24px rgba(111, 129, 71, .25);
  transition: all .2s var(--ease);
}

.profile-cta i {
  font-size: 24px;
  flex-shrink: 0;
  /* Ícone não esmaga */
}

.profile-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(111, 129, 71, .35);
}

@media (max-width: 768px) {
  .profile-cta {
    width: 100%;
    max-width: 100%;
    /* No mobile ocupa tudo */
    font-size: 16px;
    padding: 16px;
  }
}

.profile-details h2 {
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 16px;
}

.profile-details p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
}

.profile-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.profile-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 16px;
  color: #444;
}

.profile-list li i {
  color: var(--primary);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #F0F4E8;
  color: var(--dark);
  padding: 8px 16px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
}

.tag:hover {
  background: #E2E8D5;
}

.profile-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 64px;
  align-items: start;
}

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

  .profile-card {
    text-align: center;
    border-bottom: 1px solid var(--border);
    padding-bottom: 40px;
    margin-bottom: 20px;
  }
}


/* =========================
   24) BLOG CARD CLICKABLE
========================== */
.post-click {
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}

.post-click:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.post-click:focus-visible {
  outline: 3px solid var(--ring);
  outline-offset: 4px;
}

/* =========================
   25) BLOG POST DETAILS (V4 - Editorial Medical)
========================== */

/* Hero V4: Immersive with Overlay */
.blog-hero-immersive {
  position: relative;
  width: 100vw;
  height: 70vh;
  /* Reduced from 80vh to be more friendly */
  min-height: 500px;
  margin-left: calc(50% - 50vw);
  /* True full-width hack */
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  /* Text at bottom */
  padding-bottom: 60px;
  margin-bottom: 80px;
  color: #fff;
}

.blog-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  /* Mostra mais a parte de cima/costas */
  z-index: 1;
}

/* Cleaner, lighter overlay for V4 */
.blog-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Gradiente mais suave para revelar a imagem */
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.blog-hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.blog-meta-editorial {
  font-family: var(--font-base);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}

.blog-post-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin-bottom: 24px;
  color: #fff;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  max-width: 900px;
}

/* Layout V4 */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

/* Typography V4 */
.blog-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  color: var(--dark);
  margin-top: 60px;
  margin-bottom: 24px;
  /* V4: Clean line instead of border */
  position: relative;
}

.blog-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin-top: 16px;
  border-radius: 2px;
}

.blog-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--dark);
  margin-top: 40px;
  margin-bottom: 16px;
}

.blog-content p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: #4a4a4a;
  /* Softer black */
  margin-bottom: 32px;
}

.blog-content p.lead {
  font-size: 1.4rem;
  font-weight: 400;
  color: #222;
  font-family: 'Playfair Display', serif;
  margin-bottom: 48px;
  line-height: 1.6;
}

/* V4 Cards: "Medical Clean" */
.card-editorial {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  /* Very subtle shadow */
  border: 1px solid #f0f0f0;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  height: 100%;
}

.card-editorial:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(111, 129, 71, 0.15);
  /* Primary color shadow hint */
  border-color: var(--primary);
}

.card-editorial-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 24px;
  display: block;
  background: #F0F4E8;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.blog-treatment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 48px 0;
}

/* V4 Sidebar */
.blog-sidebar {
  position: sticky;
  top: 140px;
}

.sidebar-widget {
  background: #fff;
  padding: 32px;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  margin-bottom: 40px;
}

.sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--dark);
  font-weight: 700;
}

.sidebar-post {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f5f5;
  cursor: pointer;
}

.sidebar-post:hover h4 {
  color: var(--primary);
}

.sidebar-post:last-child {
  padding-bottom: 0;
  border-bottom: none;
  margin-bottom: 0;
}

.sidebar-post img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 8px;
}

.sidebar-post h4 {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  color: var(--text);
  font-weight: 500;
  transition: color 0.15s;
}

/* Empty State V4 */
.blog-placeholder-editorial {
  background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
  border-radius: 16px;
  padding: 56px;
  text-align: center;
  margin: 56px 0;
  border: 1px dashed #d0d0d0;
}

.blog-placeholder-editorial i {
  font-size: 32px;
  color: #bbb;
  margin-bottom: 16px;
  display: inline-block;
}

.blog-placeholder-editorial strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--muted);
}

/* Responsive V4 */
@media (max-width: 900px) {
  .blog-hero-immersive {
    height: 60vh;
  }

  .blog-post-title {
    font-size: 2.2rem;
  }

  .blog-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .blog-sidebar {
    position: static;
  }
}

/* =========================================================
   SCROLL REVEAL ANIMATIONS
========================================================= */

/* Base class: element is hidden and prepared for transition */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}

/* Modifier: Reveal from left */
.reveal-left {
  transform: translateX(-30px);
}

/* Modifier: Reveal from right */
.reveal-right {
  transform: translateX(30px);
}

/* Modifier: Scale up */
.reveal-scale {
  transform: scale(0.95);
}

/* When the element becomes visible */
.reveal.is-visible {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Staggered delays for child elements (like cards) */
.reveal-delay-100 {
  transition-delay: 0.1s;
}

.reveal-delay-200 {
  transition-delay: 0.2s;
}

.reveal-delay-300 {
  transition-delay: 0.3s;
}

.reveal-delay-400 {
  transition-delay: 0.4s;
}

@media (max-width: 768px) {
  .reveal {
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  }

  .reveal-delay-100,
  .reveal-delay-200,
  .reveal-delay-300,
  .reveal-delay-400 {
    transition-delay: 0s !important;
  }
}

/* =========================
   UTILITY: WhatsApp Icon Image
========================== */
.icon-whatsapp {
  width: 32px;
  height: 32px;
  object-fit: contain;
  vertical-align: middle;
  display: inline-block;
}

/* Adjust for specific contexts */
.contact-row .icon-whatsapp {
  width: 28px;
  /* Reduced from 48px */
  height: 28px;
  margin-top: -4px;
  opacity: 1;
}

/* Standard button WhatsApp icon */
.btn .icon-whatsapp {
  width: 38px;
  height: 38px;
}

/* Contact CTA now uses the same standard size (was too big before) */
.contact-cta__btn .icon-whatsapp {
  width: 38px;
  height: 38px;
}

/* =========================
   PAGE SPECIFIC: Infusion Hero
========================== */
.infusao-hero-img {
  object-position: center center !important;
}

@media (min-width: 900px) {
  .infusao-hero-img {
    object-position: 50% 75% !important;
    height: 100% !important;
    object-fit: cover !important;
  }
}