/* Definindo a imagem de fundo */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: url('logo2.jpg') no-repeat center center fixed;
    background-size: cover;
}

/* Estilos da área de conteúdo */
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.content {
    background-color: rgba(0, 0, 0, 0.7); /* Fundo preto transparente */
    padding: 20px;
    border-radius: 10px;
    color: white; /* Mantém o texto branco para contraste */
}

/* Estilos dos botões */
.button, .whatsapp-button {
    display: inline-block;
    padding: 10px 20px;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 15px;
    font-size: 1.2em;
}

.button {
    background-color: #0047AB;
}

.button:hover {
    background-color: #003087;
}

.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #1EBE54;
}

/* Responsividade */
@media (max-width: 768px) {
    body {
        background-size: contain; /* Garante que a imagem caiba na tela */
        background-position: center top; /* Centraliza a imagem no topo */
        background-repeat: no-repeat; /* Evita a repetição da imagem */
    }
    .content {
        padding: 15px;
        font-size: 0.9em;
    }

    h1 {
        font-size: 1.5em;
    }

    p {
        font-size: 1em;
    }

    .button, .whatsapp-button {
        font-size: 1em;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    body {
        background-size: contain; /* Garante que a imagem caiba em telas menores */
        background-position: center top;
        background-repeat: no-repeat;
    }
    .content {
        padding: 10px;
        font-size: 0.8em;
    }

    h1 {
        font-size: 1.2em;
    }

    p {
        font-size: 0.9em;
    }

    .button, .whatsapp-button {
        font-size: 0.9em;
        padding: 6px 12px;
    }
}
