/* style.css - R2 Metalic */

body {
    font-family: 'Lato', sans-serif;
    scroll-behavior: smooth;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
  }
  
  /* Header */
  header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
  }
  
  .navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    margin-left: 1rem;
    transition: color 0.3s;
  }
  
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: #000;
  }
  
  .navbar-brand img {
    height: 50px;
  }
  
  /* Banner */
  #home {
    background-size: cover;
    background-position: center;
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0,0,0,0.5);
    position: relative;
  }
  
  #home .container {
    position: relative;
    z-index: 2;
  }
  
  #home::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1;
  }
  
  /* Seções */
  section {
    padding: 0px 0;
  }
  
  .section-title {
    font-family: 'Mulish', sans-serif;
    font-weight: 700;
    font-size: 2.8rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
    color: #2f5d52;
  }
  
  .text-justify {
    text-align: justify;
    line-height: 2.5em;
  }
  
  /* Footer */
  footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 30px 0;
  }
  
  /* Botões */
  .btn-primary {
    background-color: #000;
    border-color: #000;
  }
  
  .btn-primary:hover {
    background-color: #000;
    border-color: #000;
  }
  
  /* Responsivo extra */
  @media (max-width: 767px) {
    .navbar-nav .nav-link {
      margin-left: 0;
      margin-bottom: 10px;
    }
  }  

/* Remove qualquer filtro ou overlay que escureça os banners */
.carousel-item img {
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* Remove qualquer overlay escuro via pseudo-elemento */
.carousel-item::before {
  content: none !important;
  background: none !important;
}

/* Garante que não há fundo escuro na legenda, se usada */
.carousel-caption {
  background-color: transparent !important;
}

#home::before {
  content: none !important;
  background: none !important;
}

.bg-div {
  background-color: #f4f4f4;
}

#filiais {
  background-color: #fff;
}

#filiais img {
  max-width: 100%;
  height: auto;
}

.solucoes-img {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.solucoes-img:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

#contato i {
  color: #2f5d52;
  margin-right: 6px;
}

.bg-solucoes {
  background: url('../img/servicos.jpg') center center / cover no-repeat fixed;
  position: relative;
  z-index: 1;
}

.bg-solucoes::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6); /* leve escurecimento */
  z-index: 2;
}

.bg-solucoes > .container {
  position: relative;
  z-index: 3;
}

/* Estilo para links de contato */
#contato a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

#contato a:hover {
  color: #005d57;
  text-decoration: none;
}

#contato a i:hover {
  color: #005d57;
  transition: color 0.3s;
}

#contato .bi {
  color: #005d57;
  transition: color 0.3s;
}

#contato .bi:hover {
  color: #003e3a;
}