body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5dc; /* Bege */
    color: #008000; /* Verde Neon */
}

/* Estilização da barra de rolagem */
::-webkit-scrollbar {
    width: 12px; /* Largura da barra de rolagem */
}

::-webkit-scrollbar-track {
    background: #f5f5dc; /* Cor de fundo da área de rastreamento */
}

::-webkit-scrollbar-thumb {
    background-color: #008000; /* Cor do "polegar" (a parte que você arrasta) */
    border-radius: 6px; /* Arredondamento do "polegar" */
    border: 3px solid #f5f5dc; /* Adiciona uma borda para destacar o "polegar" */
}

::-webkit-scrollbar-thumb:hover {
    background-color: #00ff00; /* Cor do "polegar" ao passar o mouse */
}

header {
    background-color: #f5f5dc; /* Bege */
    padding: 10px 0;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky; /* Fixa o cabeçalho no topo */
    top: 0;
    z-index: 100; /* Garante que o cabeçalho fique acima de outros elementos */
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 0 20px;
}

nav a {
    text-decoration: none;
    color: #008000; /* Verde Neon */
    font-weight: bold;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #00ff00; /* Verde Neon mais claro */
}

main {
    padding: 20px;
}

.sessao {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f0f0e6; /* Bege mais claro */
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 2px solid #008000; /* Adiciona bordas em verde neon */
}
#sessao1 {
    padding: 0px;
}

.sessao h2 {
    color: #008000; /* Verde Neon */
    border-bottom: 2px solid #008000; /* Verde Neon */
    padding-bottom: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f5f5dc; /* Bege */
    color: #008000; /* Verde Neon */
    border-top: 1px solid #008000; /* Verde Neon */
}

/* Estilos do formulário de contato */
#contato form {
    max-width: 600px;
    margin: 0 auto;
}

#contato label {
    display: block;
    margin-bottom: 5px;
    color: #008000; /* Verde Neon */
}

#contato input[type="text"],
#contato input[type="tel"],
#contato input[type="email"],
#contato textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #008000; /* Verde Neon */
    border-radius: 4px;
    box-sizing: border-box;
    background-color: #fff;
    color: #008000; /* Verde Neon */
}

#contato input[type="text"]:focus,
#contato input[type="tel"]:focus,
#contato input[type="email"]:focus,
#contato textarea:focus {
    border-color: #00ff00; /* Verde Neon mais claro */
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
}

#contato button[type="submit"] {
    background-color: #008000; /* Verde Neon */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

#contato button[type="submit"]:hover {
    background-color: #00ff00; /* Verde Neon mais claro */
}

/* Estilos para a sessão de fundadores */
.fundadores-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.fundador {
    width: 20%; /* Aproximadamente 4 fundadores por linha */
    margin-bottom: 20px;
    text-align: center;
}

.fundador img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 5px;
}

.fundador a {
    text-decoration: none;
    color: #008000; /* Verde Neon */
}

.fundador a:hover {
    color: #00ff00; /* Verde Neon mais claro */
}

/* Estilos para os botões de doação */
.donation-buttons {
    text-align: center;
    margin-top: 20px;
}

.donation-buttons a {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #008000; /* Verde Neon */
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.donation-buttons a:hover {
    background-color: #00ff00; /* Verde Neon mais claro */
}

/* Media query para telas menores (mobile) */
@media (max-width: 768px) {
    .fundador {
        width: 45%; /* Aproximadamente 2 fundadores por linha em mobile */
    }

    nav ul {
        text-align: center; /* Centraliza os itens do menu em telas menores */
    }

    nav ul li {
        display: block; /* Coloca os itens do menu em linhas separadas */
        margin: 10px 0; /* Adiciona margem para melhor espaçamento */
    }
    nav a {
        display: block;
    }
    header img {
        width: 80px; /* Aumenta o tamanho do logo para torná-lo mais evidente */
        margin: 0 auto; /* Centraliza o logo */
    }
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    color: #008000; /* Verde Neon */
}

/* The Close Button */
.close {
    background-color: #008000; /* Verde Neon */
    color: #fff;
    border: none;
    padding: 5px 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 20px;
}

.close:hover {
    background-color: #00ff00; /* Verde Neon mais claro */
}