@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    background-color: #111; /* Preto de fundo */
    color: #f4f4f4; /* Texto claro */
    line-height: 1.6;
    margin: 0;
    padding: 20px;
}

header {
    background-color: #ff6600; /* Laranja */
    color: #111;
    text-align: center;
    padding: 2.5rem 0;
    margin-bottom: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}

header h1 {
    font-size: 2.5rem;
    margin: 0;
    color: #111;
}

main {
    max-width: 900px;
    margin: auto;
    background-color: #1c1c1c; /* Cinza/preto suave */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
    color: #f4f4f4;
}

section {
    margin-bottom: 30px;
    border-left: 5px solid #ff6600;
    padding-left: 20px;
}

section h2 {
    color: #ff6600;
    margin-top: 0;
    border-bottom: 2px solid #333;
    padding-bottom: 10px;
}

div h3 {
    color: #ff9933; /* Laranja mais claro */
    font-weight: 600;
}

img {
    max-width: 250px;
    height: auto;
    border-radius: 50%;
    border: 5px solid #ff6600;
    display: block;
    margin: 20px 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.7);
}

ul, ol {
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
}

a {
    color: #ff6600;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
    color: #ff9933;
}

footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    font-size: 0.9em;
    color: #aaa;
}
