body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f4f4f4;
    overflow: hidden;
    flex-direction: column;
    padding: 20px;
}

.logo-contorno {
    font-size: 58px;
    font-family: "Nunito Sans", sans-serif;
    font-weight: 800;
    color: #2c3892; 
}

.container {
    text-align: center;
}

.logo-image {
    max-width: 150px;
    margin-bottom: 20px;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 1s ease, transform 1s ease;
}



.company-name, .slogan {
    font-size: 18px;
    color: #555;
    opacity: 0;
    margin-top: 10px;
    transition: opacity 1s ease;
    font-family: "Titillium Web", sans-serif;
    font-weight: 400;
}

.slogan {
    font-style: italic;
    font-family: "Titillium Web", sans-serif;
    font-weight: 300;
}

.hidden {
    display: none;
}

.whatsapp-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #25D366; /* Cor verde do WhatsApp */
    color: white;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #1EBE57; /* Tom mais escuro para o hover */
}

.whatsapp-button i {
    margin-right: 8px; /* Espaço entre o ícone e o texto */
    font-size: 18px; /* Tamanho do ícone */
}