body {
  margin: 0;
  font-family: 'Arial', sans-serif;
  color: #333;

  /* Define cada camada separadamente */
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.9)),
    url('/img/um_fundo_com_imagens_de_patinhas.jpeg');

  background-blend-mode: overlay;
  background-size: 250px;
  background-repeat: repeat;
}
header {
  background: linear-gradient(to right, #ffe066, #ffa94d);
  text-align: center;
  padding: 40px 20px 20px;
  position: relative;
}

#papagaio {
  position: absolute;
  right: 5%;
  bottom: 0;
  height: 120px;
  width: auto;
  z-index: 0;
}

#gatinho {
  position: absolute;
  left: 10%;
  bottom: 0;
  height: 130px;
  width: auto;
  z-index: 0;
}

header h1 {
  font-size: 2.5em;
  color: #000;
  margin: 0;
  position: relative;
  z-index: 1;
}

header p {
  font-size: 1.2em;
  color: white;
  margin-top: 10px;
  position: relative;
  z-index: 1;
}

.content {
  padding: 30px;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  margin-top: -30px;
}

.image-section{
	margin-top:10px;
}

.carousel-controls {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.carousel-prev, .carousel-next {
  background: rgba(255,255,255,0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b8b3b;
}

.carousel-dots {
  display: flex;
  gap: 8px;
}
.text-section {
  display: flex;
  flex-direction: column;
}

.text-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.text-description {
  flex: 2;
  padding-right: 20px;
  min-width: 300px;
}

.carousel-container {
  flex: 1;
  height: 450px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;  /* Já está aqui: mantém centralizado! */
  overflow: hidden;
  border-radius: 15px;
  position: relative;
  min-width: 300px;
  text-align: center; /* NOVO: ajuda a centralizar em alguns casos */
}

.carousel-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transition: opacity 0.6s ease-in-out;
  position: relative;
  margin: 0 auto; /* NOVO: força centralização horizontal */
  display: block; /* NOVO: necessário com margin auto */
  transition: opacity 0.6s ease-in-out;
  border-radius:10px;

}


.image-contato img {
  width: 450px;
  border-radius: 5px;
  max-width: 100%;
}

.text-section h2 {
  color: #ff7700;
}

.text-section p {
  margin: 15px 0;
  line-height: 1.6em;
}
h2 {
  color: #ff7700;
  margin: 15px 15px;
  line-height: 1.6em;
  text-decoration: underline;
  text-decoration-color: #ff9900; /* cor do sublinhado */
  text-decoration-thickness: 2px; /* espessura do sublinhado */
  text-underline-offset: 5px; /* distância do texto */
}

.contact {
  background: #fff3cd;
  padding: 20px;
  margin-top: 30px;
  border-radius: 10px;
  font-size: 1.1em;
}

.footer {
  background: #ffec99;
  padding: 15px;
  text-align: center;
  font-size: 1em;
}

.whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  color: #25D366;
  text-decoration: none;
}
.whatsapp:hover {
  text-decoration: underline;
}
#whatsapp{
	margin:10px 5px;
}
.map-container {
  width: 100%;
  position: relative;
  padding-bottom: 46.25%; /* Proporção 16:9 */
  height: 0;
  margin:2% 2%;
}


.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;

}/* Responsividade */
@media (min-width: 768px) {
  .carousel-container {
    width: 420px; /* mesma largura para todas as imagens */
    flex-shrink: 0;
  }

}

@media (max-width: 768px) {
  body::before {
    background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.8)); /* Overlay mais claro */
  }
}
