:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --green: #2d6a4f;
  --green-bright: #3a8f68;
  --dark: #0a0e0d;
  --dark2: #111615;
  --dark3: #161e1b;
  --text: #e8ede9;
  --text-muted: #8fa89a;
  --border: rgba(201, 168, 76, 0.2);
  --black: #080c0b;
  --deep: #0d1a14;
  --forest: #122b1e;
  --green: #1a4030;
  --mid: #24573f;
  --cream: #f5f0e8;
  --white: #ffffff;
  --muted: #7a9484;
}

@font-face {
  font-family: "AcanthusSSK";
  font-weight: normal;
  font-style: normal;
  src: url("AcanthusSSK.ttf") format("truetype");
}

html,
body {
  /* para corrigir problema de responsividade mobile causado pela biblioteca AOS */
  width: 100%;
  overflow-x: hidden;
}

html {
  font-size: 20px;
}

body {
  font-family: Inter, Roboto, sans-serif;
  background-color: var(--cinza-claro);
  color: var(--preto);
}

h1,
h2,
h3 {
  font-family: Montserrat, Poppins, serif;
}

.font-AcanthusSSK {
  font-family: "AcanthusSSK", serif;
}

.font-montserrat {
  font-family: Montserrat, serif;
}

.font-poppins {
  font-family: Poppins, serif;
}

.font-inter {
  font-family: Inter, sans-serif;
}

.font-roboto {
  font-family: Roboto, sans-serif;
}

/* HEADER */
#barraNavegacao {
  background-color: var(--dark);
  height: 80px;
  transition: 1s;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--dark);
  border-bottom: 1px solid var(--border);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo-img {
  position: fixed;
  height: 150px;
  width: auto;
  display: block;
  transition: 1s;
}

.nav-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-item {
  font-size: 15px;
  font-weight: 500;
  transition: all 0.3s;
}

.nav-link {
  color: #e9e3d7;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-link:hover,
.nav-link-active {
  color: var(--gold);
}

.btn-contact-header {
  background-color: var(--gold);
  color: var(--dark);
  border: 1px solid var(--gold);
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 16px rgba(214, 164, 59, 0.35);
}

.btn-contact-header:hover {
  background-color: var(--dark);
}

.parallax {
  position: relative;
  min-height: 400px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed; /* não suportado no iOS */
}

#heroBg {
  clip-path: polygon(0% 0%, 60% 0%, 60% 50%, 30% 100%, 0% 100%);
}

.hero-content {
  z-index: 2;
  color: white;
}

#heroTitle {
  color: var(--gold);
  font-size: 3rem;
  padding-top: 120px;
}

.btn-primary {
  font-size: 0.82rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark);
  background: var(--gold);
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.2s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

h1 em,
h2 em {
  font-style: italic;
  color: var(--gold);
}

footer {
  background-color: var(--dark);
  color: white;
  font-size: 0.9rem;
}

.footer-link {
  color: var(--gold-light);
  text-decoration: none;
}

@media only screen and (max-width: 1000px) {
  .logo-img {
    height: 100px;
  }

  #heroBg {
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}

@media only screen and (max-width: 600px) {
  #navbarNav {
    padding-bottom: 1rem;
  }

  .btn-contact-header {
    margin-left: 0 !important;
  }

  #heroTitle {
    padding-top: 100px;
  }

  #brHeroSubtitle2 {
    display: none;
  }
}
