@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #e9ebee, #dfe3e6);
    color: #2c2c2c;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    background: linear-gradient(90deg, #7ba7d9, #5e8bb8);
    color: white;
    text-align: center;
    padding: 3rem 1rem;
    margin-bottom: 30px;
    border-radius: 0 0 25px 25px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    animation: fadeDown 1s ease-out;
}

header h1 {
    font-size: 2.8rem;
    margin: 0;
    letter-spacing: 1px;
}

main {
    max-width: 900px;
    margin: auto;
    background-color: #f7f8fa;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    animation: fadeIn 1.2s ease-in-out;
}

section {
    margin-bottom: 30px;
    border-left: 5px solid #9ab6d6;
    padding-left: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

section:hover {
    transform: translateX(5px);
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.08);
}

section h2 {
    color: #5e8bb8;
    margin-top: 0;
    border-bottom: 2px solid #d4d8dd;
    padding-bottom: 10px;
}

div h3 {
    color: #4a4a4a;
    font-weight: 600;
    text-align: center;
}

img {
    max-width: 220px;
    height: auto;
    border-radius: 50%;
    border: 4px solid #9ab6d6;
    display: block;
    margin: 20px auto;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
    transition: transform 0.4s ease;
}

img:hover {
    transform: scale(1.08);
}

ul, ol {
    padding-left: 25px;
}

li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

a {
    color: #5e8bb8;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

a:hover {
    color: #3f6b90;
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: auto;
    padding: 20px;
    font-size: 0.9em;
    color: #555;
    background: #eceff3;
    border-top: 1px solid #d4d8dd;
}

/* Animações */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
