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

:root {
  --black:     #070707;
  --graphite:  #101010;
  --gold:      #C8A96A;
  --gold-soft: #D6B77A;
  --gold-dim:  rgba(200,169,106,0.15);
  --gold-line: rgba(200,169,106,0.3);
  --white:     #FFFFFF;
  --off-white: #E8E0D0;
  --text-muted: rgba(232,224,208,0.55);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* =====================
   TYPOGRAPHY
   ===================== */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-label.center { text-align: center; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.section-title.center { text-align: center; }
.section-title em, h2 em { font-style: italic; color: var(--gold-soft); }

/* =====================
   BUTTONS
   ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  border: 1px solid var(--gold);
  transition: background 0.35s, color 0.35s, transform 0.25s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: transform 0.4s ease;
}
.btn-primary:hover::after { transform: translateX(0); }
.btn-primary:hover { transform: translateY(-2px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: 1px solid var(--gold-line);
  transition: border-color 0.3s, color 0.3s, transform 0.25s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-nav {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--gold-line);
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold); color: var(--black); }

/* =====================
   NAVBAR
   ===================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.4rem 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}
.navbar.scrolled {
  background: rgba(7,7,7,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--gold-line);
}
.nav-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-logo { flex-shrink: 0; }
.nav-logo img { width: auto; height: 48px; object-fit: contain; }

.nav-links {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 1px;
  background: var(--off-white);
  transition: all 0.3s;
}

/* =====================
   HERO
   ===================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 100px;
}
.hero-bg-glow {
  position: absolute;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,169,106,0.12) 0%, transparent 70%);
  top: 50%; left: 55%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero-title .line { display: block; overflow: hidden; }
.hero-title .accent { color: var(--gold-soft); font-style: italic; }

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  border-top: 1px solid var(--gold-line);
  padding-top: 1.5rem;
}
.badge-star { color: var(--gold); font-size: 0.85rem; letter-spacing: 0.05em; }

.hero-image { position: relative; }
.hero-img-wrap {
  position: relative;
  height: 620px;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  filter: contrast(1.05) brightness(0.95);
  will-change: transform;
}
.hero-img-frame {
  position: absolute;
  inset: 0;
  border: 1px solid var(--gold-line);
  pointer-events: none;
  transform: translate(16px, 16px);
}
.hero-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top, var(--black), transparent);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* =====================
   AUTORIDADE
   ===================== */
.autoridade {
  padding: 8rem 2rem;
  background: var(--graphite);
  position: relative;
}
.auto-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.auto-images {
  position: relative;
  height: 580px;
}
.auto-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 78%; height: 75%;
  overflow: hidden;
}
.auto-img-sec {
  position: absolute;
  bottom: 0; right: 0;
  width: 58%; height: 52%;
  overflow: hidden;
  border: 3px solid var(--graphite);
}
.img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,169,106,0.08) 0%, transparent 60%);
}

.auto-body {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  line-height: 1.9;
}
.auto-pillars { display: flex; flex-direction: column; gap: 1.5rem; }
.pillar {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.pillar-icon {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.pillar strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.pillar p { font-size: 0.85rem; color: var(--text-muted); }

/* =====================
   NÚMEROS
   ===================== */
.numeros {
  padding: 7rem 2rem;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.numeros-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(200,169,106,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.numeros-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.numeros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 3rem;
}
.numero-card {
  padding: 3rem 2rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--gold-line);
  text-align: center;
  position: relative;
  transition: background 0.3s;
}
.numero-card:hover { background: rgba(200,169,106,0.05); }
.numero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 40px; height: 1px;
  background: var(--gold);
}

.numero-val, .numero-text {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--gold-soft);
  display: block;
  line-height: 1;
  margin-bottom: 1rem;
}
.numero-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =====================
   DIFERENCIAL
   ===================== */
.diferencial {
  padding: 8rem 2rem;
  background: var(--graphite);
  text-align: center;
}
.dif-container {
  max-width: 860px;
  margin: 0 auto;
}
.dif-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.25;
  color: var(--white);
  margin-bottom: 2rem;
}
.dif-body {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 2;
  margin-bottom: 3rem;
}
.dif-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 auto;
}

/* =====================
   ÁREAS
   ===================== */
.areas {
  padding: 8rem 2rem;
  background: var(--black);
}
.areas-container { max-width: 1320px; margin: 0 auto; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.area-card {
  padding: 2.5rem;
  border: 1px solid var(--gold-line);
  background: rgba(255,255,255,0.02);
  transition: background 0.35s, border-color 0.35s, transform 0.3s;
  cursor: default;
  position: relative;
  overflow: hidden;
}
.area-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}
.area-card:hover { background: rgba(200,169,106,0.05); border-color: var(--gold); transform: translateY(-4px); }
.area-card:hover::after { width: 100%; }

.area-icon {
  width: 44px; height: 44px;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.area-icon svg { width: 100%; height: 100%; }

.area-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.area-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; }

/* =====================
   DEPOIMENTOS
   ===================== */
.depoimentos {
  padding: 8rem 2rem;
  background: var(--graphite);
}
.dep-container { max-width: 1320px; margin: 0 auto; }
.dep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}
.dep-card {
  padding: 2.5rem;
  border: 1px solid var(--gold-line);
  background: rgba(7,7,7,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s, transform 0.3s, background 0.3s;
  position: relative;
}
.dep-card::before {
  content: '"';
  position: absolute;
  top: 1.5rem; right: 2rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-dim);
}
.dep-card:hover { border-color: var(--gold); transform: translateY(-4px); background: rgba(200,169,106,0.04); }

.dep-stars { color: var(--gold); font-size: 0.8rem; letter-spacing: 0.1em; margin-bottom: 1rem; }
.dep-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; font-style: italic; margin-bottom: 1.5rem; }
.dep-author { display: flex; align-items: center; gap: 0.8rem; }
.dep-avatar {
  width: 36px; height: 36px;
  background: var(--gold-dim);
  border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 600; color: var(--gold);
  flex-shrink: 0;
}
.dep-author span { font-size: 0.8rem; font-weight: 500; color: var(--white); letter-spacing: 0.05em; }

/* =====================
   GALERIA
   ===================== */
.galeria {
  padding: 8rem 2rem;
  background: var(--black);
}
.gal-container { max-width: 1320px; margin: 0 auto; }
.gal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 340px 280px;
  gap: 1rem;
  margin-top: 4rem;
}
.gal-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.gal-large { grid-column: 1; grid-row: 1 / 3; }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s;
  filter: brightness(0.85) contrast(1.05);
}
.gal-item:hover img { transform: scale(1.04); filter: brightness(0.7) contrast(1.1); }
.gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,7,7,0.7) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.4s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-item img[alt="Equipe"],
.gal-item img[alt="Nossa Equipe"] { object-position: center 25%; }
.gal-overlay span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold-line);
  padding-bottom: 4px;
}

/* =====================
   CTA FINAL
   ===================== */
.cta-final {
  padding: 9rem 2rem;
  background: var(--graphite);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,169,106,0.15) 0%, transparent 65%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-container { max-width: 800px; margin: 0 auto; position: relative; }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.cta-sub { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 3rem; }
.cta-btns { display: flex; justify-content: center; gap: 1.2rem; flex-wrap: wrap; }

/* =====================
   FOOTER
   ===================== */
.footer {
  background: #040404;
  border-top: 1px solid var(--gold-line);
  padding: 5rem 2rem 0;
}
.footer-container {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 4rem;
  padding-bottom: 4rem;
}
.footer-brand p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; margin-top: 1rem; }
.footer-logo { width: auto; height: 52px; object-fit: contain; margin-bottom: 1rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: border-color 0.3s, color 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.footer-col p, .footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 2;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white); }
.footer-google { margin-top: 1rem; }
.footer-google span:first-child { color: var(--gold); font-size: 0.8rem; }
.footer-google span:last-child { font-size: 0.78rem; color: var(--text-muted); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); letter-spacing: 0.05em; }

/* =====================
   WPP FLOAT
   ===================== */
.wpp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.wpp-float:hover { transform: scale(1.08); box-shadow: 0 6px 32px rgba(37,211,102,0.5); }

/* =====================
   ANIMATIONS BASE
   ===================== */
.reveal-up { opacity: 0; transform: translateY(40px); }
.reveal-img { opacity: 0; }
.split-text { opacity: 0; }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 1100px) {
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; gap: 3rem; }
}

@media (max-width: 900px) {
  .hero-container { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image { display: none; }
  .auto-container { grid-template-columns: 1fr; }
  .auto-images { height: 400px; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .dep-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-rows: 280px 220px; }
  .btn-nav { display: none; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: rgba(7,7,7,0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--gold-line);
  }
  .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
  .areas-grid { grid-template-columns: 1fr; }
  .dep-grid { grid-template-columns: 1fr; }
  .numeros-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gal-item { height: 240px; }
  .gal-large { grid-column: 1; grid-row: auto; height: 300px; }
  .footer-container { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .cta-btns { flex-direction: column; align-items: center; }
  .auto-images { display: none; }
}
