/* ======== ESTILO GERAL ======== */
body {
    font-family: "Poppins", Arial, sans-serif;
    margin: 0;
    background: #f4f6f8;
    color: #333;
}

/* ======== CABEÇALHO ======== */
header {
    text-align: center;
    background: linear-gradient(135deg, #01306e, #007bff);
    color: white;
    padding: 40px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 10px 0 5px;
    font-size: 2em;
    font-weight: 600;
}

header h2 {
    font-weight: 400;
    font-size: 1.2em;
    margin: 0;
}

/* ======== FOTO ======== */
.foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid white;
    object-fit: cover;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

/* ======== CONTEÚDO PRINCIPAL ======== */
main {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ======== SEÇÕES ======== */
section {
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 30px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

section:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

section h3 {
    color: #004aad;
    border-left: 5px solid #004aad;
    padding-left: 10px;
    margin-bottom: 10px;
}

/* ======== IMAGENS DAS SEMANAS ======== */
section img {
    max-width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

section img:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

/* ======== RODAPÉ ======== */
footer {
    text-align: center;
    font-size: 0.9em;
    color: white;
    background-color: #96b9e7;
    padding: 15px;
    margin-top: 50px;
}

/* ======== RESPONSIVIDADE ======== */
@media (max-width: 600px) {
    header {
        padding: 25px 10px;
    }

    .foto {
        width: 90px;
        height: 90px;
    }

    section {
        padding: 15px;
    }
}

