body {
    font-family: 'Lato', sans-serif;
    background-color: #0a192f; /* Azul marinho profundo */
    color: #ccd6f6; /* Cinza-azulado claro */
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: center;
    background: linear-gradient(rgba(10, 25, 47, 0.8), rgba(10, 25, 47, 0.8)), url('https://images.unsplash.com/photo-1589998059171-988d887df646?q=80&w=2070&auto=format&fit=crop') no-repeat center center/cover;
}

.container {
    max-width: 900px;
    padding: 2rem;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #cdaa66; /* Dourado */
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column; /* Altera para layout vertical */
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.logo img {
    height: 100px; /* Aumenta a altura da logo */
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

#countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.time-unit {
    background-color: #112240; /* Azul um pouco mais claro */
    padding: 1.5rem;
    border-radius: 5px;
    min-width: 100px;
}

.time-unit span {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #cdaa66; /* Dourado */
    display: block;
}

.time-unit label {
    font-size: 1rem;
    color: #8892b0; /* Cinza mais claro */
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    #countdown {
        flex-direction: column;
        gap: 1rem;
    }
}

/* SEÇÃO DE CONTATO SOCIAL */
.social-contact {
    margin-top: 3rem;
}

.social-contact p {
    font-size: 1rem;
    color: #8892b0; /* Cinza mais claro */
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.social-icons a {
    color: #ccd6f6; /* Cinza-azulado claro */
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #cdaa66; /* Dourado */
}

.email-contact a {
    color: #ccd6f6;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.email-contact a:hover {
    color: #cdaa66; /* Dourado */
}

/* BOTÃO FLUTUANTE DO WHATSAPP */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}
