/* Navbar padrão (transparente) */
.navbar {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    background-color: transparent !important; /* Transparente inicialmente */
  }
  
  /* Navbar ao rolar (cor branca) */
  .navbar.scrolled {
    background-color: white !important; /* Cor branca ao rolar */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Adiciona uma leve sombra */
  }
  
  
  /* Sidebar */
  #sidebar {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background-color: #f8f9fa;
    transition: left 0.3s ease;
    z-index: 1000;
    padding-top: 70px; /* Espaço para a navbar fixa */
    display: flex;
    flex-direction: column;
    align-items: center; /* Centraliza o conteúdo horizontalmente */
  }
  
  
  
  #sidebar.active {
    left: 0;
  }
  
  #sidebar ul {
    width: 100%; /* Garante que os itens ocupem toda a largura */
    padding: 0;
    margin: 0;
    list-style: none;
  }
  
  #sidebar ul li {
    width: 100%; /* Garante que cada item ocupe 100% da largura */
  }
  
  #sidebar ul li a {
    display: flex;
    justify-content: center; /* Centraliza o texto horizontalmente */
    align-items: center; /* Centraliza o texto verticalmente */
    width: 100%; /* Garante que o link ocupe toda a largura */
    padding: 15px 0; /* Espaço interno */
    font-size: 1.2rem;
    color: #000; /* Cor do texto */
    text-decoration: none; /* Remove sublinhado */
    border-bottom: 2px solid #4682B4; /* Linha azul */
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  #sidebar ul li a:hover {
    background-color: #4682B4; /* Fundo azul ao passar o mouse */
    color: white; /* Texto branco ao passar o mouse */
    border-bottom: 2px solid #4169E1; /* Altera a cor da linha */
  }
  
  /* Sidebar Button */
  .sidebar-toggle-btn {
    position: fixed;
    top: 20px;
    right: 15px;
    z-index: 1100;
    background: #4682B4	;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
  }
  .sidebar-toggle-btn.open i {
    transform: rotate(90deg);
    transition: transform 0.3s ease;
  }
  




/* Para o carrossel preencher toda a largura da tela */
.carousel-item img {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}

/* Efeito de zoom contínuo */
.carousel-img {
    animation: zoomEffect 10s linear infinite; /* Animação contínua de zoom */
}

@keyframes zoomEffect {
    0% {
        transform: scale(1); /* Começa no tamanho normal */
    }
    100% {
        transform: scale(1.4); /* Zoom progressivo */
    }
}

/* Estilo para o card fixo */
.info-card {
    position: absolute;
    top: 60%; /* Posicionado mais abaixo */
    left: 2%; /* Mais próximo à borda esquerda */
    background-color: rgba(176, 196, 222, 0.8); /* Azul claro (#B0C4DE) com 80% de opacidade */
    color: black; /* Texto preto para contraste */
    padding: 30px;
    border-radius: 10px;
    max-width: 350px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.7);
    text-align: left;
}

/* Estilo do título no card */
.info-title {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Estilo do texto no card */
.info-text {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

/* Botão no card */
.info-card .btn {
    font-size: 1rem;
    font-weight: bold;
    color: black;
    background-color: #ffc107;
    border: none;
    transition: background-color 0.3s ease;
}

.info-card .btn:hover {
    background-color: #e0a800;
}

/* Footer */
footer {
    padding: 20px 0;
}

footer h5 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

footer a {
    font-size: 0.9rem;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: white;
  font-size: 28px;
  padding: 16px;
  background-color: rgba(37, 211, 102, 0.8); /* Fundo verde semi-transparente */
  border-radius: 50%;
  z-index: 100;
}

.whatsapp-icon:hover {
  background-color: rgba(18, 140, 126, 0.9); /* Tom mais escuro ao passar o mouse */
  text-decoration: none;
}



.whatsapp-icon {
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: white;
  font-size: 28px;
  padding: 16px;
  background-color: rgba(37, 211, 102, 0.8);
  border-radius: 50%;
  z-index: 100;
}

.whatsapp-icon:hover {
  background-color: rgba(18, 140, 126, 0.9);
  text-decoration: none;
}


/* Seção de introdução */
.intro-section {
  padding: 40px 20px;
  background-color: #eaeaea;
  border-bottom: 4px solid grey;
}

.intro-section h1 {
  font-size: 36px;
  color: black;
  margin-bottom: 20px;
  text-align: center;
}

.intro-section p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
  text-align: center;
}

/* Seção do mapa */
.map-section {
  padding: 30px 20px;
}

.map-section iframe {
  max-width: 1000px;
  width: 90%;
  height: 450px;
  margin: 0 auto;
  display: block;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.divider img {
  width: 60%;
  max-width: 300px;
  height: auto;
  margin: 20px auto;
  display: block;
}