@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #1a1a18;
  background: #f5f3ee;
  line-height: 1.7;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: 'DM Sans', sans-serif; }

.serif { font-family: 'Cormorant Garamond', Georgia, serif; }

/* ===== TOKENS ===== */
:root {
  --cream: #f5f3ee;
  --cream-dark: #eceae3;
  --dark: #1a1a18;
  --dark-2: #2a2a24;
  --dark-3: #2e2e28;
  --dark-4: #3e3e38;
  --gold: #c4b99a;
  --gold-light: #d4c9aa;
  --text-muted: #7a7769;
  --text-dim: #a09d94;
  --text-faint: #9a9789;
  --border-dark: 0.5px solid #2e2e28;
  --border-light: 0.5px solid #ddd8ce;
}

/* ===== LAYOUT ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section { padding: 80px 48px; }
.section-header { display: flex; align-items: baseline; gap: 24px; margin-bottom: 48px; }
.section-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 300;
  color: #1a1a18;
}
.section-title.light { color: #e8e4da; }

/* ===== NAV ===== */
nav {
  background: var(--dark);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #e8e4da;
  letter-spacing: 0.12em;
  font-weight: 300;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: #e8e4da; }
.nav-cta {
  background: transparent;
  border: 0.5px solid var(--text-dim);
  color: #e8e4da;
  padding: 8px 20px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}
.nav-cta:hover { background: #e8e4da; color: var(--dark); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  font-weight: 500;
  display: inline-block;
  transition: background 0.2s;
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: #e8e4da;
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 0.5px solid var(--dark-3);
  display: inline-block;
  transition: border-color 0.2s;
}
.btn-outline:hover { border-color: var(--text-dim); }
.btn-outline.dark {
  color: var(--dark);
  border-color: #ddd8ce;
}
.btn-outline.dark:hover { border-color: #1a1a18; }

/* ===== HERO ===== */
.hero {
  background: var(--dark);
  padding: 96px 48px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  min-height: 480px;
}
.hero-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a7769;
  margin-bottom: 24px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 56px;
  font-weight: 300;
  color: #e8e4da;
  line-height: 1.1;
  font-style: italic;
}
.hero-title span { font-style: normal; color: var(--gold); }
.hero-sub {
  font-size: 14px;
  color: #7a7769;
  line-height: 1.8;
  margin-top: 24px;
  max-width: 420px;
}
.hero-actions { display: flex; gap: 16px; margin-top: 40px; }
.hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 8px;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--dark-3);
}
.stat { background: var(--dark); padding: 28px 24px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--gold);
  font-weight: 300;
}
.stat-label {
  font-size: 11px;
  color: #7a7769;
  margin-top: 4px;
  letter-spacing: 0.06em;
}

/* ===== AREAS GRID ===== */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #ddd8ce;
}
.area-card {
  background: var(--cream);
  padding: 32px 28px;
  transition: background 0.2s;
}
.area-card:hover { background: var(--cream-dark); }
.area-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.area-title { font-size: 15px; font-weight: 500; color: #1a1a18; line-height: 1.4; margin-bottom: 10px; }
.area-desc { font-size: 13px; color: #7a7769; line-height: 1.7; }
.area-arrow { font-size: 18px; color: var(--gold); margin-top: 20px; display: block; }

/* ===== QUEM SOMOS ===== */
.quem {
  background: var(--dark);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.quem-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a7769;
  margin-bottom: 20px;
}
.quem-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: #e8e4da;
  font-weight: 300;
  line-height: 1.2;
  font-style: italic;
}
.quem-title b { font-style: normal; font-weight: 300; color: var(--gold); }
.quem-text { font-size: 14px; color: #7a7769; line-height: 1.9; margin-top: 24px; }
.quem-credentials { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.credential { display: flex; align-items: center; gap: 12px; font-size: 13px; color: var(--text-dim); }
.cred-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.quem-photo {
  background: var(--dark-2);
  height: 420px;
  border: 0.5px solid var(--dark-3);
  overflow: hidden;
  position: relative;
}
.quem-photo img { width: 100%; height: 100%; object-fit: cover; }
.quem-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--dark-4);
  font-style: italic;
  letter-spacing: 0.05em;
}

/* ===== POSTS / ARTIGOS ===== */
.tabs {
  display: flex;
  border-bottom: 0.5px solid #ddd8ce;
  margin-bottom: 40px;
}
.tab {
  padding: 12px 24px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  color: #9a9789;
  border-bottom: 2px solid transparent;
  margin-bottom: -0.5px;
  transition: all 0.2s;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}
.tab:hover { color: #1a1a18; }
.tab.active { color: #1a1a18; border-bottom-color: #1a1a18; }
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.post-card {
  background: #fff;
  border: 0.5px solid #ddd8ce;
  padding: 28px;
  transition: border-color 0.2s;
}
.post-card:hover { border-color: #bbb6ac; }
.post-tag {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.post-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: #1a1a18;
  line-height: 1.35;
  font-weight: 400;
}
.post-excerpt { font-size: 13px; color: #7a7769; line-height: 1.7; margin-top: 12px; }
.post-date { font-size: 12px; color: #9a9789; margin-top: 16px; }
.post-read-more {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 20px;
  display: block;
}

/* ===== VIDEOS ===== */
.videos { background: var(--cream-dark); padding: 80px 48px; }
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.video-thumb {
  background: var(--dark);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.video-thumb:hover img { opacity: 0.7; }
.play-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  border: 0.5px solid rgba(196,185,154,0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.video-thumb:hover .play-btn { border-color: var(--gold); }
.play-icon {
  width: 0; height: 0;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 16px solid var(--gold);
  margin-left: 4px;
}
.video-label { font-size: 13px; color: #7a7769; margin-top: 12px; line-height: 1.5; }

/* ===== CONTATO ===== */
.contato {
  background: var(--dark);
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contato-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: #e8e4da;
  font-weight: 300;
  font-style: italic;
  line-height: 1.2;
}
.contato-info { margin-top: 36px; display: flex; flex-direction: column; gap: 24px; }
.info-row { display: flex; flex-direction: column; gap: 5px; }
.info-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #7a7769;
}
.info-value { font-size: 14px; color: var(--text-dim); line-height: 1.6; }
.form-group { margin-bottom: 4px; }
.form-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 0.5px solid var(--dark-3);
  padding: 12px 0;
  font-size: 14px;
  color: #e8e4da;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.2s;
}
.form-field::placeholder { color: var(--dark-4); }
.form-field:focus { border-bottom-color: var(--gold); }
.send-btn {
  background: var(--gold);
  color: var(--dark);
  padding: 14px 40px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  font-weight: 500;
  width: 100%;
  margin-top: 8px;
  transition: background 0.2s;
}
.send-btn:hover { background: var(--gold-light); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: var(--dark);
  padding: 64px 48px;
}
.page-hero-label {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #7a7769;
  margin-bottom: 16px;
}
.page-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: #e8e4da;
  font-style: italic;
  line-height: 1.1;
}
.page-hero-title span { color: var(--gold); font-style: normal; }
.page-hero-sub {
  font-size: 14px;
  color: #7a7769;
  margin-top: 16px;
  max-width: 500px;
  line-height: 1.8;
}

/* ===== DIVIDER ===== */
.divider { height: 1px; background: #ddd8ce; }

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--gold);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.cta-band-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  color: var(--dark);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
}
.btn-dark {
  background: var(--dark);
  color: #e8e4da;
  padding: 14px 36px;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  font-weight: 500;
  white-space: nowrap;
  display: inline-block;
  transition: background 0.2s;
}
.btn-dark:hover { background: #2a2a24; }

/* ===== FOOTER ===== */
footer {
  background: #111110;
  padding: 48px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: #3e3e38;
  letter-spacing: 0.12em;
  font-weight: 300;
  margin-bottom: 16px;
}
.footer-desc { font-size: 13px; color: #3e3e38; line-height: 1.7; }
.footer-col-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #3e3e38;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13px;
  color: #3e3e38;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #7a7769; }
.footer-bottom {
  border-top: 0.5px solid #1e1e1c;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-copy { font-size: 11px; color: #2e2e2c; letter-spacing: 0.06em; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; gap: 48px; }
  .quem { grid-template-columns: 1fr; gap: 48px; }
  .contato { grid-template-columns: 1fr; gap: 48px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .section, .hero, .quem, .contato, .videos, .cta-band, footer { padding-left: 24px; padding-right: 24px; }
  .hero-title { font-size: 40px; }
  .areas-grid { grid-template-columns: 1fr; }
  .posts-grid { grid-template-columns: 1fr; }
  .videos-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; text-align: center; }
}
