/* ================================================
   CLÍNICA VITTALE — Design System
   Paleta extraída dos logotipos oficiais
   ================================================ */

/* ── FONTES CUSTOMIZADAS ── */
@font-face {
  font-family: 'Cromaq';
  src: url('../fonts/Cromaq.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../fonts/Montserrat-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── TOKENS ── */
:root {
  /* Brand */
  --verde:        #1E4840;
  --verde-escuro: #152E28;
  --verde-hover:  #163A32;
  --salvia:       #6B8A6E;
  --salvia-claro: #8AAB8D;
  --ouro:         #C4A870;
  --ouro-claro:   #D4BC88;
  --ouro-suave:   rgba(196,168,112,.12);
  --creme:        #EDE3D4;
  --creme-claro:  #F5F5F4;
  --branco:       #FFFFFF;
  --off-white:    #F7F8F7;

  /* Texto */
  --t1: #1A2E28;
  --t2: #3D5A52;
  --t3: #6B8A7A;
  --t4: #9AB0A8;

  /* Bordas */
  --borda:        #D4D8D4;
  --borda-suave:  #E8EAE8;

  /* Fontes */
  --f-display: 'Cromaq', 'Playfair Display', Georgia, serif;
  --f-corpo:   'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Espaçamentos */
  --s1:  0.25rem;
  --s2:  0.5rem;
  --s3:  0.75rem;
  --s4:  1rem;
  --s5:  1.25rem;
  --s6:  1.5rem;
  --s8:  2rem;
  --s10: 2.5rem;
  --s12: 3rem;
  --s16: 4rem;
  --s20: 5rem;
  --s24: 6rem;
  --s32: 8rem;

  /* Raios */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-2xl:  32px;
  --r-full: 9999px;

  /* Sombras */
  --sh-sm: 0 1px 4px rgba(26,46,40,.06);
  --sh-md: 0 4px 20px rgba(26,46,40,.08), 0 1px 4px rgba(26,46,40,.04);
  --sh-lg: 0 12px 40px rgba(26,46,40,.12), 0 4px 12px rgba(26,46,40,.06);
  --sh-xl: 0 24px 64px rgba(26,46,40,.16);

  /* Transições */
  --t-fast:   150ms ease;
  --t-normal: 260ms ease;
  --t-slow:   400ms ease;

  /* Container */
  --max-w: 1200px;
  --gutter: clamp(1rem, 4vw, 1.5rem);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-corpo);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--t1);
  background: var(--branco);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── LAYOUT ── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section         { padding: var(--s24) 0; }
.section--sm     { padding: var(--s16) 0; }
.section--lg     { padding: var(--s32) 0; }

.section--branco { background: var(--branco); }
.section--off    { background: var(--off-white); }
.section--creme  { background: var(--creme-claro); }
.section--verde  { background: var(--verde); }
.section--salvia { background: var(--salvia); }
.section--escuro { background: var(--verde-escuro); }

/* ── TIPOGRAFIA ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--f-display); font-weight: 400; line-height: 1.2; }
h1 { font-size: clamp(2.25rem,5.5vw,4rem); }
h2 { font-size: clamp(1.75rem,3.5vw,2.75rem); }
h3 { font-size: clamp(1.25rem,2vw,1.625rem); }
h4 { font-size: 1.125rem; }
p  { line-height: 1.75; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--f-corpo);
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: var(--s3);
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ouro);
}
.eyebrow--verde  { color: var(--verde); }
.eyebrow--verde::before { background: var(--verde); }
.eyebrow--creme  { color: var(--creme); }
.eyebrow--creme::before { background: var(--creme); }

.section-title {
  font-family: var(--f-display);
  font-size: clamp(1.875rem,4vw,2.875rem);
  line-height: 1.2;
  color: var(--t1);
  margin-bottom: var(--s6);
}
.section-title--branco { color: var(--branco); }
.section-title--creme  { color: var(--creme); }
.section-sub {
  font-size: 1.0625rem;
  color: var(--t2);
  line-height: 1.75;
  max-width: 580px;
}
.section-sub--branco { color: rgba(255,255,255,.75); max-width: 560px; }

/* ── BOTÕES ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: .9rem 2rem;
  font-family: var(--f-corpo);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--t-normal);
  white-space: nowrap;
  min-height: 48px;
}
.btn--lg { padding: 1.1rem 2.5rem; font-size: .875rem; min-height: 56px; }
.btn--sm { padding: .65rem 1.4rem; font-size: .75rem; min-height: 40px; }

.btn--primario {
  background: var(--verde);
  color: var(--branco);
  border-color: var(--verde);
}
.btn--primario:hover {
  background: var(--verde-hover);
  border-color: var(--verde-hover);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn--ouro {
  background: var(--ouro);
  color: var(--verde-escuro);
  border-color: var(--ouro);
  font-weight: 700;
}
.btn--ouro:hover {
  background: var(--ouro-claro);
  border-color: var(--ouro-claro);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,168,112,.35);
}
.btn--outline {
  background: transparent;
  color: var(--verde);
  border-color: var(--verde);
}
.btn--outline:hover {
  background: var(--verde);
  color: var(--branco);
  transform: translateY(-1px);
}
.btn--outline-branco {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-branco:hover {
  background: var(--branco);
  color: var(--verde);
  border-color: var(--branco);
}
.btn--outline-creme {
  background: transparent;
  color: var(--creme);
  border-color: rgba(237,227,212,.45);
}
.btn--outline-creme:hover {
  background: var(--creme);
  color: var(--verde);
  border-color: var(--creme);
}

/* ── NAVEGAÇÃO ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--s5) 0;
  transition: background var(--t-normal), box-shadow var(--t-normal), padding var(--t-normal);
}
.nav.is-scrolled, .nav.nav--solid {
  background: var(--branco);
  box-shadow: 0 1px 0 var(--borda-suave), var(--sh-sm);
  padding: var(--s3) 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
}
.nav-logo { flex-shrink: 0; }
.nav-logo img {
  height: 50px;
  width: auto;
  transition: opacity var(--t-fast);
}
.nav-logo .logo-light { display: none; }
.nav-logo .logo-dark  { display: block; }

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--s6);
}
.nav-links a {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  position: relative;
  transition: color var(--t-fast);
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--ouro);
  transition: width var(--t-normal);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav.is-scrolled .nav-links a,
.nav.nav--solid  .nav-links a { color: var(--t1); }
.nav.is-scrolled .nav-links a::after,
.nav.nav--solid  .nav-links a::after { background: var(--verde); }
.nav-links a:hover { color: var(--ouro); }
.nav.is-scrolled .nav-links a:hover,
.nav.nav--solid  .nav-links a:hover  { color: var(--verde); }

/* Dropdown */
.nav-drop { position: relative; }
.nav-drop-toggle {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.9);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--t-fast);
  padding: 0;
  padding-bottom: 2px;
  position: relative;
}
.nav-drop-toggle::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--ouro);
  transition: width var(--t-normal);
}
.nav-drop:hover .nav-drop-toggle::after { width: 100%; }
.nav.is-scrolled .nav-drop-toggle,
.nav.nav--solid  .nav-drop-toggle { color: var(--t1); }
.nav.is-scrolled .nav-drop-toggle::after,
.nav.nav--solid  .nav-drop-toggle::after { background: var(--verde); }
.nav-drop-toggle:hover { color: var(--ouro); }
.nav.is-scrolled .nav-drop-toggle:hover,
.nav.nav--solid  .nav-drop-toggle:hover { color: var(--verde); }
.nav-drop-caret {
  width: 13px; height: 13px;
  transition: transform var(--t-fast);
}
.nav-drop:hover .nav-drop-caret { transform: rotate(180deg); }

.nav-drop-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--branco);
  border-radius: var(--r-lg);
  box-shadow: var(--sh-lg);
  border: 1px solid var(--borda-suave);
  padding: var(--s3);
  min-width: 300px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-normal);
  pointer-events: none;
}
.nav-drop-menu::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}
.nav-drop:hover .nav-drop-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
.nav-drop-menu a {
  display: block;
  padding: var(--s2) var(--s3);
  font-size: .8rem;
  font-weight: 500;
  color: var(--t2) !important;
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  letter-spacing: 0;
}
.nav-drop-menu a::after { display: none !important; }
.nav-drop-menu a:hover {
  background: var(--creme-claro);
  color: var(--verde) !important;
  padding-left: var(--s4);
}

.nav-cta { display: none; flex-shrink: 0; }
.nav.is-scrolled .nav-cta--outline-white,
.nav.nav--solid  .nav-cta--outline-white {
  color: var(--verde);
  border-color: var(--verde);
}
.nav.is-scrolled .nav-cta--outline-white:hover,
.nav.nav--solid  .nav-cta--outline-white:hover {
  background: var(--verde);
  color: var(--branco);
}

/* Hamburger */
.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--s2);
  cursor: pointer;
  background: none;
  border: none;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: all var(--t-normal);
}
.nav.is-scrolled .nav-burger span,
.nav.nav--solid  .nav-burger span { background: var(--t1); }
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--branco);
  z-index: 99;
  flex-direction: column;
  padding: 5rem var(--gutter) var(--s8);
  overflow-y: auto;
}
.nav-mobile.is-open { display: flex; }
.nav-mobile-links {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.nav-mobile-links > a {
  display: block;
  padding: var(--s4) 0;
  font-family: var(--f-display);
  font-size: 1.5rem;
  color: var(--t1);
  border-bottom: 1px solid var(--borda-suave);
  transition: color var(--t-fast);
}
.nav-mobile-links > a:hover { color: var(--verde); }
.nav-mobile-sub {
  padding: var(--s3) 0 var(--s4) var(--s4);
  border-bottom: 1px solid var(--borda-suave);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s1);
}
.nav-mobile-sub a {
  display: block;
  padding: var(--s2) 0;
  font-family: var(--f-corpo);
  font-size: .875rem;
  color: var(--t3);
  transition: color var(--t-fast);
}
.nav-mobile-sub a:hover { color: var(--verde); }
.nav-mobile-actions {
  margin-top: var(--s8);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.nav-mobile-contacts {
  margin-top: var(--s6);
  padding-top: var(--s6);
  border-top: 1px solid var(--borda-suave);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}
.nav-mobile-contacts a {
  display: flex;
  align-items: center;
  gap: var(--s3);
  font-size: .9rem;
  color: var(--t2);
}
.nav-mobile-contacts a svg { color: var(--verde); flex-shrink: 0; }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta   { display: inline-flex; }
  .nav-burger { display: none; }
}

/* ══════════════════════════════════════════
   HERO V2 — Medidental-inspired
   Imagem integrada à direita, fundo claro, editorial
══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  max-height: 960px;
  background: #F5F4F2;
  overflow: hidden;
}

/* ── Imagem da pessoa: fora das colunas, posicionada à direita ── */
.hero-person {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 64%;
  pointer-events: none;
  z-index: 1;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 15%, black 32%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.5) 15%, black 32%, black 100%);
}
.hero-person img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: right center;
  display: block;
}

/* ── Slides wrapper ── */
.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 2;
}

/* ── Slide individual ── */
.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .7s ease, visibility 0s linear .7s;
}
.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity .7s ease, visibility 0s linear 0s;
}

/* ── Conteúdo de texto ── */
.hero-content {
  position: relative;
  padding-top: calc(76px + var(--s10));
  padding-bottom: var(--s10);
  padding-left: max(var(--gutter), calc((100vw - 1240px) / 2 + var(--gutter)));
  padding-right: var(--s8);
  width: clamp(300px, 50vw, 760px);
}

/* ── Animações por slide ── */
.hero-slide .hero-eyebrow,
.hero-slide .hero-title,
.hero-slide .hero-text,
.hero-slide .hero-actions {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .45s ease, transform .45s ease;
}
.hero-slide.is-active .hero-eyebrow { opacity:1; transform:none; transition-delay:.12s; }
.hero-slide.is-active .hero-title   { opacity:1; transform:none; transition-delay:.24s; }
.hero-slide.is-active .hero-text    { opacity:1; transform:none; transition-delay:.36s; }
.hero-slide.is-active .hero-actions { opacity:1; transform:none; transition-delay:.48s; }

/* ── Tipografia do hero ── */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-family: var(--f-corpo);
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: var(--s4);
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ouro);
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--f-display);
  font-size: clamp(1.875rem, 2.8vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--t1);
  margin-bottom: var(--s4);
}
.hero-title em {
  font-style: normal;
  color: var(--verde);
}

.hero-text {
  font-size: .9rem;
  line-height: 1.75;
  color: var(--t2);
  margin-bottom: var(--s10);
  max-width: 360px;
}

.hero-actions {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--s3);
  align-items: center;
}
@media (max-width: 400px) {
  .hero-actions { flex-wrap: wrap; }
}

/* ── Botão WhatsApp ── */
.btn--wa {
  background: #1aab57;
  color: var(--branco);
  border-color: #1aab57;
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
}
.btn--wa:hover {
  background: #148f48;
  border-color: #148f48;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26,171,87,.28);
}

/* ── Botão ghost (fundo claro) ── */
.btn--ghost {
  background: transparent;
  color: var(--t1);
  border-color: rgba(0,0,0,.18);
}
.btn--ghost:hover {
  border-color: var(--verde);
  color: var(--verde);
  background: transparent;
}

/* ── Barra de navegação ── */
.hero-nav-bar {
  position: absolute;
  bottom: var(--s8);
  left: max(var(--gutter), calc((100vw - 1240px) / 2 + var(--gutter)));
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.hero-btn {
  width: 40px; height: 40px;
  border-radius: var(--r-full);
  border: 1.5px solid rgba(0,0,0,.15);
  background: rgba(255,255,255,.7);
  color: var(--t1);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--t-normal);
  flex-shrink: 0;
  backdrop-filter: blur(4px);
}
.hero-btn:hover {
  border-color: var(--verde);
  background: var(--verde);
  color: var(--branco);
}

.hero-counter {
  display: flex;
  align-items: baseline;
  gap: 3px;
  font-size: .6875rem;
  font-weight: 500;
  color: var(--t3);
  letter-spacing: .04em;
  min-width: 48px;
}
.hero-cur {
  font-family: var(--f-display);
  font-size: 1.125rem;
  color: var(--verde);
  line-height: 1;
}
.hero-sep { color: var(--borda); }

/* ── Scroll indicator ── */
.hero-scroll-cue {
  margin-left: var(--s5);
  font-size: .5625rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--t3);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--s2);
  transition: color var(--t-fast);
}
.hero-scroll-cue:hover { color: var(--verde); }
.hero-scroll-cue svg { animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(4px); }
}
@media (max-width: 767px) { .hero-scroll-cue { display: none; } }

/* ── Dots ── */
.hero-dots {
  position: absolute;
  right: max(var(--gutter), calc((100vw - 1240px) / 2 + var(--gutter)));
  bottom: var(--s8);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}
@media (max-width: 767px) {
  .hero-dots {
    right: auto; left: 50%;
    top: auto; bottom: var(--s6);
    transform: translateX(-50%);
    flex-direction: row;
  }
}
.hero-dot {
  width: 5px; height: 5px;
  border-radius: var(--r-full);
  background: rgba(0,0,0,.15);
  border: none;
  cursor: pointer;
  transition: all var(--t-normal);
  padding: 0;
}
.hero-dot.is-active {
  background: var(--verde);
  height: 20px;
  border-radius: 3px;
}
@media (max-width: 767px) {
  .hero-dot.is-active { height: 5px; width: 20px; border-radius: 3px; }
}

/* ── Mobile ── */
@media (max-width: 767px) {
  .hero-person {
    width: 100%;
    opacity: .22;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-content {
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(1.75rem, 5.5vw, 2.25rem);
  }
}

/* ── BARRA DE CONFIANÇA ── */
.trust-bar {
  padding: var(--s8) 0;
  background: var(--branco);
  border-top: 1px solid var(--borda-suave);
  border-bottom: 1px solid var(--borda-suave);
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--s6) var(--s12);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
}
.trust-icon {
  width: 40px; height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ouro);
  flex-shrink: 0;
}
.trust-val {
  display: block;
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--verde);
  line-height: 1;
  margin-bottom: 2px;
}
.trust-lbl {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--t3);
}

/* ── SOBRE (HOME) ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  align-items: center;
}
@media (min-width: 768px) {
  .about-grid { grid-template-columns: 1fr 1fr; gap: var(--s16); }
  .about-grid.reverse > *:first-child { order: 2; }
  .about-grid.reverse > *:last-child  { order: 1; }
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  border-radius: var(--r-2xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--creme);
}
.about-img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.about-img-wrap:hover .about-img-main img { transform: scale(1.03); }
.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--verde);
  border-radius: var(--r-xl);
  padding: var(--s5) var(--s6);
  text-align: center;
  box-shadow: var(--sh-lg);
  min-width: 120px;
}
.about-badge-val {
  display: block;
  font-family: var(--f-display);
  font-size: 2.25rem;
  color: var(--ouro);
  line-height: 1;
}
.about-badge-lbl {
  font-size: .6875rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: rgba(255,255,255,.65);
  margin-top: var(--s1);
}
.about-body { display: flex; flex-direction: column; gap: var(--s5); }
.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-top: var(--s4);
}
.pillar {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
}
.pillar-icon {
  width: 36px; height: 36px;
  background: var(--creme-claro);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
  flex-shrink: 0;
}
.pillar h4 {
  font-family: var(--f-corpo);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: 2px;
}
.pillar p {
  font-size: .75rem;
  color: var(--t3);
  line-height: 1.5;
}

/* ── SERVIÇOS (CARDS) ── */
.services-head { text-align: center; margin-bottom: var(--s12); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media (min-width: 480px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.srv-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border-radius: var(--r-xl);
  border: 1px solid var(--borda-suave);
  background: var(--branco);
  position: relative;
  overflow: hidden;
  transition: all var(--t-normal);
  cursor: pointer;
}
.srv-card:hover {
  box-shadow: var(--sh-lg);
  transform: translateY(-4px);
  border-color: var(--borda-suave);
}

/* Image header */
.srv-card-img {
  height: 195px;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
  background: var(--creme);
}
.srv-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.srv-card:hover .srv-card-img img { transform: scale(1.06); }
.srv-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(21,46,40,.28) 100%);
  transition: opacity var(--t-normal);
}

/* Card body */
.srv-card-body {
  padding: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  flex: 1;
}

.srv-icon { display: none; }

.srv-title {
  font-family: var(--f-display);
  font-size: 1.125rem;
  color: var(--t1);
  line-height: 1.3;
}
.srv-text {
  font-size: .875rem;
  color: var(--t3);
  line-height: 1.65;
  flex: 1;
}
.srv-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--verde);
  transition: gap var(--t-fast);
  padding-top: var(--s2);
  border-top: 1px solid var(--borda-suave);
  margin-top: auto;
}
.srv-link svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.srv-card:hover .srv-link { gap: var(--s3); color: var(--ouro); }
.srv-card:hover .srv-link svg { transform: translateX(4px); }
.services-more { text-align: center; margin-top: var(--s12); }

/* ── PORQUÊ ESCOLHER ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }
.why-card {
  padding: var(--s8) var(--s6);
  border-radius: var(--r-xl);
  background: var(--branco);
  border: 1px solid var(--borda-suave);
  transition: all var(--t-normal);
}
.why-card:hover {
  border-color: var(--verde);
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.why-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--creme-claro);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--verde);
  margin-bottom: var(--s5);
  transition: all var(--t-normal);
}
.why-card:hover .why-icon {
  background: var(--verde);
  color: var(--ouro);
}
.why-card h3 {
  font-family: var(--f-display);
  font-size: 1.125rem;
  color: var(--t1);
  margin-bottom: var(--s3);
}
.why-card p {
  font-size: .875rem;
  color: var(--t3);
  line-height: 1.65;
}

/* ── EQUIPA ── */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s8);
}
@media (min-width: 480px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
.team-card { text-align: center; }
.team-photo {
  aspect-ratio: 3/4;
  border-radius: var(--r-2xl);
  overflow: hidden;
  margin-bottom: var(--s5);
  background: var(--creme);
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform var(--t-slow);
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-name {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--t1);
  margin-bottom: 4px;
}
.team-role {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--verde);
  margin-bottom: var(--s3);
}
.team-bio {
  font-size: .875rem;
  color: var(--t3);
  line-height: 1.65;
}

/* ── CTA BANNER ── */
.cta-banner {
  padding: var(--s20) 0;
  background: var(--verde);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(196,168,112,.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(107,138,110,.07) 0%, transparent 55%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 {
  font-family: var(--f-display);
  font-size: clamp(2rem,4vw,3rem);
  color: var(--branco);
  margin-bottom: var(--s4);
}
.cta-banner p {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.72);
  max-width: 460px;
  margin: 0 auto var(--s10);
  line-height: 1.75;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s4);
  justify-content: center;
}

/* ── CONTACTOS ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.6fr; gap: var(--s16); align-items: start; }
}
.contact-info { display: flex; flex-direction: column; gap: var(--s6); }
.contact-item { display: flex; gap: var(--s4); align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: var(--creme-claro);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--verde);
  flex-shrink: 0;
}
.contact-lbl {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: 3px;
}
.contact-val {
  font-size: .9375rem;
  color: var(--t1);
  line-height: 1.5;
}
.contact-val a {
  color: var(--verde);
  transition: color var(--t-fast);
}
.contact-val a:hover { color: var(--ouro); }

.schedule-title {
  font-size: .625rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: var(--s3);
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--borda-suave);
  font-size: .875rem;
}
.schedule-row:last-child { border-bottom: none; }
.schedule-day { color: var(--t2); }
.schedule-time { color: var(--verde); font-weight: 600; }

/* Formulário de contacto */
.contact-form {
  background: var(--branco);
  border: 1px solid var(--borda-suave);
  border-radius: var(--r-2xl);
  padding: var(--s10);
  box-shadow: var(--sh-md);
}
.form-title {
  font-family: var(--f-display);
  font-size: 1.625rem;
  color: var(--t1);
  margin-bottom: var(--s6);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
}
@media (min-width: 480px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-group { display: flex; flex-direction: column; gap: var(--s2); }
.form-group--full { grid-column: 1 / -1; }
.form-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--t2);
}
.form-label span { color: var(--ouro); margin-left: 2px; }
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: .875rem 1rem;
  font-family: var(--f-corpo);
  font-size: .9375rem;
  color: var(--t1);
  background: var(--creme-claro);
  border: 1.5px solid var(--borda-suave);
  border-radius: var(--r-md);
  outline: none;
  transition: all var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--verde);
  background: var(--branco);
  box-shadow: 0 0 0 3px rgba(30,72,64,.08);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--t4); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233D5A52' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 15px;
  cursor: pointer;
}
.form-note {
  font-size: .75rem;
  color: var(--t4);
  margin-top: var(--s2);
}
.form-submit { margin-top: var(--s3); width: 100%; }

/* Mapa */
.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  margin-top: var(--s6);
  border: 1px solid var(--borda-suave);
  background: var(--creme-claro);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t3);
  font-size: .875rem;
  text-align: center;
  flex-direction: column;
  gap: var(--s2);
}
.map-wrap svg { color: var(--verde); opacity: .4; }

/* ── RODAPÉ ── */
.footer {
  background: var(--verde-escuro);
  color: rgba(255,255,255,.65);
  padding: var(--s20) 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s12);
  padding-bottom: var(--s16);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (min-width: 640px)  { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: var(--s8); } }

.footer-brand { display: flex; flex-direction: column; gap: var(--s5); }
.footer-logo { height: auto; width: 180px; max-width: 100%; display: block; }
.footer-desc {
  font-size: .875rem;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  max-width: 280px;
}
.footer-social { display: flex; gap: var(--s3); }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: all var(--t-fast);
}
.footer-social a:hover {
  background: rgba(196,168,112,.18);
  border-color: var(--ouro);
  color: var(--ouro);
}
.footer-col h4 {
  font-family: var(--f-corpo);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: var(--s5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--s3); }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast);
}
.footer-links a:hover { color: rgba(255,255,255,.9); }
.footer-contact-item {
  display: flex;
  gap: var(--s3);
  margin-bottom: var(--s4);
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  align-items: flex-start;
}
.footer-contact-item svg { color: var(--ouro); flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  padding: var(--s5) 0;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  text-align: center;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
}
.footer-legal {
  display: flex;
  gap: var(--s5);
}
.footer-legal a {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  transition: color var(--t-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,.6); }

/* ── CABEÇALHO DE PÁGINA (inner pages) ── */
.page-header {
  background: var(--verde-escuro);
  background-image: url('https://images.unsplash.com/photo-1629909615184-74f495363b67?auto=format&fit=crop&w=1600&h=600&q=70');
  background-size: cover;
  background-position: center 30%;
  padding: calc(var(--s32) + var(--s6)) 0 var(--s20);
  position: relative;
  overflow: hidden;
  border-bottom: none;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  width: auto; height: auto;
  background: linear-gradient(110deg, rgba(21,46,40,.93) 0%, rgba(21,46,40,.68) 55%, rgba(21,46,40,.85) 100%);
}
.page-header::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--ouro), var(--verde), transparent);
  pointer-events: none;
}
.page-header-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--s2);
  margin-bottom: var(--s5);
  font-size: .75rem;
  flex-wrap: wrap;
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--branco); }
.breadcrumb span { color: var(--ouro); font-weight: 600; }
.breadcrumb-sep { color: rgba(255,255,255,.25); }
.page-header h1 {
  font-family: var(--f-display);
  color: var(--branco);
  font-size: clamp(2rem,5vw,3.5rem);
  margin-bottom: var(--s4);
  max-width: 640px;
}
.page-header-sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.75);
  max-width: 540px;
  line-height: 1.75;
}

/* ── PÁGINA DE SERVIÇO ── */
.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s16);
  padding: var(--s20) 0;
}
@media (min-width: 1024px) {
  .service-layout { grid-template-columns: 1fr 360px; align-items: start; }
}
.service-body h2 {
  font-family: var(--f-display);
  font-size: clamp(1.5rem,3vw,2rem);
  color: var(--t1);
  margin: var(--s10) 0 var(--s4);
}
.service-body h2:first-child { margin-top: 0; }
.service-body p {
  font-size: 1rem;
  color: var(--t2);
  line-height: 1.8;
  margin-bottom: var(--s4);
}
.service-body ul {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  margin: var(--s4) 0;
}
.service-body li {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  font-size: .9375rem;
  color: var(--t2);
  line-height: 1.65;
}
.service-body li::before {
  content: '';
  display: block;
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
  background: var(--creme-claro);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231E4840' stroke-width='2.5'%3E%3Cpath d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
  background-size: 13px;
  background-position: center;
  background-repeat: no-repeat;
}
.service-img {
  width: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  margin: var(--s8) 0;
  aspect-ratio: 16/9;
  background: var(--creme);
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.sidebar { display: flex; flex-direction: column; gap: var(--s5); position: sticky; top: calc(76px + var(--s5)); }
.sidebar-card {
  border-radius: var(--r-xl);
  padding: var(--s8);
  border: 1px solid var(--borda-suave);
  background: var(--branco);
  box-shadow: var(--sh-sm);
}
.sidebar-card--verde {
  background: var(--verde);
  border-color: transparent;
}
.sidebar-cta-title {
  font-family: var(--f-display);
  font-size: 1.375rem;
  color: var(--branco);
  margin-bottom: var(--s3);
}
.sidebar-cta-text {
  font-size: .875rem;
  color: rgba(255,255,255,.68);
  line-height: 1.65;
  margin-bottom: var(--s6);
}
.sidebar-contact-head {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ouro);
  margin-bottom: var(--s4);
}
.sidebar-contact-item {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s3) 0;
  border-bottom: 1px solid var(--borda-suave);
  font-size: .875rem;
  color: var(--t2);
  transition: color var(--t-fast);
}
.sidebar-contact-item:last-child { border-bottom: none; }
.sidebar-contact-item:hover { color: var(--verde); cursor: pointer; }
.sidebar-contact-item svg { color: var(--verde); flex-shrink: 0; }
.other-services-title {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--t3);
  margin-bottom: var(--s4);
}
.other-services-links { display: flex; flex-direction: column; gap: var(--s1); }
.other-services-links a {
  display: flex;
  align-items: center;
  gap: var(--s3);
  padding: var(--s2) 0;
  font-size: .8125rem;
  color: var(--t2);
  border-bottom: 1px solid var(--borda-suave);
  transition: all var(--t-fast);
}
.other-services-links a:last-child { border-bottom: none; }
.other-services-links a:hover { color: var(--verde); padding-left: var(--s2); }
.other-services-links a svg { color: var(--ouro); flex-shrink: 0; }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: var(--s3); }
.faq-item {
  border: 1px solid var(--borda-suave);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
  padding: var(--s5) var(--s6);
  cursor: pointer;
  transition: background var(--t-fast);
}
.faq-q:hover { background: var(--creme-claro); }
.faq-q h4 {
  font-family: var(--f-corpo);
  font-size: .9375rem;
  font-weight: 600;
  color: var(--t1);
  flex: 1;
}
.faq-plus {
  width: 22px; height: 22px;
  color: var(--verde);
  flex-shrink: 0;
  transition: transform var(--t-normal);
}
.faq-item.open .faq-plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-normal), padding var(--t-normal);
}
.faq-item.open .faq-a { max-height: 400px; }
.faq-a-inner {
  padding: 0 var(--s6) var(--s5);
  border-top: 1px solid var(--borda-suave);
}
.faq-a-inner p {
  font-size: .9375rem;
  color: var(--t2);
  line-height: 1.75;
  padding-top: var(--s3);
}

/* ── PASSOS / PROCESSO ── */
.process-list {
  display: flex;
  flex-direction: column;
  position: relative;
}
.process-list::before {
  content: '';
  position: absolute;
  left: 22px; top: 44px; bottom: 44px;
  width: 1px;
  background: var(--borda);
}
.process-step {
  display: flex;
  gap: var(--s5);
  padding: var(--s5) 0;
}
.process-num {
  width: 44px; height: 44px;
  background: var(--verde);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-size: 1rem;
  color: var(--ouro);
  flex-shrink: 0;
  z-index: 1;
}
.process-step h3 {
  font-family: var(--f-corpo);
  font-size: 1rem;
  font-weight: 700;
  color: var(--t1);
  margin-bottom: var(--s2);
  padding-top: var(--s3);
}
.process-step p {
  font-size: .875rem;
  color: var(--t3);
  line-height: 1.65;
}

/* ── PÁGINA CLÍNICA ── */
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media (min-width: 640px)  { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(3, 1fr); } }
.value-card {
  padding: var(--s8);
  border-radius: var(--r-xl);
  background: var(--branco);
  border: 1px solid var(--borda-suave);
  transition: all var(--t-normal);
}
.value-card:hover {
  box-shadow: var(--sh-md);
  transform: translateY(-3px);
}
.value-num {
  font-family: var(--f-display);
  font-size: 3rem;
  color: #E2E5E2;
  line-height: 1;
  margin-bottom: var(--s4);
}
.value-card h3 {
  font-size: 1rem;
  font-weight: 400;
  color: var(--verde);
  margin-bottom: var(--s3);
}
.value-card p {
  font-size: .875rem;
  color: var(--t3);
  line-height: 1.65;
}

/* ── SERVIÇOS PAGE HERO CARDS ── */
.service-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s5);
}
@media (min-width: 640px)  { .service-cat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .service-cat-grid { grid-template-columns: repeat(3, 1fr); } }
.service-cat-card {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--verde);
  cursor: pointer;
  aspect-ratio: 4/3;
}
.service-cat-card img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .35;
  transition: all var(--t-slow);
}
.service-cat-card:hover img { opacity: .2; transform: scale(1.05); }
.service-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(21,46,40,.9) 0%, rgba(21,46,40,.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s8);
  transition: all var(--t-normal);
}
.service-cat-icon {
  width: 40px; height: 40px;
  color: var(--ouro);
  margin-bottom: var(--s3);
}
.service-cat-title {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--branco);
  line-height: 1.3;
  margin-bottom: var(--s2);
}
.service-cat-link {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ouro);
  opacity: 0;
  transform: translateY(6px);
  transition: all var(--t-normal);
}
.service-cat-card:hover .service-cat-link {
  opacity: 1;
  transform: translateY(0);
}

/* ── ANIMAÇÕES DE SCROLL ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.in-view { opacity: 1; transform: none; }

.fade-in {
  opacity: 0;
  transition: opacity .65s ease;
}
.fade-in.in-view { opacity: 1; }

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.stagger.in-view > *:nth-child(1)  { opacity:1;transform:none;transition-delay:  0ms }
.stagger.in-view > *:nth-child(2)  { opacity:1;transform:none;transition-delay: 80ms }
.stagger.in-view > *:nth-child(3)  { opacity:1;transform:none;transition-delay:160ms }
.stagger.in-view > *:nth-child(4)  { opacity:1;transform:none;transition-delay:240ms }
.stagger.in-view > *:nth-child(5)  { opacity:1;transform:none;transition-delay:320ms }
.stagger.in-view > *:nth-child(6)  { opacity:1;transform:none;transition-delay:400ms }
.stagger.in-view > *:nth-child(7)  { opacity:1;transform:none;transition-delay:480ms }
.stagger.in-view > *:nth-child(8)  { opacity:1;transform:none;transition-delay:560ms }
.stagger.in-view > *:nth-child(9)  { opacity:1;transform:none;transition-delay:640ms }
.stagger.in-view > *:nth-child(10) { opacity:1;transform:none;transition-delay:720ms }
.stagger.in-view > *:nth-child(11) { opacity:1;transform:none;transition-delay:800ms }
.stagger.in-view > *:nth-child(12) { opacity:1;transform:none;transition-delay:880ms }

/* ── BOTÕES FLUTUANTES ── */
.float-ctas {
  position: fixed;
  bottom: var(--s6);
  right: var(--s6);
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  z-index: 80;
}
.float-btn {
  width: 52px; height: 52px;
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh-lg);
  transition: all var(--t-normal);
  cursor: pointer;
  border: none;
}
.float-btn:hover { transform: scale(1.1); box-shadow: var(--sh-xl); }
.float-btn--wa  { background: #25D366; color: white; }
.float-btn--tel { background: var(--verde); color: white; }

/* ── UTILITÁRIOS ── */
.text-center { text-align: center; }
.text-ouro   { color: var(--ouro); }
.text-verde  { color: var(--verde); }
.text-muted  { color: var(--t3); }
.mt-4  { margin-top: var(--s4); }
.mt-6  { margin-top: var(--s6); }
.mt-8  { margin-top: var(--s8); }
.mt-12 { margin-top: var(--s12); }
.mb-4  { margin-bottom: var(--s4); }
.mb-6  { margin-bottom: var(--s6); }
.flex-center  { display:flex; align-items:center; justify-content:center; }
.gap-4 { gap: var(--s4); }

.divider {
  height: 1px;
  background: var(--borda-suave);
  margin: var(--s8) 0;
}
.divider--ouro {
  background: linear-gradient(to right, transparent, var(--ouro), transparent);
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s4);
  background: var(--verde);
  color: var(--branco);
  padding: var(--s2) var(--s4);
  border-radius: var(--r-md);
  font-size: .875rem;
  font-weight: 600;
  z-index: 999;
  transition: top var(--t-fast);
}
.skip-link:focus { top: var(--s4); }

/* ── INFO BOX ── */
.info-box {
  background: var(--creme-claro);
  border: 1px solid var(--borda-suave);
  border-left: 3px solid var(--ouro);
  border-radius: var(--r-md);
  padding: var(--s5) var(--s6);
  font-size: .875rem;
  color: var(--t2);
  line-height: 1.7;
}
.info-box strong { color: var(--verde); }

/* ── CHECKLIST DE INFORMAÇÕES NECESSÁRIAS ── */
.info-needed {
  background: var(--off-white);
  border-radius: var(--r-xl);
  padding: var(--s10);
  border: 1px solid var(--borda-suave);
}
.info-needed h2 {
  font-size: 1.5rem;
  color: var(--verde);
  margin-bottom: var(--s6);
}
.info-needed-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s2);
}
@media (min-width: 640px) { .info-needed-list { grid-template-columns: repeat(2, 1fr); } }
.info-needed-item {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  padding: var(--s3);
  border-radius: var(--r-md);
  border: 1px solid var(--borda-suave);
  background: var(--branco);
  font-size: .875rem;
  color: var(--t2);
}
.info-needed-item::before {
  content: '';
  display: block;
  width: 16px; height: 16px;
  border-radius: 50%;
  border: 1.5px solid var(--borda);
  flex-shrink: 0;
  margin-top: 1px;
}

/* ── STRIP DE FINANCIAMENTO ── */
.financing-strip {
  background: var(--verde);
  padding: var(--s5) 0;
}
.financing-strip-inner {
  display: flex;
  align-items: center;
  gap: var(--s5);
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 640px) {
  .financing-strip-inner { justify-content: space-between; }
}
.financing-strip-left {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex: 1;
}
.financing-strip-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--ouro);
  flex-shrink: 0;
}
.financing-strip-text strong {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: 2px;
}
.financing-strip-text span {
  font-size: .8125rem;
  color: rgba(255,255,255,.72);
  line-height: 1.4;
}

/* ── CARD FINANCIAMENTO (sidebar) ── */
.sidebar-card--financing {
  background: linear-gradient(135deg, rgba(196,168,112,.1) 0%, rgba(196,168,112,.05) 100%);
  border-color: rgba(196,168,112,.35) !important;
}
.financing-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  background: var(--ouro);
  color: var(--verde-escuro);
  border-radius: var(--r-full);
  padding: 4px var(--s3);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: var(--s4);
}
.financing-card-title {
  font-family: var(--f-display);
  font-size: 1.125rem;
  color: var(--t1);
  margin-bottom: var(--s3);
}
.financing-card-text {
  font-size: .8125rem;
  color: var(--t2);
  line-height: 1.65;
}

/* ── CALLOUT FINANCIAMENTO (contactos) ── */
.financing-callout {
  background: linear-gradient(135deg, var(--verde) 0%, var(--verde-hover) 100%);
  border-radius: var(--r-xl);
  padding: var(--s8);
  display: flex;
  gap: var(--s5);
  align-items: flex-start;
}
.financing-callout-icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.12);
  border-radius: var(--r-full);
  display: flex; align-items: center; justify-content: center;
  color: var(--ouro);
  flex-shrink: 0;
}
.financing-callout-body strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--branco);
  margin-bottom: var(--s2);
}
.financing-callout-body p {
  font-size: .875rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}
