/* Importação de uma fonte mais moderna e limpa */
@import url('https://fonts.googleapis.com/css2?family=Segoe+UI:wght@300;400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background-color: #f0f7f9; /* Azul bem clarinho, relaxante */
    color: #333;
    padding: 20px;
}

header {
    background-color: #4a90e2; /* Azul confiança */
    color: white;
    padding: 40px 20px;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

header h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

main {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

section {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    color: #2c3e50;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

h2::before {
    content: "•";
    color: #4a90e2;
    font-size: 2rem;
    margin-right: 10px;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul {
    list-style: none;
    margin-bottom: 20px;
}

ul li {
    background: #f9f9f9;
    margin-bottom: 8px;
    padding: 10px 15px;
    border-left: 4px solid #4a90e2;
    border-radius: 4px;
    transition: transform 0.2s;
}

ul li:hover {
    transform: translateX(10px);
    background: #edf4fe;
}

/* Estilização para a frase de apoio e o CVV */
main > p:last-of-type {
    background-color: #e7f3ff;
    border: 2px dashed #4a90e2;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    color: #d9534f; /* Tom de alerta, mas suave */
    border-radius: 8px;
    margin-top: 30px;
}

footer p {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    font-size: 0.9rem;
    color: #7f8c8d;
}

footer b {
    color: #4a90e2;
}

/* Responsividade para celulares */
@media (max-width: 600px) {
    main {
        padding: 20px;
    }
    
    header h1 {
        font-size: 1.8rem;
    }
}