/* Estilos Globais */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header */
header {
    background-color: #000;
    color: #aed681;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 120px;
}

h1 {
    font-size: 1.8rem;
    color: #d3f170;
}

/* Menu de navegação */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    background-color: #5F9EA0;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav ul li a:hover {
    background-color: #4682B4;
}

/* Botão Hamburguer */
.menu-toggle {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: white;
}

/* Menu responsivo */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        display: none;
        background-color: #333;
        width: 100%;
        position: absolute;
        top: 70px;
        left: 0;
    }

    nav ul.active {
        display: flex;
    }

    nav ul li {
        text-align: center;
        padding: 15px 0;
        border-bottom: 1px solid white;
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }
}

/* Seções */
main {
    padding: 20px;
}

.pagina {
    display: none;
    color:#1d1b1b;
    font-weight: bold;
    background-color: #d3f170;
}


.pagina.ativa {
    display: block;
}

h2 {
    color: #000;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #0b0101;
}

/* Galeria */
.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.gallery-item {
    margin: 10px;
}

.gallery-item img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border: 2px solid #ccc;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

/* Botões */
button, .btn-voltar, input[type="submit"] {
    background-color: #5F9EA0; /* Azul Claro */
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover, .btn-voltar:hover, input[type="submit"]:hover {
    background-color:#4682B4; /* Azul França Escuro */
       
}

/* Formulários */
form {
    display: flex;
    flex-direction: column;
}

form label {
    font-size: 1rem;
    margin-bottom: 5px;
}

form input, form textarea {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 1rem;
}

form textarea {
    resize: vertical;
}

/* Rodapé */
footer p {
    background-color: #0b0c0d;
    color: #fff;
    padding: 30px;
    text-align: center;
    font-weight: bold;
    position: relative;
    bottom: 0;
    width: 100%;
}

footer a {
    color: #6495ED;
    text-decoration: none;
    font-weight: bold;
    
}

footer a:hover {
    color: #002699;
}