  .custom-navbar {
    background-color: #f18d01 !important; /* cor suave sugerida */
  }

  .custom-banner {
  width: 100vw; /* ocupa toda a largura da janela */
  margin: 0; /* remove margens */
  padding: 0.5rem 1rem;
  background-color: #02f143;
  color: #fff;
  font-weight: 500;
  border-top: 3px solid #0ca334;
  border-bottom: 3px solid #0ca334;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

  .custom-navbar .nav-link,
  .custom-navbar .navbar-brand {
    color: #fff !important;
    font-weight: 500;
  }

  .custom-navbar .nav-link:hover {
    text-decoration: underline;
  }

  .custom-navbar .nav-link.active {
    font-weight: 700;
    text-decoration: underline;
  }

  .slogan {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff; /* branco */
  white-space: nowrap;
  }

  .whatsapp-float {
  position: fixed;
  bottom: 60px; /* antes era 20px */
  right: 20px;
  z-index: 100;
  cursor: pointer;
}

.carousel-item {
  min-height: 400px; /* altura total do slide */
}

.carousel-img {
  height: 100%;
  object-fit: cover;
}

.carousel-item h6 {
  font-size: 1rem;
  font-weight: 600;
}

.carousel-item p {
  font-size: 0.9rem;
}


.custom-footer {
  background-color: #f18d01 ; /* mesma cor do menu */
  color: #fff;
  font-size: 0.9rem;
  border-top: 4px solid #0ca334; /* verde suave da identidade visual */
  padding-top: 1rem;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none; /* remove o ícone branco padrão */
  width: 2rem;
  height: 2rem;
  border: solid black;
  border-width: 0 3px 3px 0;
  padding: 5px;
  display: inline-block;
  transform: rotate(45deg);
  background-color: transparent;
}

.carousel-control-prev-icon {
  transform: rotate(135deg); /* seta para a esquerda */
  margin-left: 10px;
}

.carousel-control-next-icon {
  transform: rotate(-45deg); /* seta para a direita */
  margin-right: 10px;
}

.video-container {
  width: 30%;
  height: 30%;
  aspect-ratio: 9 / 16; /* para vídeos verticais */
  overflow: hidden;
  position: relative;
  background-color: #000; /* opcional, evita “fundo branco” */
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Botão enviar formulário */
.custom-btn {
  background-color: #0ca334;
  color: white;
  border: none;
  padding: 0.6rem 1.5rem;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-btn:hover {
  background-color: #0a892a;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-1px);
}

.custom-btn:active {
  background-color: #087425;
  box-shadow: inset 0 3px 5px rgba(0,0,0,0.2);
  transform: scale(0.98);
}

/* Tamanho do card dos produtos */
.card-img-top {
  height: 250px;
  object-fit: cover;
}

.custom-footer img {
  max-height: 40px;
}

@media (max-width: 768px) {
  .navbar-brand img {
    height: 40px;
  }

  .custom-banner {
    font-size: 0.9rem;
    padding: 0.5rem;
  }
}

@media (max-width: 991px) {
  .slogan {
    display: none;
  }
} 

@media (max-width: 767px) {

  .carousel-item .col-md-4 {
    display: none;
  }  

  .carousel-img {
    height: auto;
  }
}
