body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;

    /* imagem de fundo */
    background-image: url("https://img.freepik.com/fotos-gratis/belas-praias-tropicais-mar-e-oceano-com-palmeiras-de-coco-ao-nascer-do-sol_74190-1070.jpg?semt=ais_hybrid&w=740&q=80");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* deixa o conteúdo mais legível por cima da imagem */
main {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.85);
}

header {
    background-color: rgba(0, 119, 182, 0.9);
    color: white;
    text-align: center;
    padding: 25px;
}

section {
    background-color: white;
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;

    /* transição suave */
    transition: transform 0.2s, box-shadow 0.2s;
}

/* efeito hover simples */
section:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

h1, h2 {
    margin-bottom: 10px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 8px;
}

footer {
    background-color: rgba(0, 119, 182, 0.9);
    color: white;
    text-align: center;
    padding: 10px;
}
