/* Estilo global */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    box-sizing: border-box;
    height: 100%;
    width: 100%;
}

/* Cabeçalho */
header {
    background-color: #F5F5DC; /* Bege para o painel de navegação */
    color: black;
    padding: 15px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo {
    margin-bottom: 10px;
}

.logo-img {
    max-width: 180px;
    height: auto;
}

nav {
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

nav ul li {
    display: inline-block;
    position: relative;
}

/* Links principais do menu */
nav ul li a {
    text-decoration: none;
    color: black;
    padding: 8px 18px;
    border-radius: 30px;
    border: 2px solid black; /* Contorno mantido nos botões principais */
    background-color: transparent;
    transition: background-color 0.3s ease;
}

nav ul li a:hover {
    background-color: #A9C94C;
}

/* Dropdown */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #F5F5DC; /* Fundo bege da lista suspensa */
    min-width: 200px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    left: 0;
    padding: 0;
}

/* Itens da lista suspensa */
.dropdown-content a {
    color: black;
    padding: 10px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    white-space: normal; /* Garante que os itens ocupem cada linha */
    background-color: transparent;
    border: none; /* Removendo o contorno */
}

/* Adicionando linha divisória entre os itens */
.dropdown-content a:not(:last-child) {
    border-bottom: 1px solid #ddd; /* Linha divisória real entre os itens */
}

.dropdown-content a:hover {
    background-color: #A9C94C;
}

/* Mostrar a lista suspensa */
.dropdown:hover .dropdown-content {
    display: block;
}

/* Hero Section */
.hero {
    background: url('img/seu-imagem-de-fundo.jpg') no-repeat center center;
    background-size: cover;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-top: 50px;
}

.hero-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
}

.left-text, .right-text {
    width: 45%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.left-text h2, .right-text p {
    color: white;
    font-size: 1.5rem;
    text-align: center;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
}

.left-text .btn, .right-text .btn {
    margin-top: 20px;
    padding: 12px 24px;
    background-color: #A9C94C;
    color: black;
    text-decoration: none;
    border-radius: 50px;
    text-align: center;
    width: fit-content;
}

.left-text .btn:hover, .right-text .btn:hover {
    background-color: #8BB03A;
}

/* Rodapé */
footer {
    background-color: #002D62;
    color: white;
    padding: 5px;
    text-align: center;
    font-size: 0.8rem;
}

footer p {
    margin: 5px 0;
}

footer p a {
    color: white;
    text-decoration: none;
}

footer p a:hover {
    text-decoration: underline;
}

/* Responsividade para smartphones */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        padding: 0 20px;
    }

    .left-text, .right-text {
        width: 100%;
        margin-bottom: 20px;
    }

    .logo-img {
        max-width: 150px;
    }

    nav ul {
        gap: 10px;
    }

    nav ul li a {
        padding: 8px 15px;
        font-size: 0.9rem;
    }

    .left-text h2, .right-text p {
        font-size: 1.2rem;
    }

    .btn {
        padding: 10px 20px;
    }
}

/* Estilos para flocos de neve */
.floco-de-neve {
    position: fixed;
    top: -10px;
    color: white;
    font-size: 20px;
    animation: cairFloco linear infinite;
    pointer-events: none; /* Permite clicar nos elementos abaixo */
    z-index: 9999;
}

/* Animação dos flocos de neve */
@keyframes cairFloco {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(100vh);
    }
}

