#inicio {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Deixa o conteúdo do carrossel visível sobre o fundo */
#inicio .carousel {
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.4); /* escurece levemente pra destacar as legendas */
}
.navbar-brand {
  font-family: 'Baloo 2', cursive;
  font-weight: 700;
  color: yellow !important; /* mantém o contraste com o fundo */
}


.navbar-custom {
  background-color: #1f6706;
}
/* Navbar compacta */
.navbar {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

/* Logo maior, mas visualmente centralizada */
.logo-redonda {
  width: 65px; /* tamanho visível maior */
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  position: relative;
  top: -6px; /* sobe um pouco pra alinhar com o texto */
}

/* Espaçamento pro conteúdo não ficar escondido */
body {
  font-family: 'Nunito', sans-serif;
  padding-top: 75px;
  margin: 0;
}
@media (max-width: 768px) {
  .carousel-caption {
  position: absolute;
  top: auto;
  bottom: 15%;
  transform: none;
  padding: 0  15px;
  }
  .carousel-caption h1,
  .carousel-caption h2 {
    font-size: 1.4rem;
  }
  .carousel-caption p {
    font-size: 0.9rem;
  }
}
  .carousel-caption {
    z-index: 10;
  }

.navbar .nav-link {
  color: yellow !important;
}

.navbar .nav-link.active,
.navbar .nav-link:focus,
.navbar .nav-link:hover {
  color: #f1f1f1 !important;
}

#carouselPetShop {
  overflow: hidden;
}

.carousel-item {
  position: relative;
  overflow: hidden;
  height: 500px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateY(0);
  transition: transform 0.2s ease-out;
}

/* Gradiente sobre as imagens do carrossel */
.carousel-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
  z-index: 1;
}

/* Mantém as legendas acima do gradiente */
.carousel-caption {
  position: absolute;
  z-index: 2;
}


.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 40px;
  right: 40px;
  border-radius: 50%;
  text-align: center;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
  transition: all 0.3s ease;
  overflow: hidden; /* ESSENCIAL para cortar os cantos da logo */
  background: transparent; /* sem fundo */
}


.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebe5d;
}

.whatsapp-icon {
  margin-top: 16px;
}

/* Animação de rotação da logo no hover */
.whatsapp-logo {
  width: 60px;
  height: 60px;
  border-radius: 50%; /* arredonda a própria logo */
  object-fit: cover; /* preenche sem distorcer */
  transition: transform 0.6s ease;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}



.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(0, 255, 0, 0.6);
}

.whatsapp-float:hover .whatsapp-logo {
  transform: rotate(360deg) scale(1.1);
}

#contato {
  background: linear-gradient(180deg, #f8f9fa 0%, #e9f7ef 100%);
}

#contato h2 {
  color: #1f6706;
  font-weight: 700;
}

#contato .btn-success {
  background-color: #25d366;
  border: none;
  transition: all 0.3s ease;
}

#contato .btn-success:hover {
  background-color: #1ebe5d;
  transform: scale(1.05);
}

/* Responsividade do mapa */
.map-responsive {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%;
  height: 0;
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
}
.footer-custom {
  background-color: #1c1c1c;
  color: #e0e0e0;
  font-family: 'Nunito', sans-serif;
  padding-top: 30px;
  padding-bottom: 30px;
}

.footer-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  color: #ffffff;
}

.footer-phone {
  font-size: 1.1rem;
  font-weight: 600;
}

.footer-copy {
  font-size: 0.9rem;
  margin-top: 15px;
  opacity: 0.8;
}

