/* ========================================
   CSS CUSTOM PROPERTIES — PALETA OFICIAL
   ======================================== */
:root {
  /* Cores extraídas dos screenshots */
  --verde-muito-escuro: #091510;
  --verde-escuro:    #1B4332;
  --verde-medio:     #2D6A4F;
  --verde-claro:     #3A7D5C;
  --dourado:         #C9A84C;
  --dourado-claro:   #E0C068;
  --dourado-escuro:  #A07830;
  --preto:           #080808;
  --preto-suave:     #111111;
  --cinza-escuro:    #1A1A1A;
  --bege:            #C8BFB4;
  --bege-claro:      #DDD6CE;
  --bege-escuro:     #AFA89F;
  --branco:          #FFFFFF;
  --branco-suave:    #F7F4F0;

  /* Tipografia */
  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-heading:  'Playfair Display', Georgia, serif;
  --font-body:     'Montserrat', sans-serif;

  /* Espaçamentos */
  --section-pad: clamp(80px, 10vw, 140px);
  --container:   1280px;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--branco-suave);
  color: var(--cinza-escuro);
  overflow-x: hidden;
}

/* Custom cursor REMOVED */
.cursor {
  width: 8px; height: 8px;
  background: var(--dourado);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transition: transform 0.1s ease;
  mix-blend-mode: difference;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid var(--dourado);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transition: transform 0.25s ease, width 0.3s, height 0.3s, opacity 0.3s;
  opacity: 0.6;
}
.cursor-follower.hover {
  width: 56px; height: 56px;
  opacity: 0.3;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 80px);
}

/* ========================================
   UTILITY
   ======================================== */
.gold-line {
  display: block;
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  margin: 20px auto;
}
.gold-line.left { margin: 20px 0; }

.section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dourado);
}

.section-label-verde {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--verde-escuro);
}

.reveal { opacity: 0; transform: translateY(40px); }
.reveal-left { opacity: 0; transform: translateX(-40px); }
.reveal-right { opacity: 0; transform: translateX(40px); }

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: padding 0.4s ease, background 0.4s ease, backdrop-filter 0.4s ease;
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(9, 21, 16, 0.97);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}
/* backdrop-filter aplicado em ::before para não criar containing block
   que prende o position:fixed do drawer mobile */
.nav.scrolled::before {
  content: '';
  position: absolute;
  inset: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}
.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: clamp(16px, 2vw, 40px);
  transform: translateX(-50px);
}
.nav-logo {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 300;
  letter-spacing: 0.13em;
  color: var(--branco);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span { color: var(--dourado); }

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(14px, 1.6vw, 30px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links li { white-space: nowrap; }
.nav-links a {
  font-size: clamp(10px, 0.78vw, 11px);
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 1px; background: var(--dourado);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-links a:hover { color: var(--branco); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.active { color: var(--dourado); }

.nav-cta {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-escuro);
  background: linear-gradient(135deg, var(--dourado-claro) 0%, var(--dourado) 55%, var(--dourado-escuro) 100%);
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 240, 200, 0.45);
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow:
    0 8px 24px -10px rgba(201, 168, 76, 0.65),
    0 1px 0 rgba(255, 255, 255, 0.25) inset;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.45) 50%, transparent 100%);
  transform: translateX(-130%);
  transition: transform 0.7s ease;
  pointer-events: none;
}
.nav-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 245, 210, 0.75);
  box-shadow:
    0 14px 36px -8px rgba(201, 168, 76, 0.85),
    0 1px 0 rgba(255, 255, 255, 0.4) inset;
}
.nav-cta:hover::before { transform: translateX(130%); }
.nav-cta:active { transform: translateY(0); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: flex-end;
}

/* Hamburger mobile */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--branco);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.nav-hamburger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Drawer móvel */
.nav-links.nav-open {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--verde-muito-escuro);
  align-items: center;
  justify-content: center;
  gap: 36px;
  z-index: 1050;
  animation: fadeInMenu 0.25s ease;
}
.nav-links.nav-open li { white-space: nowrap; }
.nav-links.nav-open a {
  font-size: 15px;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.8);
}
.nav-links.nav-open a.active,
.nav-links.nav-open a:hover { color: var(--dourado); }

@keyframes fadeInMenu {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  background: var(--preto);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

/* Fundo gradiente animado */
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 65% 50%, #0d2a1e 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(201,168,76,0.06) 0%, transparent 60%),
    var(--preto);
}

/* Grade de linhas douradas finas */
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Foto principal */
.hero-photo {
  position: absolute;
  margin-bottom: 200px;
  margin-top: 100px;
  bottom: 0;
  left: 47%;
  transform: translateX(-50%);
  width: clamp(380px, 45vw, 640px);
  height: 82%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(15%) contrast(1.05);
  mask-image: linear-gradient(to bottom, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

/* Fotos secundárias (laterais) */
.hero-photo-left,
.hero-photo-right {
  position: absolute;
  bottom: 0;
  width: clamp(200px, 22vw, 320px);
  height: 75%;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(60%) contrast(0.9);
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}
.hero-photo-left { left: 0; }
.hero-photo-right { right: 0; }

/* Overlay inferior */
.hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.7) 40%, transparent 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding-bottom: clamp(15px, 2vw, 25px);
  text-align: center;
}

/* Monograma / logotipo */
.hero-monogram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--verde-escuro);
  border: 1px solid var(--dourado);
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: var(--dourado);
  letter-spacing: -0.02em;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 16px;
}

.hero-name {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 300;
  line-height: 0.92;
  color: var(--branco);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.hero-name em {
  font-style: italic;
  color: var(--dourado);
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(10px, 1.2vw, 13px);
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}

.hero-logo {
  display: block;
  width: clamp(180px, 35vw, 550px);
  margin: 0 auto 20px;
}

.hero-crm {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.3);
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--verde-escuro);
  color: var(--branco);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid var(--verde-medio);
  border-radius: 2px;
  transition: background 0.3s, border-color 0.3s, transform 0.2s;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--dourado);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-primary:hover { border-color: var(--dourado); color: var(--preto); }
.btn-primary:hover::before { transform: translateX(0); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 16px 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-outline:hover { color: var(--branco); border-color: rgba(255,255,255,0.6); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px; right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 20;
}
.hero-scroll span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(201,168,76,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ========================================
   SOBRE
   ======================================== */
.sobre {
  background: var(--bege-claro);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.sobre::before {
  content: 'VIVIAN';
  position: absolute;
  top: 50%; left: -20px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(120px, 18vw, 240px);
  font-weight: 600;
  color: rgba(201,168,76,0.05);
  letter-spacing: 0.1em;
  pointer-events: none;
  white-space: nowrap;
  user-select: none;
}

.sobre-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}

.sobre-photo-wrap {
  position: relative;
}
.sobre-photo-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 3/4;
  max-width: 480px;
}
.sobre-photo-frame::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px; right: 16px; bottom: 16px;
  border: 1px solid var(--dourado);
  opacity: 0.4;
  border-radius: 2px;
  pointer-events: none;
}
.sobre-photo-frame::after {
  content: '';
  position: absolute;
  top: 16px; left: 16px; right: -16px; bottom: -16px;
  background: var(--verde-escuro);
  opacity: 0.12;
  border-radius: 2px;
  z-index: -1;
}
.sobre-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 2px;

}

/* Placeholder para foto */
.photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(160deg, var(--bege-escuro) 0%, #9a9188 100%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 80px;
  color: rgba(255,255,255,0.3);
  letter-spacing: -0.03em;
}

.sobre-text {}

.sobre-text .section-label { margin-bottom: 12px; }

.sobre-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cinza-escuro);
  margin-bottom: 24px;
}
.sobre-text h2 em { font-style: italic; color: var(--verde-escuro); }

.sobre-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 16px;
  font-weight: 300;
}

/* Stats */
.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin: 36px 0;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 2px;
  overflow: hidden;
}
.stat-item {
  background: rgba(255,255,255,0.6);
  padding: 20px 16px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 300;
  color: var(--verde-escuro);
  line-height: 1;
}
.stat-unit {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--dourado);
}
.stat-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #888;
  margin-top: 4px;
}

/* Formações accordion */
.formacao-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--verde-escuro);
  padding: 14px 0;
  border-top: 1px solid rgba(201,168,76,0.3);
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}
.formacao-toggle:hover { color: var(--dourado-escuro); }
.toggle-arrow {
  width: 16px; height: 16px;
  border: 1px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  transition: transform 0.3s;
  flex-shrink: 0;
}
.formacao-toggle.open .toggle-arrow { transform: rotate(45deg); }

.formacao-list {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.formacao-list.open { max-height: 600px; }
.formacao-list ul {
  list-style: none;
  padding: 0 0 20px 0;
}
.formacao-list li {
  font-size: 13px;
  font-weight: 300;
  color: #555;
  line-height: 1.7;
  padding: 4px 0 4px 16px;
  position: relative;
}
.formacao-list li::before {
  content: '';
  position: absolute; left: 0; top: 12px;
  width: 5px; height: 1px;
  background: var(--dourado);
}

/* ========================================
   IMUNIDADE / ESPECIALIDADES — REDESIGN
   ======================================== */
.imunidade {
  background: var(--verde-muito-escuro);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
  border-top: none;
}
.imunidade::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 0% 50%, rgba(27,67,50,0.25) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 100% 50%, rgba(201,168,76,0.04) 0%, transparent 50%);
  pointer-events: none;
}
/* Watermark letter */
.imunidade::after {
  content: 'S';
  position: absolute;
  right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(300px, 35vw, 480px);
  font-weight: 600;
  color: rgba(201,168,76,0.025);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.imunidade-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(50px, 8vw, 120px);
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Coluna esquerda — texto âncora */
.imunidade-intro {}
.imunidade-intro .section-label { margin-bottom: 12px; }
.imunidade-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 300;
  color: var(--branco);
  line-height: 1.05;
  margin: 12px 0 28px;
}
.imunidade-intro h2 em { font-style: italic; color: var(--dourado); }
.imunidade-intro p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  max-width: 380px;
  margin-bottom: 14px;
}
.imunidade-intro .gold-line { margin: 28px 0; }
.imunidade-stat {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.imunidade-stat-n {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 300;
  color: var(--dourado);
  line-height: 1;
}
.imunidade-stat-label {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.05em;
  line-height: 1.4;
  max-width: 160px;
}

/* Coluna direita — grid de condições */
.especialidades-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(201,168,76,0.07);
}
.esp-item {
  background: rgba(255,255,255,0.025);
  padding: 26px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s ease;
  cursor: default;
}
.esp-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, var(--dourado), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.esp-item:hover { background: rgba(27,67,50,0.35); }
.esp-item:hover::after { transform: scaleX(1); }

.esp-num {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 300;
  color: rgba(201,168,76,0.25);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
  transition: color 0.35s;
}
.esp-item:hover .esp-num { color: rgba(201,168,76,0.6); }

.esp-content {}
.esp-name {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
  line-height: 1.3;
  transition: color 0.35s;
}
.esp-item:hover .esp-name { color: var(--branco); }
.esp-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 210, 95, 0.56);
}

/* especialidades — breakpoints integrados no bloco RESPONSIVE abaixo */

/* ========================================
   ABORDAGEM
   ======================================== */
.abordagem {
  background: var(--bege);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.abordagem-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: start;
}
.abordagem-text .section-label { margin-bottom: 12px; }
.abordagem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cinza-escuro);
  margin-bottom: 24px;
}
.abordagem-text h2 em { font-style: italic; color: var(--verde-escuro); }
.abordagem-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 16px;
  font-weight: 300;
}
.abordagem-text .locais {
  margin: 30px 0;
  display: flex;
  gap: 20px;
}
.local-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--verde-escuro);
}
.local-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--dourado);
}

.abordagem-visual {
  position: relative;
  overflow: hidden;
  transform: translateY(100px);
}
.abordagem-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 8px;
  height: 488px;
  max-height: 100%;
}
.grid-photo {
  border-radius: 2px;
  overflow: hidden;
  background: var(--bege-escuro);
  min-height: 0;
}
.grid-photo:nth-child(1) { grid-row: 1 / 3; }
.grid-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.grid-photo:hover img { transform: scale(1.04); }

/* Placeholder foto */
.grid-photo-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 36px;
  color: rgba(255,255,255,0.4);
}
.gp1 { background: linear-gradient(160deg, #8a9a88, #5a6e58); }
.gp2 { background: linear-gradient(160deg, #a09080, #7a6a60); }
.gp3 { background: linear-gradient(160deg, #7a8878, #4a5e48); }

/* ========================================
   PROCEDIMENTOS
   ======================================== */
.procedimentos {
  background: var(--verde-muito-escuro);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.procedimentos::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 0%, var(--verde-escuro) 0%, transparent 70%),
    radial-gradient(ellipse 30% 40% at 80% 80%, rgba(201,168,76,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.procedimentos-header {
  text-align: center;
  margin-bottom: 70px;
}
.procedimentos-header h2 {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300;
  color: var(--branco);
  line-height: 1;
  margin: 12px 0;
}
.procedimentos-header h2 em { font-style: italic; color: var(--dourado); }
.procedimentos-header p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.8;
}

.proc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.08);
}

.proc-card {
  background: rgba(255,255,255,0.03);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  border: 1px solid transparent;
}
.proc-card:hover {
  background: rgba(27,67,50,0.5);
  border-color: rgba(201,168,76,0.25);
  z-index: 2;
}
.proc-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--dourado), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.proc-card:hover::after { transform: scaleX(1); }

.proc-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 300;
  color: rgba(201,168,76,0.12);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}
.proc-card:hover .proc-number { color: rgba(201,168,76,0.25); }

.proc-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--branco);
  margin-bottom: 12px;
}

.proc-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

.proc-arrow {
  position: absolute;
  bottom: 24px; right: 24px;
  width: 32px; height: 32px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--dourado);
  font-size: 13px;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s, transform 0.3s;
}
.proc-card:hover .proc-arrow { opacity: 1; transform: translateX(0); }

/* Card full-width (último item / destaque horizontal) */
.proc-card--full {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  padding: 30px 36px;
}
.proc-card--full .proc-number {
  margin-bottom: 0;
  font-size: 52px;
  line-height: 1;
  flex-shrink: 0;
}
.proc-card--full .proc-name {
  margin-bottom: 0;
  flex-shrink: 0;
  min-width: 220px;
}
.proc-card--full .proc-desc {
  flex: 1;
  min-width: 280px;
  margin: 0;
}
.proc-card--full .proc-arrow {
  position: static;
  opacity: 1;
  transform: none;
  flex-shrink: 0;
  margin-left: auto;
}

/* ========================================
   ÊNFASE TIPOGRÁFICA — palavra "wellness"
   ======================================== */
.wellness {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1.18em;
  padding: 0 0.06em;
  /* Default: fundos escuros (preto, verde-escuro, hero) */
  color: var(--dourado-claro);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
}
/* Em fundos claros (footer bege, página de bio, programa, contato) usa verde-escuro
   para máximo contraste */
.footer .wellness,
.programa .wellness,
.contato .wellness,
.sobre .wellness {
  color: var(--verde-escuro);
  text-shadow: none;
}

/* ========================================
   TESTE DE PERSONALIDADE / CTA VERDE
   ======================================== */
.cta-verde {
  background: var(--verde-escuro);
  padding: clamp(60px, 8vw, 100px) 0;
  position: relative;
  overflow: hidden;
}
.cta-verde::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 30% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    linear-gradient(135deg, var(--verde-muito-escuro) 0%, var(--verde-escuro) 50%, var(--verde-muito-escuro) 100%);
  pointer-events: none;
}
/* Grade sutil */
.cta-verde::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-verde-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.cta-verde h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--branco);
  line-height: 1.15;
}
.cta-verde h2 em { font-style: italic; color: var(--dourado); }
.cta-verde p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
  max-width: 480px;
  line-height: 1.8;
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dourado);
  color: var(--preto);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 40px;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s;
}
.btn-gold:hover { background: var(--dourado-claro); transform: translateY(-2px); }

/* ========================================
   PROGRAMA
   ======================================== */
.programa {
  background: var(--bege-claro);
  padding: var(--section-pad) 0;
}
.programa-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 100px);
  align-items: center;
}
.programa-photos {
  position: relative;
  height: clamp(280px, 40vw, 520px);
}
.programa-photo-main {
  position: absolute;
  left: 0; top: 0;
  width: 70%; height: 80%;
  border-radius: 2px;
  overflow: hidden;
  background: var(--bege-escuro);
}
.programa-photo-sec {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%; height: 60%;
  border-radius: 2px;
  overflow: hidden;
  background: var(--verde-escuro);
  border: 3px solid var(--branco-suave);
}
.programa-photo-main img,
.programa-photo-sec img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ph-main { background: linear-gradient(160deg, #9aaa98, #5a7058); }
.ph-sec  { background: var(--verde-escuro); }
.ph-inner {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 48px;
  color: rgba(255,255,255,0.3);
}

.programa-text .section-label { margin-bottom: 12px; }
.programa-text h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cinza-escuro);
  margin-bottom: 24px;
}
.programa-text h2 em { font-style: italic; color: var(--verde-escuro); }
.programa-text p {
  font-size: 15px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 14px;
  font-weight: 300;
}

/* ========================================
   CURSOS — REDESIGN COM 4 CARDS
   ======================================== */
.cursos {
  background: var(--verde-muito-escuro);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.cursos::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--verde-escuro) 0%, transparent 60%);
  pointer-events: none;
}
.cursos-header {
  text-align: center;
  margin-bottom: 60px;
}
.cursos-header h2 {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 300;
  color: var(--branco);
  line-height: 1.1;
  margin: 10px 0 16px;
}
.cursos-header h2 em { font-style: italic; color: var(--dourado); }
.cursos-sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

.cursos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: rgba(201,168,76,0.06);
  border: 1px solid rgba(201,168,76,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 60px;
}
.curso-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.02);
  transition: background 0.4s;
  position: relative;
}
.curso-card:hover { background: rgba(255,255,255,0.05); }
.curso-card:hover .btn-curso { border-color: var(--dourado); color: var(--dourado); }

.curso-card-header {
  padding: 32px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 180px;
  position: relative;
}
.curso-card-logo {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.curso-card-logo img {
  max-height: 70px;
  max-width: 85%;
  width: auto;
  object-fit: contain;
}
/* Cover variant — e-book card */
.curso-card-header--cover {
  padding: 0;
  height: 160px;
  min-height: 180px;
  overflow: hidden;
  position: relative;
}
.curso-card-logo--cover {
  position: absolute;
  inset: 0;
}
.curso-card-logo--cover img {
  width: 100%;
  height: 100%;
  max-height: none;
  max-width: none;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.curso-badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid;
  border-radius: 2px;
}
.curso-card-body {
  padding: 24px;
  flex: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.curso-card-body h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--branco);
  margin-bottom: 4px;
}
.curso-full-name {
  font-size: 11px;
  font-weight: 300;
  color: var(--dourado);
  letter-spacing: 0.05em;
  margin-bottom: 14px;
}
.curso-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
  margin-bottom: 16px;
}
.curso-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.curso-tags span {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.05);
  padding: 3px 8px;
  border-radius: 2px;
}
.curso-card-footer {
  padding: 0 24px 24px;
}
.btn-curso {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  background: transparent;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 2px;
  padding: 12px 14px;
  text-decoration: none;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
  cursor: pointer;
}
.btn-curso:hover { color: var(--dourado); border-color: rgba(201,168,76,0.5); }
.btn-curso-destaque {
  color: var(--dourado);
  border-color: rgba(201,168,76,0.3);
}
.btn-curso-destaque:hover { background: rgba(201,168,76,0.08); }

.cursos-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 30px 40px;
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 2px;
  background: rgba(255,255,255,0.02);
  flex-wrap: wrap;
  text-align: center;
}
.cursos-cta p {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  max-width: 400px;
  line-height: 1.7;
}

/* cursos — breakpoints integrados no bloco RESPONSIVE abaixo */

/* ========================================
   BLOG
   ======================================== */
section.blog {
  background: var(--bege-claro);
  padding: var(--section-pad) 0;
}
.blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}
.blog-header h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--cinza-escuro);
  line-height: 1.1;
}
.blog-header h2 em { font-style: italic; color: var(--verde-escuro); }
.ver-mais {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde-escuro);
  border-bottom: 1px solid var(--dourado);
  padding-bottom: 3px;
  transition: color 0.3s;
}
.ver-mais:hover { color: var(--dourado-escuro); }

.blog-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--branco);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 2px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}
.blog-card-img {
  display: block;      /* garante aspect-ratio em <a> e <div> */
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bege);
}
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-ph {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
}
.bph1 { background: linear-gradient(135deg, var(--bege-escuro), var(--bege)); }
.bph2 { background: linear-gradient(135deg, #8a9a88, var(--verde-claro)); opacity: 0.5; }
.bph3 { background: linear-gradient(135deg, #9a8a70, var(--bege-escuro)); }

.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-tag {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--verde-escuro);
  margin-bottom: 10px;
}
.blog-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--cinza-escuro);
  line-height: 1.3;
  margin-bottom: 12px;
}
.blog-card-large h3 { font-size: 26px; }
.blog-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}
.blog-card-meta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 11px;
  color: #999;
  font-weight: 300;
}

/* ========================================
   CONTATO
   ======================================== */
.contato {
  background: var(--verde-muito-escuro);
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}
.contato::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 70% at 0% 100%, var(--verde-escuro) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 0%, var(--verde-escuro) 0%, transparent 50%);
  pointer-events: none;
}

.contato-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(50px, 8vw, 100px);
  position: relative;
  z-index: 1;
}

.contato-info .section-label { margin-bottom: 12px; }
.contato-info h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  color: var(--branco);
  line-height: 1.1;
  margin-bottom: 24px;
}
.contato-info h2 em { font-style: italic; color: var(--dourado); }
.contato-info p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.85;
  margin-bottom: 36px;
}

.clinica-info {
  margin-bottom: 24px;
}
.clinica-info h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 8px;
}
.clinica-info p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 4px;
  line-height: 1.6;
}

.social-btns {
  display: flex;
  gap: 16px;
  margin-top: 28px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  color: var(--branco);
  transition: transform 0.25s, opacity 0.25s;
}
.social-btn:hover { transform: translateY(-3px); opacity: 0.85; }
.social-btn svg { width: 24px; height: 24px; }

.social-btn--wa {
  background: #25D366;
}
.social-btn--wa svg { fill: white; }

.social-btn--ig {
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.social-btn--ig svg { stroke: white; }

.contato-photo {
  border-radius: 4px;
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}
.contato-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Formulário */
.contato-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2px;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  color: var(--branco);
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: rgba(201,168,76,0.5);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--cinza-escuro); }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  background: var(--verde-escuro);
  color: var(--branco);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px;
  border-radius: 2px;
  border: 1px solid var(--verde-medio);
  transition: background 0.3s, border-color 0.3s;
  width: 100%;
}
.btn-submit:hover {
  background: var(--dourado);
  color: var(--preto);
  border-color: var(--dourado);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bege-claro);
  padding: 60px 0 22px;
  border-top: 1px solid rgba(201,168,76,0.1);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;

}
.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 300;
  color: var(--cinza-escuro);
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--dourado); }
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  color: var(--cinza-escuro);
  line-height: 1.8;
  max-width: 260px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-crm {
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--cinza-escuro);
  margin-top: 12px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--dourado);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a {
  font-size: 13px;
  font-weight: 300;
  color: var(--cinza-escuro);
  transition: color 0.3s;
}
.footer-col li a:hover { color: var(--branco); }

.footer-bottom {
  border-top: 1px solid rgba(27,67,50,0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 11px;
  color: var(--verde-escuro);
  font-weight: 300;
}

/* Botão WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  z-index: 500;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.4);
}
.whatsapp-float svg { width: 26px; height: 26px; fill: white; }

/* ========================================
   RESPONSIVE — BLOCO CONSOLIDADO
   Ordem: 1024 → 767 → 640 → 480 → 1440+
   ======================================== */

/* ---- TABLET / COLAPSO 2-COL (≤1024px) ---- */
@media (max-width: 1024px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-right .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  /* Layouts 2-col → 1-col */
  .sobre-inner,
  .abordagem-inner,
  .programa-inner,
  .contato-inner { grid-template-columns: 1fr; }

  .imunidade-inner { grid-template-columns: 1fr; }
  .especialidades-grid { grid-template-columns: repeat(2, 1fr); }

  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .cursos-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  .cta-verde-inner { grid-template-columns: 1fr; text-align: center; }

  .sobre-photo-wrap { max-width: 440px; }
}

/* ---- MOBILE-LG + TABLET RETRATO (≤1024px) ---- */
@media (max-width: 1024px) {
  /* Nav — cancelar o translateX que existe no desktop, ajustar logo */
  .nav-inner { transform: none; gap: 12px; }
  .nav-logo { font-size: clamp(12px, 3.8vw, 16px); }

  /* Hero */
  .hero { min-height: 100svh; }
  .hero-photo-left,
  .hero-photo-right { display: none; }
  .hero-photo {
    left: -35px;
    right: 0;
    transform: translateY(-220px);
    width: 100%;
    height: 71%;
    margin: 0;
    object-position: center top;
  }
  /* Esconder indicador de scroll */
  .hero-scroll { display: none; }

  .hero-content{
    top: -10%;
  }

  /* Sobre */
  .sobre-photo-wrap { max-width: 100%; }
  .sobre-photo-frame { aspect-ratio: 4/3; }

  /* Abordagem */
  .abordagem-inner { gap: 28px; }
  .abordagem-photo-grid { height: 280px; grid-template-rows: 132px 132px; }
  .abordagem-visual { transform: none; margin-top: 40px; }

  /* Programa */
  .programa-inner { gap: 28px; }
  .programa-photos { height: clamp(380px, 100vw, 480px); }
  .programa-photo-main img,
  .programa-photo-sec img { object-position: center 18%; }

  /* Contato — ocultar foto lateral */
  .contato-photo { display: none; }

  /* Blog */
  .blog-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 28px;
  }
  .blog-grid { grid-template-columns: 1fr; gap: 16px; }

  /* CTA verde */
  .cta-verde-inner { gap: 28px; }
  .btn-gold { width: 100%; justify-content: center; }

  /* SOBRE — centralizar toggle formação e botão agendar */
  .sobre-text { text-align: center; }
  .sobre-text .gold-line.left { margin: 20px auto; }
  .sobre-text .formacao-toggle { justify-content: center; }
  .sobre-text .btn-primary { display: inline-flex; }
  .sobre-stats { justify-content: center; }

  /* ESPECIALIDADES — centralizar gold-line e botão */
  .imunidade-intro { text-align: center; }
  .imunidade-intro .gold-line.left { margin: 28px auto; }
  .imunidade-intro .btn-primary { display: inline-flex; }
  .imunidade-intro .section-label { text-align: center; }

  /* ABORDAGEM — centralizar botão entre em contato */
  .abordagem-text { text-align: center; }
  .abordagem-text .gold-line.left { margin: 20px auto; }
  .abordagem-text .locais { justify-content: center; }
  .abordagem-text .btn-primary { display: inline-flex; }

  /* PROGRAMA — centralizar botão quero saber mais */
  .programa-text { text-align: center; }
  .programa-text .gold-line.left { margin: 20px auto; }
  .programa-text .btn-primary { display: inline-flex; }
}

/* ---- MOBILE-SM (≤640px) ---- */
@media (max-width: 640px) {
  /* Procedimentos */
  .proc-grid { grid-template-columns: 1fr; }
  .proc-card--full {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 24px 20px;
  }
  .proc-card--full .proc-arrow { margin-left: 0; position: static; opacity: 1; transform: none; }
  .proc-card--full .proc-name,
  .proc-card--full .proc-desc { min-width: 0; }
  .procedimentos-header { margin-bottom: 36px; }

  /* Cursos */
  .cursos-grid { grid-template-columns: 1fr; }
  .cursos-cta { flex-direction: column; gap: 16px; padding: 20px; }

  /* Form */
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }

  /* Abordagem */
  .abordagem-photo-grid { height: 260px; grid-template-rows: 122px 122px; }
}

/* ---- MOBILE-XS (≤480px) ---- */
@media (max-width: 480px) {
  /* WhatsApp float — afastar das bordas em telas pequenas */
  .whatsapp-float { bottom: 16px; right: 16px; }

  /* Stats Sobre — 3 colunas fica apertado em 360px */
  .sobre-stats { grid-template-columns: 1fr; }

  /* Hero */
  .hero-name { font-size: clamp(36px, 11vw, 54px); }
  .hero-tagline { letter-spacing: 0.14em; }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 0 20px;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; }
  .hero-logo { width: clamp(150px, 58vw, 260px); }

  /* Especialidades */
  .imunidade-inner { gap: 32px; }
  .especialidades-grid { grid-template-columns: 1fr; }
  .esp-item { padding: 20px 16px; gap: 14px; }
  .imunidade-intro h2 { font-size: clamp(32px, 9vw, 48px); }

  /* Cursos */
  .curso-card-header { min-height: 130px; padding: 18px 16px 14px; }
  .curso-card-body { padding: 16px; }
  .curso-card-footer { padding: 0 16px 16px; }
  .cursos-header { margin-bottom: 32px; }

  /* Footer brand */
  .footer-brand { align-items: flex-start; text-align: left; }
}

/* ---- ULTRA-WIDE (≥1440px) ---- */
@media (min-width: 1440px) {
  .hero-photo { width: clamp(500px, 34vw, 760px); }
  .hero-photo-left,
  .hero-photo-right { width: clamp(240px, 17vw, 360px); }
}

/* ========================================
   GSAP ANIMATION STATES (initial)
   ======================================== */
.hero-monogram,
.hero-eyebrow,
.hero-name,
.hero-tagline,
.hero-logo,
.hero-crm,
.hero-actions,
.hero-scroll { opacity: 0; }

/* ========================================
   ESPECIALIDADES — frase intro sem números
   ======================================== */
.imunidade-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.esp-intro-wrap {
  padding: 0 0 12px;
}
.esp-intro {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dourado);
}

/* ========================================
   SOGIAH — Mapa Imunometabólico
   ======================================== */
.sogiah-block {
  margin: 24px 0 32px;
  padding: 28px 32px;
  border-left: 2px solid rgba(201,168,76,0.35);
  background: rgba(27,67,50,0.06);
  border-radius: 0 3px 3px 0;
}
.sogiah-intro,
.sogiah-desc {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 300;
  line-height: 1.82;
  color: var(--cinza-escuro);
  margin-bottom: 14px;
}
.sogiah-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sogiah-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.sogiah-letter {
  font-family: var(--font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 400;
  color: var(--verde-escuro);
  line-height: 1;
  min-width: 22px;
  flex-shrink: 0;
}
.sogiah-text {
  font-size: clamp(13px, 0.95vw, 14px);
  font-weight: 300;
  color: var(--cinza-escuro);
  line-height: 1.6;
}
.sogiah-text strong {
  font-weight: 600;
  color: var(--cinza-escuro);
}

@media (max-width: 640px) {
  .sogiah-block { padding: 20px 18px; }
  .sogiah-letter { font-size: 22px; }
}
