.banner {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.banner-overlay {
  background-color: rgba(0, 0, 0, 0.5);
}

.card-img-top {
  height: 220px;
  object-fit: contain;
  background: #f8f9fa;
  padding: 15px;
}

.card-title {
  font-weight: 600;
  color: #0a6847;
}



/* Efeito no logo ao passar o mouse */
.logo-hover {
  transition: transform 0.3s ease;
}
.logo-hover:hover {
  transform: scale(1.1);
}

/* Menu hover elegante */
.menu-hover {
  position: relative;
  transition: color 0.3s ease;
}
.menu-hover::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #198754;
  transition: width 0.3s;
}
.menu-hover:hover {
  color: #198754;
}
.menu-hover:hover::after {
  width: 100%;
}


.img-sobre {
  max-width: 70%;
  display: block;
  margin: auto;
}

.bloco-contato {
  background-color: #0a6847;
}

.bloco-contato span,
.bloco-contato a {
  font-size: 1.4rem;
  font-weight: bold;
  color: #fff;
}

.bloco-contato a:hover {
  text-decoration: underline;
  color: #d4ffd2;
}

/* Seção Botijões de Gás */
#gas {
  background-color: #f8f9fa;
  padding-top: 60px;
  padding-bottom: 60px;
}

#gas h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #0a6847;
  margin-bottom: 30px;
}

/* Seção Botijões de Gás */
#gas {
  background-color: #f8f9fa;
  padding: 40px 0;
}

#gas h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #0a6847;
  margin-bottom: 25px;
}

/* Card */
#gas .card {
  border: none;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease;
}

#gas .card:hover {
  transform: translateY(-4px);
}

/* Imagem */
#gas .card-img-top {
  height: 160px;
  object-fit: contain;
  padding: 10px;
  border-bottom: 1px solid #eee;
}

/* Título */
#gas .card-title {
  font-size: 1rem;
  font-weight: 600;
  color: #0a6847;
  text-transform: uppercase;
  margin-bottom: 10px;
}

#gas .card {
  border: none;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.2s ease;
  overflow: hidden;
}

#gas .card-img-top {
  height: 160px;
  object-fit: contain;
  padding: 15px;
  background-color: #fff; /* <- Isso garante que a área da imagem fique branca */
  border-bottom: 1px solid #eee;
}

#agua .card {
  border: none;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

#agua .card-img-top {
  height: 160px;
  object-fit: contain;
  background-color: #fff;
  padding: 15px;
  border-bottom: 1px solid #eee;
}

#limpeza .limpeza-slider {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; /* Firefox */
}
#limpeza .limpeza-slider::-webkit-scrollbar {
  display: none; /* Chrome */
}

#limpeza .card-limpeza {
  scroll-snap-align: start;
  border: none;
  box-shadow: 0 1px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
  background-color: #fff;
  transition: transform 0.2s ease;
}
#limpeza .card-limpeza:hover {
  transform: translateY(-4px);
}
#limpeza .card-img-top {
  height: 160px;
  object-fit: contain;
  padding: 10px;
  background: #f8f9fa;
  border-bottom: 1px solid #eee;
}


.sobre-empresa {
  background: url('assets/img/banner-sobre.jpg') center center/cover no-repeat;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sobre-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.sobre-empresa .container {
  z-index: 2;
}
.bloco-contato {
  margin-top: -40px;
  z-index: 5;
  position: relative;
  border-top: 5px solid #198754;
}

@media (max-width: 768px) {
  .bloco-contato span,
  .bloco-contato a {
    font-size: 1rem !important;
    text-align: center;
  }
}

#coala .card-img-top {
  height: 220px;
  object-fit: cover;
  background-color: #fff;
}

#carouselBanner {
  max-width: 850px;
  height: 110px;
  margin: 40px auto 0; /* 40px de margem acima, auto nas laterais, 0 abaixo */
  overflow: hidden;
  border-radius: 10px;
}


#carouselBanner .carousel-inner,
#carouselBanner .carousel-item,
#carouselBanner img {
  height: 110px;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 768px) {
  #carouselBanner .carousel-inner {
    max-height: 80px;
  }

  #carouselBanner img {
    max-height: 80px;
  }
}