/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --verde: #1C3A35;
  --verde-claro: #2E5D55;
  --salmon: #ffffff;
  --cinza-fundo: #F5F5F5;
  --branco: #ffffff;
  --texto: #333333;
  --crm: #9E8A78;
  --ouro: #C9A96E;
  --nav-height: 64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--texto);
  padding-top: var(--nav-height);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   NAVEGAÇÃO
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--verde);
  height: var(--nav-height);
  box-shadow: 0 2px 12px rgba(0,0,0,0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo img { height: 36px; object-fit: contain; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  color: var(--branco);
  font-size: 1rem;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--branco);
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--branco);
  color: var(--verde);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 6px;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.nav-cta:hover { opacity: 0.9; }

/* Hamburguer */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  width: 36px;
  height: 36px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--branco);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================================
   SEÇÃO 1 — LOGO
   ============================================================ */
.sec-logo {
  background: var(--salmon);
  padding: 28px 24px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
}

.logo-wrap {
  display: flex;
  justify-content: center;
}

.logo-img {
  max-width: 320px;
  width: 100%;
  object-fit: contain;
}

/* Fallback logo (caso imagem não carregue) */
.logo-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.logo-monogram {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  color: var(--verde);
  line-height: 1;
  border: 3px solid var(--verde);
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.logo-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--verde);
  letter-spacing: 0.1em;
}

.logo-titulo {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  color: var(--verde);
  border-top: 1px solid var(--verde);
  border-bottom: 1px solid var(--verde);
  padding: 3px 0;
}

.logo-crm {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--crm);
}

/* ============================================================
   SEÇÃO 2 — HERO / FOTO
   ============================================================ */
.sec-hero {
  position: relative;
  background: var(--verde);
  min-height: 520px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

.sec-hero::before {
  display: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 600px;
}

.hero-foto {
  display: block;
  max-height: 520px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom;
  margin: 0 auto;
}

/* ============================================================
   SEÇÃO 3 — APRESENTAÇÃO
   ============================================================ */
.sec-apresentacao {
  background: var(--branco);
  padding: 64px 24px;
  text-align: center;
}

.apres-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.apres-nome {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 400;
  color: var(--verde);
  line-height: 1.2;
}

.apres-sub {
  font-size: 1rem;
  color: var(--texto);
  line-height: 1.6;
}

.apres-sub strong {
  color: var(--verde);
  font-weight: 700;
}

.apres-crm {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--crm);
  margin-top: -4px;
}

.btn-consulta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--verde);
  color: var(--branco);
  font-size: 1rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 6px;
  margin-top: 8px;
  transition: background 0.2s, transform 0.15s;
}
.btn-consulta:hover {
  background: var(--verde-claro);
  transform: translateY(-1px);
}

.apres-modalidade {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--crm);
  margin-top: -4px;
}

/* ============================================================
   SEÇÃO 4 — DESCRIÇÃO / SERVIÇOS
   ============================================================ */
.sec-descricao {
  background: var(--cinza-fundo);
  padding: 64px 24px;
}

.desc-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: justify;
}

.desc-texto {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--texto);
  max-width: 740px;
}

.btn-telefone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--verde);
  color: var(--branco);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
}
.btn-telefone:hover {
  background: var(--verde-claro);
  transform: translateY(-1px);
}

/* ============================================================
   SEÇÃO 5 — LOCALIZAÇÃO
   ============================================================ */
.sec-local {
  background: var(--salmon);
  padding: 64px 24px;
  text-align: center;
}

.local-inner {
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.local-titulo {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--verde);
  line-height: 1.2;
  text-align: center;
}

.local-titulo span {
  font-style: italic;
}

.local-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.local-nome {
  font-size: 1rem;
  color: var(--verde);
}
.local-end, .local-cidade {
  font-size: 0.9rem;
  color: var(--texto);
}

.mapa-wrapper {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.1);
}

.mapa-wrapper iframe {
  display: block;
}

/* ============================================================
   RODAPÉ
   ============================================================ */
.rodape {
  background: var(--verde);
  padding: 56px 24px 48px;
  text-align: center;
}

.rodape-inner {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.rodape-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--branco);
}

.rodape-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.rodape-sub strong {
  color: var(--branco);
  font-weight: 600;
}

.rodape-crm {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.rodape-tel-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 12px;
}

.rodape-tel {
  font-size: 1rem;
  color: var(--branco);
  transition: opacity 0.2s;
}
.rodape-tel:hover { opacity: 0.8; }
.rodape-tel strong { font-weight: 700; }

.rodape-redes {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}

.rodape-rede {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  transition: color 0.2s;
}
.rodape-rede:hover { color: var(--branco); }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--verde);
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 8px 16px 16px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }

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

  .nav-link {
    padding: 12px 8px;
    
  }

  .nav-cta {
    margin-top: 8px;
    text-align: center;
    padding: 12px;
  }

  .sec-hero { min-height: 380px; }
  .hero-foto { max-height: 380px; }
}

@media (max-width: 480px) {
  .apres-nome { font-size: 1.8rem; }
  .local-titulo { font-size: 1.75rem; }
  .btn-consulta { padding: 12px 20px; font-size: 0.9rem; }
}

/* ============================================================
   RODAPÉ PREMIUM
   ============================================================ */
.rodape-premium { background: var(--verde); color: #fff; }
.rodape-premium-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 24px 32px;
}
@media (max-width: 768px) {
  .rodape-premium-inner { grid-template-columns: 1fr; gap: 32px; }
}
.rp-nome {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.rp-slogan {
  color: var(--ouro);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.rp-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.rp-social { display: flex; align-items: center; gap: 10px; }
.rp-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.rp-icon:hover { border-color: var(--ouro); color: var(--ouro); }
.rp-col-titulo {
  color: var(--ouro);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.rp-nav { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.rp-nav a { color: rgba(255,255,255,0.65); font-size: 0.9rem; text-decoration: none; transition: color 0.2s; }
.rp-nav a:hover { color: #fff; }
.rp-desc { color: rgba(255,255,255,0.6); font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.rp-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ouro);
  color: var(--verde);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.rp-btn-wa:hover { opacity: 0.9; }
.rp-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  text-align: center;
}
@media (min-width: 640px) {
  .rp-bottom { flex-direction: row; justify-content: space-between; }
}
