/* =============================================
   VARIÁVEIS
============================================= */
:root {
  --verde: #203120;
  --ouro:  #AC9F43;
  --bege:  #F5F0E8;
}

/* =============================================
   BASE
============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Playfair Display', serif;
  background-color: var(--bege);
  color: var(--verde);
  overflow-x: hidden;
}

/* =============================================
   TIPOGRAFIA
============================================= */
h1, h2, h3, h4, h5, h6,
p, a, span, li, button, input, label {
  font-family: 'Playfair Display', serif;
}

.label-secao {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--ouro);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.label-secao::before { content: '—'; }

.titulo-secao { font-weight: 900; line-height: 1.05; margin-bottom: 1.2rem; }
.titulo-lg {
  font-size: clamp(2.2rem, 7vw, 3.8rem);
}
.titulo-md {
  font-size: clamp(1.8rem, 6vw, 3rem);
}

.cor-ouro  { color: var(--ouro);  }
.cor-verde { color: var(--verde); }
.cor-bege  { color: var(--bege);  }
.it        { font-style: italic;  }

.corpo-texto {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--verde);

}
.corpo-texto-bege {
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.85;
  color: var(--bege);
 
}

/* =============================================
   BOTÕES
============================================= */
.btn-verde {
  display: inline-block;
  background: var(--verde);
  color: var(--bege) !important;
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: 2px solid var(--verde);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-verde:hover { background: transparent; color: var(--verde) !important; }

.btn-ouro {
  display: inline-block;
  background: transparent;
  color: var(--ouro) !important;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 1000;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: 2px solid var(--ouro);
  transition: all 0.3s ease;
  cursor: pointer;
   font-style: bold;
}
.btn-ouro:hover { background: var(--ouro); color: var(--verde) !important; }

.btn-ouro-solid {
  display: inline-block;
  background: var(--ouro);
  color: var(--verde) !important;
  font-family: 'Playfair Display', serif;
  font-size: 0.85rem;
  font-weight: 1000;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  border: 2px solid var(--ouro);
  transition: all 0.3s ease;
  cursor: pointer;
 font-style: bold;
}
.btn-ouro-solid:hover { background: transparent; color: var(--ouro) !important; }

/* =============================================
   NAVBAR
============================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background 0.4s ease, padding 0.4s ease;
}

#navbar.nav-hero { background: #203120; }
#navbar.nav-hero .nav-link       { color: var(--bege) !important; }
#navbar.nav-hero .nav-link:hover { color: var(--bege) !important; }
#navbar.nav-hero .navbar-toggler-icon { filter: invert(1); }
#navbar.nav-hero .navbar-toggler      { border-color: rgba(245,240,232,0.4); }

#navbar.nav-escura {
  background: rgba(32,49,32,0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
#navbar.nav-escura .nav-link       { color: var(--bege) !important; }
#navbar.nav-escura .nav-link:hover { color: var(--bege) !important; }
#navbar.nav-escura .navbar-toggler-icon { filter: invert(1); }
#navbar.nav-escura .navbar-toggler      { border-color: rgba(245,240,232,0.4); }

#navbar.nav-clara {
  background: rgba(245,240,232,0.97);
  backdrop-filter: blur(12px);
  padding: 0.85rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
#navbar.nav-clara .nav-link       { color: var(--verde) !important; }
#navbar.nav-clara .nav-link:hover { color: var(--verde) !important; }

.nav-link {
  font-family: 'Playfair Display', serif !important;
  font-size: 0.7rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  padding: 0.3rem 1rem !important;
  transition: color 0.3s ease !important;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--ouro);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.nav-link:hover::after { transform: scaleX(1); }

.logo-svg { width: 46px; height: 32px; }

.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

.navbar-toggler:focus,
.navbar-toggler:active,
.navbar-toggler:focus-visible {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
}

/* =============================================
   HERO
============================================= */
#hero {
  min-height: 100vh;
  background-color: var(--verde);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to bottom, rgba(32,49,32,0.8) 0%, transparent 100%);
  z-index: 3;
  pointer-events: none;
}

.hero-conteudo {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(5rem, 10vh, 9rem);
  padding-bottom: clamp(2rem, 5vh, 5rem);
  
}

.hero-titulo {
   font-size: clamp(5.0rem, 10vw, 9rem); 
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--bege);
  margin-bottom: 2.5rem;
}

.hero-tagline {
  font-style: bold;
  font-size: 2.0rem;
  color: var(--bege);
  margin-bottom: 1.0 rem;
}

.hero-sub {
  font-size: clamp(0.85rem, 1.5vw, 1.2rem);
  font-weight: 400;
  color: #F5F0E8;;
  line-height: 1.7;
  margin-top: 1.0rem;
  margin-bottom: 1.0rem;
  font-style: italic;
  

}

.hero-img-col {
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
.hero-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5) saturate(0.7);
}


/* =============================================
   SEÇÕES
============================================= */
.secao-bege  { background: var(--bege);  }
.secao-verde { background: var(--verde); }
.secao-pad   { padding: 5rem 0; }

/* =============================================
   QUEM SOMOS
============================================= */
.subtitulo-quem {
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 2rem;
  color: var(--verde);
}
.subtitulo-quem::before { content: '—'; color: var(--ouro); flex-shrink: 0; }

.quem-foto {
  width: 100%;
  aspect-ratio: 5/4;
  object-fit: cover;
  border-radius: 8px;
}

/* =============================================
   SERVIÇOS
============================================= */
.servico-img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.servico-nome {
  margin-top: 0.8rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--bege);
  line-height: 1.4;
   text-align: center;
}
.servico-nome .dourado { color: var(--ouro); display: block; }

/* =============================================
   DETALHE SERVIÇO
============================================= */
.detalhe-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}

/* =============================================
   CLÍNICO 2x2
============================================= */
.clinico-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}
.clinico-leg {
  font-size: 1.0rem;
  font-weight: 400;
  color: var(--bege);
  text-align: center;
  margin-top: 0.4rem;
}

/* =============================================
   CURSOS
============================================= */
.curso-img {
  width: 100%;
  aspect-ratio: 6/3;
   max-width: 450px;
  object-fit: cover;
  border-radius: 8px;
}
.curso-leg {
  font-style: italic;
  font-size: 0.88rem;
  color: var(--ouro);
  margin-top: 0.4rem;
}

/* =============================================
   ESPECIALIDADES
============================================= */
.esp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}
.esp-circulo {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--bege);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.esp-circulo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.3);
}
.esp-circulo img { width: 100%; height: 100%; object-fit: contain; }
.esp-nome { font-size: 0.8rem; font-weight: 400; color: var(--bege); }
.esp-nome.em-ouro { color: var(--ouro); }

/* =============================================
   CONSULTÓRIOS
============================================= */
.consultorios-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 8px;
}
.consultorios-cta-txt {
  font-style: italic;
  font-size: 1.25rem;
  color: var(--verde);
  line-height: 1.5;
  margin-bottom: 2rem;
}

/* =============================================
   VENDAS
============================================= */
.vendas-desc {
  font-size: 0.95rem;
  font-weight: 400;
  color: rgba(245,240,232,0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
}

/* =============================================
   CONTATO
============================================= */
/* =============================================
   CONTATO
============================================= */
.contato-titulo {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ouro);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.contato-card {
  background: var(--verde);
  border: 1px solid rgba(172,159,67,0.2);
  border-radius: 8px;
  padding: 1.5rem;
  height: 100%;
}

.contato-card .contato-info {
  color: var(--bege);
}

.contato-card .contato-info a {
  color: var(--bege);
  text-decoration: none;
  transition: color 0.3s;
  word-break: break-all;
}

.contato-card .contato-info a:hover {
  color: var(--ouro);
}
/* =============================================
   DIVISOR
============================================= */
.divisor { width: 100%; height: 1px; background: rgba(172,159,67,0.2); }

/* =============================================
   FOOTER
============================================= */
footer {
  background: #141e14;
  padding: 1.8rem 0;
  border-top: 1px solid rgba(172,159,67,0.12);
}
.footer-logo { font-size: 1.1rem; font-weight: 900; color: var(--bege); }
.footer-logo span { color: var(--ouro); }
.footer-copy { font-size: 0.7rem; font-weight: 400; color: rgba(245,240,232,0.22); }

/* =============================================
   WHATSAPP FLUTUANTE
============================================= */
.wpp-float {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  z-index: 999;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.3s ease;
}
.wpp-float:hover { transform: scale(1.12); }
.wpp-float svg { width: 28px; height: 28px; fill: white; }

/* =============================================
   ANIMAÇÕES
============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }
.d5 { transition-delay: 0.5s; }