@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, #fce4ec, #f7cee6);
    color: #333; 
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

header {
    background-color: #d4348a;
    color: white;
    text-align: center;
    padding: 3rem 0;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

header:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

header h1 {
    font-size: 2.8rem;
    margin: 0;
    letter-spacing: 1px;
}

main {
    max-width: 900px;
    margin: auto;
    background-color: #fff;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

main:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

section {
    margin-bottom: 35px;
    border-left: 6px solid #d4348a;
    padding-left: 25px;
    transition: background 0.3s ease;
}

section:hover {
    background-color: #fff0f6;
}

section h2 {
    color: #d4348a;
    margin-top: 0;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
    font-size: 1.8rem;
}

div h3 {
    color: #555;
    font-weight: 600;
    text-align: center;
    margin-bottom: 15px;
}

img {
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    border: 5px solid #d4348a;
    display: block;
    margin: 0 auto 25px auto; /* centraliza horizontalmente e adiciona margem inferior */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

ul, ol {
    padding-left: 30px;
}

li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

a {
    color: #d4348a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.2s ease;
}

a:hover {
    text-decoration: underline;
    color: #ff66a1;
    transform: scale(1.05);
}

footer {
    text-align: center;
    margin-top: 50px;
    padding: 25px;
    font-size: 0.95em;
    color: #777;
    border-top: 1px solid #ddd;
}
