/* ==========================================================
   VARIÁVEIS
========================================================== */

:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #9A7A30;
  --dark: #0D0D0D;
  --dark-2: #141414;
  --dark-3: #1C1C1C;
  --dark-4: #242424;
  --light: #F5F0E8;
  --text-muted: #888;
  --white: #FFFFFF;
}

/* ==========================================================
   RESET E CONFIGURAÇÕES GERAIS
========================================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
}

/* ==========================================================
   NAVBAR
========================================================== */

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 20px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(13,13,13,0.95), transparent);
  transition: background 0.3s;
}

nav.scrolled {
  background: rgba(13,13,13,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border: 1.5px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--gold);
}

.nav-logo-text {
  line-height: 1.2;
}

.nav-logo-text span:first-child {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 1px;
}

.nav-logo-text span:last-child {
  font-size: 9px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}

/* ==========================================================
   HERO
========================================================== */

#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-color: var(--dark);
}

.hero-background {
  position: absolute;
  inset: 0;
  background-image: url("../img/Foto_Principal.webp");
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
        90deg,
        rgba(5,5,5,.98) 0%,
        rgba(5,5,5,.96) 28%,
        rgba(5,5,5,.82) 48%,
        rgba(5,5,5,.45) 68%,
        rgba(5,5,5,.08) 100%
    );
  z-index: 1;
}

.hero-lines {
  display: none;
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center,
        rgba(255,255,255,.02),
        transparent 75%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 40px;
}

.hero-left {
  width: 100%;
  max-width: 620px;
  opacity: 0;
  animation: fadeInLeft 1s 0.3s forwards;
}

/* ==========================================================
   ANIMAÇÕES
========================================================== */

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(54px, 5vw, 82px);
  font-weight: 300;
  line-height: 0.98;
  color: var(--white);
  margin-bottom: 18px;
  letter-spacing: -1px;
}

.hero-title strong {
  display: inline-block;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
}

.hero-subtitle {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(22px, 2.2vw, 32px);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 1px;
  margin-bottom: 34px;
}

.hero-divider {
  width: 70px;
  height: 1px;
  background: linear-gradient(
    to right,
    var(--gold),
    transparent
  );
  margin-bottom: 32px;
}

.hero-desc {
  max-width: 480px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 42px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 16px 38px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s,
    transform 0.3s,
    box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.3);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 15px 38px;
  border: 1px solid rgba(201, 168, 76, 0.55);
  color: var(--gold);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.3s,
    color 0.3s,
    background 0.3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--dark);
  background: var(--gold);
}

/* ==========================================================
   ESTILOS COMPARTILHADOS DAS SEÇÕES
========================================================== */

section {
  padding: 100px 60px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(255,255,255,0.55);
  max-width: 520px;
}

/* ==========================================================
   ÁREAS DE ATUAÇÃO
========================================================== */

#areas {
  background: var(--dark);
}

.areas-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.1);
}

.area-card {
  background: var(--dark);
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  cursor: default;
}

.area-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--gold);
  transition: height 0.4s;
}

.area-card:hover {
  background: var(--dark-3);
}

.area-card:hover::before {
  height: 100%;
}

.area-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 60px;
  font-weight: 300;
  color: rgba(201,168,76,0.1);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s;
}

.area-card:hover .area-number {
  color: rgba(201,168,76,0.2);
}

.area-icon {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--gold);
}

.area-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.area-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
}

/* ==========================================================
   DIFERENCIAIS
========================================================== */

#diferenciais {
  background: var(--dark-2);
  position: relative;
  padding: 110px 60px;
}

#diferenciais .container > div:first-child {
  max-width: 820px !important;
  margin: 0 auto;
  text-align: center;
}

#diferenciais .section-title {
  font-size: clamp(46px, 5vw, 68px);
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

#diferenciais .section-title em {
  color: var(--gold);
  font-weight: 400;
  padding-left: 8px;
}

#diferenciais .section-desc {
  max-width: 760px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 2;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.68);
  text-align: center;
  letter-spacing: 0.15px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 80px;
}

.diff-card {
  text-align: center;
  padding: 36px 26px;
  border: 1px solid transparent;
  transition: transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease;
}

.diff-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 168, 76, 0.25);
  background: rgba(255, 255, 255, 0.015);
}

.diff-icon-wrap {
  width: 62px;
  height: 62px;
  border: 1px solid rgba(201, 168, 76, 0.35);
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  transition: background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease;
}

.diff-card:hover .diff-icon-wrap {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(-3deg) scale(1.05);
}

.diff-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  line-height: 1.4;
}

.diff-text {
  max-width: 250px;
  margin: 0 auto;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
}

/* ==========================================================
   CONTATO
========================================================== */

#contato {
  background: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

#contato::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.contact-wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}

.contact-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 70px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin: 16px 0 32px;
}

.contact-title em {
  font-style: italic;
  color: var(--gold);
}

.contact-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.9;
  margin-bottom: 56px;
}

.contact-options {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.contact-option:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.05);
  transform: translateY(-4px);
}

/* ==========================================================
   FOOTER
========================================================== */

footer {
  background:#111;
  border-top:1px solid rgba(201,168,76,.25);
  border-bottom:1px solid rgba(201,168,76,.25);
  padding:22px 40px;
}

.footer-inner{
    width:100%;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    align-items:center;
    padding:0 40px;
}

/* Informações à esquerda */
.footer-brand {
  justify-self: start;
  text-align:left;
}

.footer-logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 24px;
  color:#fff;
  margin-bottom:5px;
}

.footer-logo-sub {
  color: var(--gold);
  letter-spacing: 4px;
  font-size: 10px;
}

/* Ícones no centro */
.footer-social {
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:22px;
}

.footer-social-link {
  color:#8b8b8b;
  font-size:38px;
  transition:.35s;
}

.footer-social-link:hover {
  color:#c9a84c;
  transform:translateY(-4px);
}

.footer-divider{
  width:1px;
  height:45px;
  background:#c9a84c;
  opacity:.8;

}

/* Informações à direita */
.footer-right{
  font-size:13px;
  justify-self:end;
  text-align:right;
}

.footer-right span{
  color:#c9a84c;
  font-size:15px;
}

/* ==========================================================
   ÍCONES DA SEÇÃO DE CONTATO
========================================================== */

.contact-option-icon {
  width: 46px;
  height: 46px;

  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;




  color:#8b8b8b;

  font-size: 32px;

  transition:
    color .35s ease,
    transform .35s ease;
}

.contact-option:hover .contact-option-icon {
  color:var(--gold);
  transform:translateY(-3px);
}

.contact-option {
  min-width: 250px;
  padding: 26px 28px;

  display: block;

  position: relative;
  overflow: hidden;

  border: 1px solid rgba(201, 168, 76, 0.22);

  background: rgba(255, 255, 255, 0.01);

  text-align: left;
  text-decoration: none;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.contact-option:hover {
  transform: translateY(-5px);

  border-color: rgba(201, 168, 76, 0.55);

  background: rgba(201, 168, 76, 0.035);

  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.contact-option-label {
  margin-bottom: 6px;

  font-size: 9px;
  font-weight: 700;

  letter-spacing: 2.5px;
  text-transform: uppercase;

  color: var(--gold);
}

.contact-option-value {
  font-size: 14px;
  font-weight: 400;

  color: rgba(255, 255, 255, 0.9);

  line-height: 1.5;
}

/* ==========================================================
   RESPONSIVIDADE
========================================================== */

@media (max-width: 480px) {
  #hero {
    min-height: 780px;
  }

  .hero-background {
    background-position: 67% center;
  }

  .hero-content {
    padding: 130px 20px 50px;
  }

  .hero-title {
    font-size: clamp(44px, 14vw, 58px);
    line-height: 1;
  }

  .hero-subtitle {
    font-size: 22px;
  }

  .hero-eyebrow {
    font-size: 9px;
    letter-spacing: 3px;
  }

  .contact-option {
    width: 100%;
    min-width: 0;
  }

  .contact-option-value {
    overflow-wrap: anywhere;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
  }

  section {
    padding: 72px 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .areas-header {
    grid-template-columns: 1fr;
  }

  .areas-grid {
    grid-template-columns: 1fr;
  }

  footer {
    padding: 32px 24px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .footer-middle {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .footer-brand,
  .footer-social,
  .footer-right {
    justify-self: center;
  }

  .footer-right {
    text-align: center;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  #hero {
    min-height: 850px;
    align-items: flex-end;
  }

  .hero-background {
    background-position: 66% center;
  }

  .hero-overlay {
    background: linear-gradient(
        to bottom,
        rgba(8, 8, 8, 0.12) 0%,
        rgba(8, 8, 8, 0.45) 42%,
        rgba(8, 8, 8, 0.97) 72%,
        rgba(8, 8, 8, 1) 100%
      );
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 140px 24px 70px;
    align-items: flex-end;
  }

  .hero-left {
    max-width: 600px;
  }

  .hero-title {
    font-size: clamp(48px, 13vw, 68px);
  }

  .hero-desc {
    max-width: 100%;
  }

  .hero-actions {
    width: 100%;
    margin-top: 50px;
    gap: 22px;
  }

  .btn-primary, .btn-outline {
    width: 100%;
  }

  #diferenciais {
    padding: 80px 24px;
  }

  #diferenciais .section-desc {
    font-size: 14px;
    line-height: 1.85;
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 60px;
  }
}

@media (max-width: 600px) {
  .diff-grid {
    grid-template-columns: 1fr;
  }

  #diferenciais .section-title {
    font-size: 46px;
  }

  .diff-card {
    padding: 30px 20px;
  }
}