/* Reset básico */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Estilo Geral do Corpo da Página */
body {
    background-color: #ffffff; /* Fundo branco para sofisticação */
    color: #777777; /* Texto em cinza claro para contraste suave */
    font-family: 'Playfair Display', serif; /* Fonte elegante */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* Contêiner Central */
.container {
    text-align: center;
    max-width: 400px;
    width: 100%;
}

/* Logo */
.logo {
    max-width: 300px; /* Ajuste conforme necessário */
    height: auto;
    margin-bottom: 1rem;
}

/* Subtítulo */
p {
    font-size: 1rem;
    margin-bottom: 2rem;
    opacity: 0.85;
    color: #777777;
}

/* Estilo dos Botões */
.button {
    display: block;
    width: 100%;
    padding: 15px 20px;
    margin: 10px 0;
    border: 1px solid #333;
    border-radius: 50px;
    background: transparent;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

/* Efeito Hover para Botões */
.button:hover {
    background-color: #333;
    color: #fff;
}

/* Seção de Informações (Horário e Endereço) */
.info {
    margin-top: 20px;
    opacity: 0.9;
}

.info h2 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
    color: #000;
}

.info p {
    font-size: 1rem;
    margin-bottom: 5px;
    color: #555;
}

/* Rodapé */
footer {
    margin-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.7;
    color: #777;
}

/* Estilo Responsivo para Dispositivos Móveis */
@media (max-width: 600px) {
    .logo {
        max-width: 150px; /* Redução para telas menores */
    }

    .button {
        font-size: 1rem;
        padding: 12px 15px;
    }

    .info h2 {
        font-size: 1rem;
    }

    .info p {
        font-size: 0.9rem;
    }
}
