:root {
  --preto: #000000;
  --branco: #ffffff;
  --cinza-claro: #d5d0ca;
  --cinza-escuro: #1e1e1e;
  --verde-profundo: #0d2216;
  --verde-secundario: #0f2a18;
  --dourado: #d6a43b;
  --dourado-claro: #e2b84f;
  --off-white: #f6f3ec;
  --texto-escuro: #222222;
}

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

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, sans-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;
}

.cor-preto {
  color: var(--preto);
}

.cor-branco {
  color: var(--branco);
}

.cor-dourado {
  color: var(--dourado);
}

.cor-cinza-claro {
  color: var(--cinza-claro);
}

.cor-cinza-escuro {
  color: var(--cinza-escuro);
}

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

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--verde-profundo);
  border-bottom: 1px solid rgba(214, 164, 59, 0.3);
}

.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: 100px;
  width: auto;
  display: block;
  transition: 1s;
  /* margin-top: 105px; */
}

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

.nav-link:hover {
  color: var(--dourado);
}

.btn-contact-header {
  background-color: var(--dourado);
  color: var(--verde-profundo);
  border: 1px solid var(--dourado);
  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(--verde-profundo);
}

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

  .hero-content {
    width: 300px !important;
  }

  #heroTitle {
    font-size: 3rem !important;
  }

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

  .text-block {
    width: 300px !important;
  }
}

/* HERO */
.hero-video-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #000;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  width: 1000px;
}

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

.service-card {
  border: none;
  box-shadow: var(--bs-box-shadow) !important;
  transition: transform 0.3s;
}

.service-card:hover {
  /* transform: translateY(-10px) !important; */
  border: 1px solid var(--dourado);

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

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

.card-icon-div {
  width: 4rem;
  height: 4rem;
  background: linear-gradient(
    to bottom right,
    var(--dourado),
    var(--dourado-claro)
  );
  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: var(--verde-profundo);
}

.parallax {
  position: relative;
  min-height: 400px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-diferencial {
  background: rgba(0, 0, 0, 0.5);
}

.text-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* background: rgba(0, 0, 0, 0.7); */
  color: white;
  padding: 1rem 1rem 0 1rem;
  width: 700px;
}

.logo-gbg {
  float: left;
  width: 150px;
}

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

.footer-link {
  color: var(--dourado-claro);
  text-decoration: none;
}
