/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
}

a {
  text-decoration: none;
  color: #cc0000;
}

a:hover {
  color: #cc0000;
  text-decoration: none;
}

p {
  margin-bottom: 0.5rem;
}

b {
  color: #cc0000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
}

.padding-box {
  padding: 10px 0;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/
#topbar {
  background: #f0f0f0;
  font-size: 15px;
  height: 50px;
  padding: 0;
}


/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #ffffff;
  transition: all 0.5s;
  z-index: 997;
  height: 90px;
}


#header .logo img {
  max-height: 90px;
}

.scrolled-offset {
  margin-top: 90px;
}

/*--------------------------------------------------------------
# HERO
--------------------------------------------------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 80vh;
  /* Ajusta a altura conforme necessário */
  background: url('../img/slide/slide-1.jpg') no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 1, 1, 0.766);
  /* Ajuste a opacidade conforme necessário */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 900;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-description {
  font-size: 1rem;
  max-width: 800px;
  /* Limita a largura da descrição */
}

.hero-button {
  font-size: 1rem;
  padding: 7px 15px;
  text-transform: uppercase;
  color: white;
  background-color: #cc0000;
  border: none;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.hero-button:hover {
  background-color: #ffffff;
}

/*--------------------------------------------------------------
# ABOUT
--------------------------------------------------------------*/
.about {
  padding: 60px 10px;
  text-align: center;
}

.about img {
  max-width: 100%;
  height: auto;
  border: 0px solid;
  border-radius: 20px;
}

.about h3 {
  color: #cc0000;
  font-weight: 800;
  font-size: 2.2rem;
  padding-top: 30px;
}

.about h4 {
  color: #cc0000;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.missao {
  padding-top: 30px;
}

.diferenciais img {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
}

.diferenciais p {
  padding: 0;
}

/*--------------------------------------------------------------
# SERVIÇOS
--------------------------------------------------------------*/
.services {
  background-color: rgb(240, 240, 240);
  text-align: center;
  padding: 60px 10px;
}

.services h3 {
  color: #cc0000;
  font-weight: 800;
  margin-bottom: 20px;
  font-size: 2.2rem;
}

.services h4 {
  color: #cc0000;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.services h5 {
  color: #ffffff;
  font-weight: 500;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.services p {
  font-size: 1rem;
  margin-bottom: 40px;

}

.services img {
  max-width: 100%;
  height: auto;
  border: 0px solid;
  border-radius: 20px;
}

.overlay-container {
  position: relative;
  width: 100%;
}

.overlay-container img {
  width: 100%;
  height: auto;
  display: block;
  margin: 20px 0;
}

.services .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(46, 3, 3, 0.687);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border: 0px solid;
  border-radius: 20px;
}

.overlay-container:hover .overlay {
  opacity: 1;
  cursor: pointer;
}

/*--------------------------------------------------------------
# ATENDIMENTO
--------------------------------------------------------------*/

.atendimento {
  text-align: center;
  padding: 60px 10px;

}

.atendimento h3 {
  color: #cc0000;
  font-weight: 800;
  font-size: 2.2rem;
}

.atendimento p {
  font-size: 1rem;
}

.atendimento img {
  max-width: 90%;
  height: auto;
}


/*--------------------------------------------------------------
# ORÇAMENTO
--------------------------------------------------------------*/

.cta-section {
  height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 10px;
  max-width: 100%;
  background-image: url(../img/cta.png);
  /* Cor de fundo */
}

.cta-content {
  background-color: #ffffffe4;
  /* Cor de fundo branca para o container */
  text-align: center;
  padding: 2rem;
  border-radius: 20px;
  /* Borda arredondada */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  /* Sombra suave */
}

.cta-section h3 {
  color: #cc0000;
  font-weight: 800;
  font-size: 2.2rem;
}

.cta-section .btn {
  text-transform: uppercase;
}


/*--------------------------------------------------------------
# GOOGLE
--------------------------------------------------------------*/

.review {
  padding: 60px 10px;
  text-align: center;
}

.review h3 {
  color: #cc0000;
  font-weight: 800;
  font-size: 2.2rem;
}

.reviews p {
  font-size: 1rem;
}

.google-button {
  font-size: 1rem;
  padding: 5px 10px;
  text-transform: uppercase;
  color: white;
  background-color: #cc0000;
  border: 3px solid #cc0000;
  border-radius: 20px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.google-button:hover {
  background-color: white;
  color: #cc0000;

}

.carousel-item img {
  max-width: 80%;
  height: auto;
  display: block;
  margin: 0 auto;
  /* Centralizar imagem no carrossel */
}


/* Botões de navegação do carrossel */
.carousel-control-prev,
.carousel-control-next {
  width: 10%;
  /* Borda circular */
  opacity: 0.8;
  /* Opacidade */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  /* Inverte a cor do ícone */
}


/* Indicadores do carrossel */
.carousel-indicators {
  bottom: -30px;
  /* Ajuste de posição */
}

.carousel-indicators li {
  background-color: #6c757d;
  /* Cor das bolinhas */
  border-radius: 50%;
  /* Borda circular */
  width: 10px;
  height: 10px;
  margin: 0 5px;
  cursor: pointer;
}

.carousel-indicators .active {
  background-color: #dc3545;
  /* Cor da bolinha ativa */
}

.partner-section {
  margin-top: 60px;
}

.partner-section h2 {
  color: #cc0000;
  font-weight: 800;
  font-size: 2.2rem;
  text-align: center;
}

.partner-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.partner-logo {
  width: 150px;
  /* Ajuste conforme necessário */
  height: auto;
}


/*--------------------------------------------------------------
# CONTATO
--------------------------------------------------------------*/

.contact {
  text-align: center;
  padding: 60px 10px;
  background-color: rgb(240, 240, 240);
}

.contact h3 {
  color: #cc0000;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 2.2rem;

}


.contact h4 {
  color: #cc0000;
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 10px;

}

.cotacao {
  text-align: left;
}


#map {
  max-width: 100%;
  height: 400px;
  border-radius: 20px;
  z-index: 0;
  margin-top: 80px;
}

#map-container {
  position: relative;
}

#map-blocker {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 999;
  margin-top: 40px;
}

.cotacao .btn {
  font-size: 1rem;
  text-transform: uppercase;
}

.form-group {
  font-size: 1rem;
  font-weight: 900;
}

.form-control {
  font-size: 0.8rem;
  width: 100%;
  height: 40px;
}


/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.footer {
  background-color: rgb(255, 255, 255);
  /* Cor de fundo escura */
  color: #000000;
  /* Cor do texto branca */
  padding: 20px 10px 20px 10px;
}

.footer img {
  max-width: 100%;
  height: 120px;
}

.footer a {
  color: black;
}

.footer a:hover {
  color: #cc0000;
}

.footer h4,
.footer h5 {
  color: #cc0000;
  font-weight: 800;
  font-size: 1.5rem;
}

.footer p {
  font-size: 1rem;
}



/*--------------------------------------------------------------
# NAVEGAÇÃO
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px 10px 30px;
  font-size: 17px;
  font-weight: 800;
  color: #222222;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #cc0000;
}

.navbar .getstarted,
.navbar .getstarted:focus {
  color: #cc0000;
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  border: 2px solid #cc0000;
  transition: 0.3s;
  font-size: 14px;
}

.navbar .getstarted:hover,
.navbar .getstarted:focus:hover {
  background: #cc0000;
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #cc0000;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #222222;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(9, 9, 9, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #222222;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #cc0000;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #cc0000;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}