/* ── 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; }

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

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

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 64px 100px 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 top;
  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;
  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-main {
  padding-top: 80px;
  min-height: 80vh;
}
.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 ───────────────────────────────────────── */
@media (max-width: 1024px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 100px 48px 60px; }
  .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; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  #navbar { padding: 0 24px; }
  .nav-links { 
    display: none;
    position: fixed; top: 80px; left: 0; right: 0; bottom: 0;
    background: var(--black);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 40px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 14px; }
  .nav-toggle { display: flex; }
  .hero-content { padding: 80px 24px 60px; }
  .hero-scroll { left: 24px; }
  .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; }
  #sobre, #especialidades, #atendimento, #temas, #contato { padding: 80px 0; }
}
