@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html,
body {
  position: relative;
  height: 100%;
}

body {
  background: #eee;
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  color: #000;
  margin: 0;
  padding: 0;
}
a {
  text-decoration: none;
}
.navbar-brand img {
  max-width: 120px;
}

ul.navbar-nav li.nav-item > a.nav-link {
  color: #ffbe5a;
  font-size: 16px;
  font-weight: 500;
}

.navbar {
  background-color: transparent !important;
  transition: background-color 0.3s ease;
  position: absolute;
  width: 100%;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: #ffffff !important;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  width: 100%;
}

.owl-dots {
  display: none;
}
.text-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
  height: 100%; /* Garante que o texto ocupe toda a altura do slide */
  padding: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5); /* Fundo escuro para o texto */
}

.text-container h1 {
  font-size: 4rem;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
}

.text-container a {
  background-color: #0e334d;
  padding: 15px 25px;
  border-radius: 30px;
  color: #ffbe5a;
  margin-top: 25px;
  text-decoration: none;
}

/* Estilo do slide */
.owl-carousel .slide-item {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  background-position: center;
  height: 100vh; /* Garante que o slide ocupe toda a altura da tela */
}

.owl-carousel .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.desktop-section {
  display: block;
}

.mobile-section {
  display: none;
}

section.banner-sobre {
  width: 100%;
  height: auto;
  background-image: url("img/About.png");
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
  padding: 30px;
}

.text-sobre h3 {
  width: 400px;
  color: #fff;
  font-size: 48px;
}

.text-sobre-baixo {
  margin-top: 50px;
  width: 400px;
  font-size: 24px;

  width: 400px;
  color: #fff;
}
.text-sobre-baixo p {
  text-align: right;
}

section.servicos {
  padding: 30px;
}
.card-video video {
  width: 350px;
}

.card-video h3 {
  padding: 15px 0;
}

.text-card p {
  width: 380px;
}

section.nossa-historia {
  padding: 30px;
  background-color: #fff;
}

section.nossa-historia p {
  padding-top: 40px;
  font-size: 16px;
}

section.nossa-historia img {
  width: 95%;
}

.marcas {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.marcas-sec1,
.marcas-sec2 {
  flex: 1;
  width: 50%; /* Cada lado ocupa 50% da largura */
  min-height: 100vh; /* Cada parte ocupa 100% da altura */
}

.marcas-sec1 {
  background-color: #6385aa; /* Fundo azul */
  color: #fff;
  padding: 50px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.marcas-sec1 h3 {
  font-size: 55px;
  margin-bottom: 20px;
  color: #fff;
}

.marcas-sec1 p {
  font-size: 1rem;
  line-height: 1.6;
  color: #fff;
}

/* Seção de imagens de marcas */
.marcas-sec2 {
  background-color: #fff; /* Fundo branco */
  padding: 50px 30px;
  justify-items: center;
  align-items: center;
}

.marcas-sec2 img {
  width: 100%;
  height: auto;
}

.contato {
  position: relative; /* Necessário para posicionar o pseudo-elemento */
  background-image: url("img/pexels-nietjuh-934062.jpg");
  background-position: center center;
  background-attachment: fixed;
  background-size: cover;
  padding: 30px;
  color: #fff; /* Para o texto ficar visível sobre o overlay */
}

.contato::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6385aa;
  opacity: 0.7; /* Ajuste de transparência */
  z-index: 1; /* Mantém o overlay abaixo do conteúdo */
}

.contato * {
  position: relative;
  z-index: 2; /* Garante que o conteúdo fique acima do overlay */
}

.contato-blur {
  background-color: rgba(255, 255, 255, 0.3); /* Fundo branco transparente */
  backdrop-filter: blur(10px); /* Aplica o blur */
  border-radius: 10px; /* Cantos arredondados (opcional) */
  padding: 30px; /* Espaçamento interno */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2); /* Sombra suave (opcional) */
}

.info-item {
  padding: 20px 0; /* Espaçamento interno */
  border-bottom: 1px solid #e0e0e0; /* Linha separadora */
}

.info-item:last-child {
  border-bottom: none; /* Remove a borda do último item */
}

.info-item p {
  font-size: 16px;
  color: #333;
}

.info-item p i {
  font-size: 18px;
  margin-right: 20px;
}

.info-item p::before {
  margin-right: 10px;
  font-size: 20px;
  color: #0e334d;
}

.redes-sociais {
  display: flex;
  justify-content: start;
  padding: 30px 0;
}

.redes-sociais a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 10px;
  background-color: #0e334d;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.redes-sociais a:hover {
  background-color: #ffbe5a;
  color: white;
}

.btn-orcamento {
  display: inline-block;
  background-color: #0e334d;
  color: #fff;
  padding: 15px 40px;
  border-radius: 30px;
  font-size: 18px;
  text-align: left;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-orcamento:hover {
  background-color: #ffbe5a;
  color: white;
}

.orcamento {
  text-align: left;
  margin-top: 20px;
}

.orcamento a {
  text-decoration: none;
}

footer {
  background-color: #333; /* Cor de fundo do footer */
  color: #fff; /* Cor do texto */
  padding: 20px 0; /* Espaçamento interno */
  text-align: center; /* Centraliza o texto */
}

footer a {
  color: #ffbe5a;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 768px) {
  .desktop-section {
    display: none;
  }

  .mobile-section {
    display: block;
  }

  .owl-carousel div img {
    object-fit: cover;
    height: 380px;
  }

  .text-container h1 {
    font-size: 2rem;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    margin-bottom: 30px;
  }

  .text-container a {
    background-color: #0e334d;
    padding: 15px 25px;
    border-radius: 30px;
    color: #ffbe5a;
    margin-top: 25px;
    text-decoration: none;
  }

  iframe {
    width: 250px !important;
  }
  .text-sobre h3 {
    font-size: 28px;
    width: 100%;
  }

  .marcas {
    flex-direction: column;
  }

  .marcas-sec1,
  .marcas-sec2 {
    width: 100%;
  }

  .marcas-sec1 h3 {
    font-size: 35px;
    margin-bottom: 20px;
    color: #fff;
  }

  .info-item p {
    font-size: 14px;
  }

  .redes-sociais a {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .btn-orcamento {
    font-size: 16px;
    padding: 12px 30px;
  }
}
