/* style.css */
body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  /*background-color: #f9f9f9; */
}

header {
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 1000;
  position: relative;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: #32CD32;
}

.logo img {
  max-width: 90%;
  height: auto;
}


nav {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}


.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
}

.menu {
  list-style: none;
  display: flex;
  gap: 15px;
  padding: 0;
}

.menu li {
  margin: 0 20px;
}

.menu li a {
  text-decoration: none;
  font-weight: bold;
  color: #34AC2C; /* verde */
  font-weight: bold;
  position: relative;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.menu li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 3px;
  left: 0;
  bottom: 0;
  background-color: #FFD700; /* dourado */
  transition: width 0.3s ease;
}

.menu li a:hover::after {
  width: 100%;
}

.whatsapp {
  background-color: #34AC2C;
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease;
}



.whatsapp::after {
  content: none;
}

.whatsapp li .whatsapp {
  background-color: #34AC2C; /* verde personalizado */
  color: white;
  padding: 10px 15px;
  border-radius: 30px;
  border: none;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.whatsapp:hover {
  color: #FFD700 !important; /* dourado com prioridade */
}

.menu li .whatsapp::after{
    content: none !important;
    display: none;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #34AC2C;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  z-index: 9999;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
}


@media(max-width: 768px) {
  .menu {
    flex-direction: column;
    display: none;
    background-color: #fff;
    position: absolute;
    top: 40px;
    right: 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-height: 80vh;
    overflow-y: auto;
  }

   .menu li a {
    font-size: 14px;
    padding-bottom: 0px;
    border-radius: 5px;
  }


  .menu.show {
    display: flex;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
  }
}

/* Carousel com altura proporcional responsiva */
.carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* Proporção 16:9 */
  background-color: #000;
}

.carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 0.5s ease-in-out;
}

.carousel-track img {
  flex: 0 0 100%; /* garante que cada imagem ocupe 100% da largura da track */
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Botões de navegação visíveis e sobrepostos */
.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  font-size: 24px;
  padding: 5px 10px;
  cursor: pointer;
  z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Conteúdo principal abaixo do carrossel */
.content {
  padding: 20px;
  text-align: center;
  background-color: #fff;
}

.content h1 {
  color: #FFD700; /* Dourado */
  font-size: 24px;
  margin-bottom: 10px;
}

.content h2 {
  color: #32CD32; /* Verde */
  font-size: 20px;
  margin-bottom: 10px;
}

.content p {
  font-size: 16px;
  color: #555;
}

.site-footer p{
  width: 100%;
  text-align: center;
}