: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;
  --radius: 8px;
}

.text-gold {
  color: var(--gold);
}

.bg-forest {
  background-color: var(--forest);
}

@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;
  scroll-behavior: smooth;
}

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: var(--radius);
  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: var(--radius);
  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);
}

.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.section-label::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold);
}

.quote-block {
  padding: 1.8rem 2rem;
  border: 2px solid var(--gold);
  border-left: 10px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background-color: var(--forest);
  font-family: Poppins, serif;
  color: white;
  text-transform: uppercase;
}

.service-card {
  border: none;
  height: 100%;
  box-shadow: var(--bs-box-shadow) !important;
  transition: transform 0.3s;
  background-color: var(--forest);
}

.service-card:hover {
  border: 1px solid var(--gold);

  .card-icon-div {
    transform: scale(1.1);
    background: black;
  }

  .card-icon {
    color: var(--gold);
  }

  h4 {
    color: var(--gold);
  }
}

.card-icon-div {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(to bottom right, var(--gold), var(--gold-light));
  border-radius: 0.75rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out;
  margin-bottom: 0.5rem;
}

.card-icon {
  font-size: 2rem;
  color: black;
}

.card-title {
  color: white;
}

.card-text {
  color: var(--muted);
}

.market-card {
  border: 1px solid var(--gold-light);
  margin-bottom: 1rem;
}

.market-card:hover {
  border: 3px solid var(--gold);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step {
  padding: 0.5rem 0 0.5rem 1rem;
  border-left: 1px solid var(--forest);
  position: relative;
  transition: border-color 0.3s;
}

.step:hover {
  border-color: var(--gold);
}

.step-dot {
  position: absolute;
  left: -5px;
  top: 2.2rem;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--forest);
  border: 1px solid var(--forest);
  transition:
    background 0.3s,
    border-color 0.3s;
}

.step:hover .step-dot {
  background: var(--gold);
  border-color: var(--gold);
}

.step:hover h3 {
  color: var(--gold);
}

.step:hover p {
  color: var(--black);
}

.step-num {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.step h3 {
  font-family: Poppins, serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.step p {
  font-size: 0.9rem;
  color: var(--green);
  margin-bottom: 0;
}

.bg-overlay {
  min-height: 400px;
}

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%); */
    clip-path: none;
  }

  .bg-overlay {
    min-height: 600px;
  }
}

@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;
  }

  #textoGBG,
  #textoGBP {
    font-size: 10rem !important;
  }
}
