/* Estilos gerais */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #216fbd; /* Azul de fundo */
    color: #fff; /* Texto branco */
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Container central */
.container {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.5); /* Fundo mais suave */
    width: 90%;
    max-width: 600px;
}

/* Logo */
.logo img {
    max-width: 300px; /* Ajuste o tamanho conforme necessário */
    margin-bottom: 20px;
}

/* Título */
h1 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: bold;
}

/* Contador de dias */
.contador p {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

/* Email */
.contato p {
    font-size: 16px;
}

.contato a {
    color: #fff;
    text-decoration: underline;
}

.contato a:hover {
    color: #f1c40f; /* Cor de destaque no hover */
}
