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

:root {
  --black:   #0a0908;
  --dark:    #141210;
  --dark2:   #1a1714;
  --dark3:   #201d1a;
  --gold:    #b79460;
  --gold-l:  #d4b483;
  --gold-d:  #8a6d3f;
  --white:   #ffffff;
  --cream:   #f5ece0;
  --gray:    #9a9590;
  --gray-l:  #c8c2ba;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--cream);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

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

/* ── UTILITY ──────────────────────────────────────────── */
.container { max-width: 1240px; margin: 0 auto; padding: 0 48px; }

.label {
  display: flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.label::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--gold);
  margin-right: 12px;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 18px 36px;
  border: none; cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-l); transform: translateY(-1px); color: var(--black); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--gold);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 17px 36px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}
.btn-outline:hover { background: var(--gold); color: var(--black); }

/* ── FADE IN ──────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── NAV ──────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0 48px;
  height: 80px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10,9,8,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(183,148,96,0.12);
  transition: border-color 0.3s;
}

.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name {
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}
.nav-logo-title {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray);
  font-weight: 300;
}

.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-l);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.nav-cta {
  font-size: 11px !important;
  letter-spacing: 2px !important;
  color: var(--black) !important;
  background: var(--gold);
  padding: 10px 22px !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-l) !important; color: var(--black) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 9999;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: transform 0.3s, opacity 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── HERO ─────────────────────────────────────────────── */
#hero {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--dark);
  padding-top: 0;
  overflow: hidden;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 64px 40px 80px;
}

.hero-content .label { margin-bottom: 36px; }

.hero-title {
  font-family: var(--serif);
  font-size: clamp(52px, 5.5vw, 82px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 32px;
}
.hero-title em { font-style: italic; color: var(--cream); }

.hero-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.9;
  max-width: 460px;
  margin-bottom: 48px;
}

.hero-actions { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }

.hero-link {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: flex; align-items: center; gap: 8px;
  transition: gap 0.2s;
}
.hero-link:hover { gap: 14px; }
.hero-link::after { content: '→'; }

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 10%;
  filter: grayscale(15%) contrast(1.05);
}
.hero-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--dark) 0%, transparent 35%);
  z-index: 1;
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--dark) 0%, transparent 30%);
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 40px; left: 80px;
  z-index: 0;
  display: flex; align-items: center; gap: 12px;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gray);
  animation: scrollPulse 2.5s ease-in-out infinite;
}
.hero-scroll::before {
  content: '';
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ── RIBBON ───────────────────────────────────────────── */
.ribbon {
  background: var(--gold);
  padding: 24px 48px;
  text-align: center;
}
.ribbon p {
  font-family: var(--serif);
  font-size: 20px;
  font-style: italic;
  font-weight: 300;
  color: var(--black);
  letter-spacing: 0.5px;
}

/* ── SOBRE ────────────────────────────────────────────── */
#sobre {
  background: var(--dark2);
  padding: 120px 0;
}
.sobre-grid {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}
.sobre-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.sobre-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
  transition: transform 0.8s ease;
}
.sobre-image:hover img { transform: scale(1.03); }
.sobre-image::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--dark2), transparent);
}

.sobre-content { padding-right: 20px; }

.sobre-title {
  font-family: var(--serif);
  font-size: clamp(36px, 3.5vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 32px;
}
.sobre-title em { font-style: italic; color: var(--cream); }

.sobre-text {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 18px;
}

.sobre-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(183,148,96,0.2);
}
.stat-num {
  font-family: var(--serif);
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── ESPECIALIDADES ───────────────────────────────────── */
#especialidades {
  background: var(--black);
  padding: 120px 0;
}
.esp-header {
  text-align: center;
  margin-bottom: 72px;
}
.esp-header .label {
  justify-content: center;
  margin-bottom: 20px;
}
.esp-header .label::before { display: none; }

.esp-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
}
.esp-title em { font-style: italic; color: var(--cream); }

.esp-divider {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 24px auto 0;
}

.esp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.esp-card {
  background: var(--dark2);
  padding: 40px 32px;
  border-top: 2px solid var(--gold);
  transition: background 0.3s, transform 0.3s;
  display: block;
}
.esp-card:hover { background: var(--dark3); transform: translateY(-4px); }

.esp-num {
  font-family: var(--serif);
  font-size: 28px;
  font-style: italic;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 20px;
  line-height: 1;
}
.esp-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 14px;
}
.esp-card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
}

/* ── ATENDIMENTO ──────────────────────────────────────── */
#atendimento {
  background: var(--dark3);
  padding: 120px 0;
}
.at-grid {
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
}
.at-content .label { margin-bottom: 24px; }

.at-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.5vw, 50px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 24px;
}
.at-title em { font-style: italic; color: var(--cream); }

.at-desc {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 32px;
}

.at-list { list-style: none; margin-bottom: 48px; }
.at-list li {
  display: flex; align-items: flex-start; gap: 16px;
  font-size: 15px; color: var(--gray-l);
  padding: 13px 0;
  border-bottom: 1px solid rgba(183,148,96,0.1);
}
.at-list li:last-child { border-bottom: none; }
.at-list li::before {
  content: '✦';
  color: var(--gold);
  font-size: 9px;
  margin-top: 6px;
  flex-shrink: 0;
}

.at-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
}
.at-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}
.at-image::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, var(--dark3));
  z-index: 1;
}

/* ── TEMAS ────────────────────────────────────────────── */
#temas {
  background: var(--dark2);
  padding: 120px 0;
}
.temas-header {
  text-align: center;
  margin-bottom: 64px;
}
.temas-header .label {
  justify-content: center;
  margin-bottom: 16px;
}
.temas-header .label::before { display: none; }

.temas-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  color: var(--white);
}
.temas-title em { font-style: italic; color: var(--cream); }

.temas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.tema-item {
  padding: 28px 40px;
  border-bottom: 1px solid rgba(183,148,96,0.1);
  display: flex; align-items: flex-start; gap: 18px;
  transition: background 0.2s;
}
.tema-item:hover { background: rgba(183,148,96,0.04); }
.tema-item:nth-child(odd) { border-right: 1px solid rgba(183,148,96,0.1); }

.tema-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 9px;
  flex-shrink: 0;
}
.tema-name {
  font-size: 15px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 4px;
}
.tema-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ── QUOTE ────────────────────────────────────────────── */
.quote-section {
  background: var(--dark);
  padding: 100px 0;
  text-align: center;
}
.quote-mark {
  font-family: var(--serif);
  font-size: 96px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
  margin-bottom: 36px;
  display: block;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  max-width: 680px;
  margin: 0 auto 16px;
  line-height: 1.55;
}
.quote-line {
  width: 40px; height: 1px;
  background: var(--gold);
  margin: 20px auto;
}
.quote-sub {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── CTA FINAL ────────────────────────────────────────── */
#contato {
  background: var(--dark2);
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contato::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(183,148,96,0.06) 0%, transparent 70%);
  pointer-events: none;
}
#contato .label {
  justify-content: center;
  margin-bottom: 20px;
}
#contato .label::before { display: none; }

.cta-title {
  font-family: var(--serif);
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.1;
}
.cta-title em { font-style: italic; color: var(--cream); }

.cta-sub {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 48px;
  max-width: 440px;
  margin-left: auto; margin-right: auto;
}
.cta-actions {
  display: flex; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.cta-contact {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1px;
}

/* ── FOOTER ───────────────────────────────────────────── */
#footer {
  background: var(--black);
  padding: 56px 0;
  border-top: 1px solid rgba(183,148,96,0.12);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 48px;
}
.footer-logo-name {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.footer-logo-sub {
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.footer-nav a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  text-align: right;
  font-size: 11px;
  color: var(--gray);
  opacity: 0.5;
  line-height: 1.8;
}

/* ── WHATSAPP FLOAT ───────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.5); }
.wa-float svg { width: 28px; height: 28px; fill: white; }

/* ── PAGE INTERIOR ────────────────────────────────────── */
.page-content {
  padding: 80px 0 120px;
  max-width: 800px;
}
.page-header { margin-bottom: 48px; }
.page-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
}
.page-body { font-size: 16px; color: var(--gray); line-height: 1.9; }
.page-body h2 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin: 48px 0 16px;
}
.page-body h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin: 36px 0 12px;
}
.page-body p { margin-bottom: 18px; }
.page-body ul {
  margin: 16px 0 24px 0;
  padding-left: 0;
  list-style: none;
}
.page-body ul li {
  padding: 10px 0 10px 24px;
  position: relative;
  border-bottom: 1px solid rgba(183,148,96,0.1);
  font-size: 15px;
}
.page-body ul li::before {
  content: '✦';
  position: absolute; left: 0; top: 12px;
  color: var(--gold);
  font-size: 9px;
}
.page-body strong { color: var(--cream); font-weight: 500; }

/* ── RESPONSIVE ───────────────────────────────────────── */




/* ── NAV DROPDOWN ─────────────────────────────────────── */
.nav-item {
  position: relative;
}
.nav-item > a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-l);
  font-weight: 400;
  transition: color 0.2s;
  display: flex; align-items: center; gap: 5px;
}
.nav-item > a:hover { color: var(--gold); }
.has-dropdown > a::after {
  content: '›';
  font-size: 14px;
  transform: rotate(90deg);
  display: inline-block;
  transition: transform 0.2s;
}
.has-dropdown:hover > a::after { transform: rotate(270deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark2);
  border-top: 2px solid var(--gold);
  min-width: 220px;
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.25s, transform 0.25s, visibility 0.25s;
  z-index: 200;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-l) !important;
  font-weight: 400;
  transition: color 0.2s, background 0.2s;
}
.nav-dropdown a:hover {
  color: var(--gold) !important;
  background: rgba(183,148,96,0.06);
}

/* ── PAGE HERO ────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 440px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  margin-top: 80px;
  overflow: hidden;
  z-index: 0;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,9,8,0.15) 0%,
    rgba(10,9,8,0.40) 50%,
    rgba(10,9,8,0.80) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding-bottom: 32px;
}
.page-hero-content .label { margin-bottom: 16px; }
.page-hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  max-width: 700px;
}

/* ── PAGE MAIN ────────────────────────────────────────── */
.page-main {
  background: var(--black);
  padding: 60px 0 60px;
}
.page-content {
  max-width: 960px;
}
.page-content h2 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 400;
  color: var(--white);
  margin: 52px 0 16px;
  line-height: 1.2;
}
.page-content h3 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  margin: 36px 0 12px;
}
.page-content p {
  font-size: 17px;
  color: var(--gray);
  line-height: 1.9;
  margin-bottom: 18px;
}
.page-content ul {
  list-style: none;
  margin: 16px 0 28px;
  padding: 0;
}
.page-content ul li {
  font-size: 15px;
  color: var(--gray-l);
  padding: 11px 0 11px 26px;
  position: relative;
  border-bottom: 1px solid rgba(183,148,96,0.1);
  line-height: 1.6;
}
.page-content ul li:last-child { border-bottom: none; }
.page-content ul li::before {
  content: '✦';
  position: absolute; left: 0; top: 13px;
  color: var(--gold);
  font-size: 9px;
}
.page-content strong { color: var(--cream); font-weight: 500; }

/* ── PAGE CTA ─────────────────────────────────────────── */
.page-cta {
  max-width: 780px;
  margin-top: 64px;
  padding-top: 48px;
  border-top: 1px solid rgba(183,148,96,0.2);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.page-cta p {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  color: var(--cream);
  font-weight: 300;
}

/* ── SOBRE PAGE ───────────────────────────────────────── */
.sobre-page {
  background: var(--dark2);
  padding: 80px 0 60px;
}
.sobre-page-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 72px;
  align-items: start;
  max-width: 1100px;
}
.sobre-page-image {
  position: sticky;
  top: 100px;
  aspect-ratio: 3/4;
  max-height: 520px;
  overflow: hidden;
}
.sobre-page-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(15%);
}
.sobre-page-title {
  font-family: var(--serif);
  font-size: clamp(32px, 3vw, 46px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
}
.sobre-page-title em { font-style: italic; color: var(--cream); }

.sobre-page-stats {
  background: var(--black);
  padding: 60px 0;
  border-top: 1px solid rgba(183,148,96,0.12);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

/* ── RESPONSIVE ───────────────────────────────────────── */



/* ── SOBRE BANNER (sem imagem) ────────────────────────── */
.sobre-banner {
  margin-top: 80px;
  background: var(--dark2);
  padding: 72px 0 64px;
  border-bottom: 1px solid rgba(183,148,96,0.15);
}
.sobre-banner .label { margin-bottom: 16px; }
.sobre-banner-title {
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 62px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
}

/* ── MOBILE HERO ──────────────────────────────────────── */


/* ── MOBILE FIXES ─────────────────────────────────────── */


/* ── HIDE ON MOBILE ───────────────────────────────────── */




/* ══════════════════════════════════════════════════════
   MOBILE MENU — elemento separado (estilo Michelle)
══════════════════════════════════════════════════════ */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}
/* Hamburger sempre acima do menu mobile */
.hamburger { isolation: isolate; }
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu a {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  letter-spacing: 1px;
  transition: color 0.3s;
  padding: 8px 0;
}
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu .mobile-cta {
  font-family: var(--sans) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  letter-spacing: 3px !important;
  text-transform: uppercase !important;
  color: var(--black) !important;
  background: var(--gold);
  padding: 14px 36px !important;
  margin-top: 16px;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — TABLET 1024px
══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 520px; }
  .hero-image::before { background: linear-gradient(to bottom, var(--dark) 0%, transparent 50%); }
  .sobre-grid { grid-template-columns: 1fr; }
  .sobre-image { aspect-ratio: 4/3; }
  .esp-grid { grid-template-columns: repeat(2, 1fr); }
  .at-grid { grid-template-columns: 1fr; }
  .at-image { aspect-ratio: 4/3; max-width: 600px; }
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-copy { text-align: left; }
  .footer-nav { align-items: flex-start; }
  .sobre-page-grid { grid-template-columns: 1fr; }
  .sobre-page-image { position: static; aspect-ratio: 4/3; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE 768px
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  #navbar { padding: 0 24px; }

  /* Esconde nav desktop, mostra hamburger */
  .nav-links { display: none !important; }
  .hamburger { display: flex; position: fixed; top: 28px; right: 24px; z-index: 1000; }

  /* Hero home */
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { display: none; }
  .hero-content { padding: 40px 24px 48px; }
  .hero-scroll { display: none; }

  /* Page hero interno */
  .page-hero { height: 240px; margin-top: 80px; }
  .page-hero-content { padding-bottom: 28px; }
  .page-hero-title { font-size: 26px; }

  /* Page main — sem padding excessivo */
  .page-main { padding: 40px 0 60px; }

  /* Seções home */
  #sobre, #especialidades, #atendimento, #temas, #contato { padding: 64px 0; }
  .esp-grid { grid-template-columns: 1fr; gap: 2px; }
  .temas-grid { grid-template-columns: 1fr; }
  .tema-item:nth-child(odd) { border-right: none; }
  .sobre-stats { gap: 20px; }
  .at-image { display: none; }
  .at-grid { grid-template-columns: 1fr; }

  /* Sobre page */
  .sobre-page-grid { grid-template-columns: 1fr; }
  .sobre-page-image { position: static; aspect-ratio: 4/3; max-height: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-copy { text-align: left; }
  .footer-nav { align-items: flex-start; }
}

/* ── HAMBURGER → X ───────────────────────────────────── */
.hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── BLOG ─────────────────────────────────────────────── */
.blog-main {
  background: var(--black);
  padding: 80px 0 120px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 64px;
}

.blog-card {
  background: var(--dark2);
  border-top: 2px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.blog-card:hover {
  border-top-color: var(--gold);
  background: var(--dark3);
}

.blog-card-inner {
  display: flex;
  flex-direction: column;
  padding: 36px 32px 40px;
  height: 100%;
  text-decoration: none;
}

.blog-card-meta {
  margin-bottom: 16px;
}
.blog-card-date {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
}

.blog-card-title {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card:hover .blog-card-title { color: var(--cream); }

.blog-card-excerpt {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 28px;
}

.blog-card-link {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.blog-card-link::after { content: '→'; }
.blog-card:hover .blog-card-link { gap: 14px; }

/* Paginação */
.blog-pagination {
  text-align: center;
}
.blog-pagination .nav-links {
  display: flex !important;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.blog-pagination .page-numbers {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  padding: 10px 16px;
  border: 1px solid rgba(183,148,96,0.2);
  transition: all 0.2s;
  text-decoration: none;
}
.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

/* Blog post single */
.single-post .page-main { padding: 60px 0 80px; }
.single-post .page-content { max-width: 760px; }
.single-post .page-content h2 { margin-top: 48px; }

/* Responsive blog */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-card-inner { padding: 28px 24px 32px; }
}

/* ── BLOG CARD COM IMAGEM ─────────────────────────────── */
.blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.6s ease;
  filter: grayscale(10%);
}
.blog-card:hover .blog-card-image img { transform: scale(1.04); }

.blog-card-body {
  padding: 28px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  padding: 0;
}

@media (max-width: 768px) {
  .blog-card-body { padding: 22px 20px 28px; }
}
