* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f6f7fb;
}

:root {
  --cor-01: #042D29;
  --cor-02: #0A7E4D;
  --cor-03: #AFEB2B;
  --cor-04: #304730;
  --cor-05: #eef7e2;
  --cor-bg: #efefef;
  --degrade: linear-gradient(to bottom, #111111, #2b2b2b);
  --sidebar: #15312d;
}

a {
  color: var(--cor-02);
  text-decoration: none;
}

a:hover {
  color: var(--cor-03);
  text-decoration: none;
}

/* i {
  color: var(--cor-03);
} */

/* VISUAL DE TEXTOS */

.text-primary {
  color: var(--cor-03) !important;
}

.destaque {
    color: var(--cor-03);
}

.descricao {
    font-size: 1.1rem;
    color: var(--cor-05);
}

/* Título e destaque */
.titulo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cor-05);
}

/* Título e destaque */
.titulo-2 {
    font-size: clamp(3rem, 8vw, 8rem);
    font-weight: 800;
    color: var(--cor-03);
}

.titulo-3 {
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--cor-03);
}

.titulo-slim {
    font-size: 1rem;
    letter-spacing: 5px;
    color: var(--cor-05);
}

.sub-titulo {
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--cor-03);
}

/* VISUAL PADRÃO DE BOTÃO */

.btn-primary {
  background-color: var(--cor-03) !important;
  color: var(--cor-01);
  padding: 6px 15px;
  border: none;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--cor-04) !important;
  color: var(--cor-05);
  text-decoration: none;
}

/* VISUAL PADRÃO DE BBACKGROUND */

.bg-primary {
  background-color: var(--cor-03) !important;
}

.bg-primary:hover {
  background-color: var(--cor-01) !important;
  color: var(--cor-05);
}

.bg-card {
  background-color: #c7d8b8;
}

/* VISUAL PADRÃO DE SOBRA */

.hover-shadow:hover {
    transform: scale(1.03);
    transition: 0.3s;
}

/* VISUAL MODAIS */
.modal-content.custom-dark {
  background-image: var(--degrade);
  color: #fff;
}


/* KEYFRAMES */

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* ---- CONFIG NAVBAR ---- */
.navbar {
  background-color: transparent;
  transition: background-color 0.3s ease-in-out;
}

.navbar.scrolled {
  background-color: var(--sidebar);
}

.nav-link {
  color: #fff;
}

.nav-link:hover {
  color: var(--cor-03);
  font-weight: 600;
}

/* SESSÃO 01 */

.sessao-01 {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: end;
}

/* Vídeo de fundo */
.video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: grayscale(100%) contrast(1.2) brightness(0.9);
}

/* Overlay com gradiente animado */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(334deg, #000000dc, #383838e0);
  background-size: 180% 180%;
  animation: gradient-animation 6s ease infinite;
  z-index: 2;
}

/* Conteúdo por cima de tudo */
.conteudo-hero {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}


/* SESSÃO 02 */
.cardes h6, p {
  color: var(--cor-04);
}

.cardes img {
  text-align: center;
}

.inner-box {
  border-radius: 2rem;
}

.inner-box .rounded-4 {
  background-color: #1e1e25;
  border-radius: 1rem;
}


/* .inner-box .card {
  background-color: #f0f0f0;
  color: var(--cor-01);
} */

@media (max-width: 767px) {
  .inner-box {
    padding: 2rem !important;
  }
}


/* SESSÃO 03 */

.sessao-03 span {
  color: var(--cor-03);
}

/* SESSÃO 04 */
.btn-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  background-color: var(--cor-01, #fff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-play:hover {
  background-color: var(--cor-02, #ccc);
}

.btn-play i {
  font-size: 2rem;
  color: var(--cor-03, #000);
}

.video-card video {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 767.98px) {
  .video-card {
    min-height: 250px;
  }
}





/* ---- PAGINA ABOUT ---- */
.about {
  background-image: url(../img/bg-sobre.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  height: 100dvh;
}

.bg-ba {
  background: #1b1b1b;
}

.bg-ga {
  background: #1a1a1a;
}


/* SESSÃO 05 */
.sessao-05 {
  background-image: var(--degrade);
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
  max-height: 420px;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  object-fit: cover;
  object-position: center;
}
.gallery-item:hover img {
  transform: scale(1.1);
}
.gallery-item .overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(0,0,0,0.7);
}
.gallery-item:hover .overlay {
  opacity: 1;
}
.gallery-text {
  color: white;
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.gallery-item i {
  font-size: 30px;
  color: var(--cor-01);
}

@media (max-width: 500px) {
  .gallery-item {
    flex: none;
    max-width: 100%;
    max-height: 320px;
  }
}

/* PAGINA ALL PROJECTS */
.all-projects {
  background-image: url(../img/bg-sobre.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

/* ---- FOOTER ----  */

footer a {
  color: var(--cor-03);
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
}

footer i {
  color: var(--cor-03);
}

footer h6, p {
  color: #aaaaaa;
}

footer img {
  max-width: 200px;
  padding-bottom: 30px;
}

.social-icons {
  display: inline-flex;
  list-style: none;
}

.social-icons a {
  position: relative;
  border:
1px solid var(--cor-03);
  border-radius:
50%;
  padding:
15px;
  margin:
10px;
  width: 35px;
  height: 35px;
  font-size: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  cursor: pointer;
  transition:
all 0.2s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mapinha {
  height: 55px;
  width: auto;
  margin-top: 33px;
}

.whatsapp {
  width: 120px;
  position: fixed;
  top: 80%;
  right: 1%;
  padding: 10px;
  z-index: 10000000;
}

/* Estilo geral do banner de cookies */
.cookies-container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 350px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  z-index: 1000;
  font-family: 'Poppins', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Cabeçalho do banner (inclui o ícone e a frase) */
.cookies-header {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  text-align: center;
}

.cookies-header i {
  font-size: 24px;
  color: #ff9800;
  margin-right: 10px;
}

.cookies-header h3 {
  font-size: 16px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

/* Texto explicativo */
.cookies-container p {
  font-size: 14px;
  color: #555;
  margin: 10px 0;
  text-align: center;
}

.cookies-options label {
  font-size: 13px;
  color: #333;
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.cookies-options input[type="checkbox"] {
  margin-right: 8px;
  accent-color: #007bff;
}

/* Estilo do botão de salvar */
.cookies-save {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 5px;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.cookies-save:hover {
  background-color: #0056b3;
}

/* Estilo responsivo */
@media (max-width: 600px) {
  .cookies-container {
    width: 90%;
    right: 5%;
    bottom: 10px;
  }
}
