/* Reset básico e estilo geral */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: url('depositphotos_114729992-stock-photo-piggy-bank-in-glasses.jpg') no-repeat center center fixed;
    background-size: cover; /* Faz com que a imagem cubra toda a tela */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.capa {
    background: rgba(255, 255, 255, 0.8); /* Fundo branco com 80% de opacidade */
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 90%;
    max-width: 500px;
    z-index: 1; /* Garante que o conteúdo fique sobre a imagem de fundo */
}

h1 {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1.125rem;
    color: #333;
    background: rgba(233, 236, 239, 0.8); /* Fundo claro com 80% de opacidade */
    border-radius: 8px;
    padding: 0.75rem;
    margin-bottom: 1rem;
}

