:root {
    --primary-color: #4361ee;
    --secondary-color: #3a0ca3;
    --accent-color: #f72585;
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --text-muted: #6c757d;
}

body {
    font-family: 'Poppins', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ed 100%);
    color: var(--dark-color);
    line-height: 1.6;
}

.container {
    max-width: 800px;
    padding: 3rem 2rem;
    margin: 0 auto;
    position: relative;
}

.logo {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 5px 10px rgba(67, 97, 238, 0.2));
}

h1 {
    font-size: 2.75rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 300;
}

.construction {
    position: relative;
    display: inline-block;
    padding: 0.75rem 2rem;
    background-color: var(--accent-color);
    color: white;
    border-radius: 50px;
    font-weight: 400;
    margin: 1.5rem 0;
    box-shadow: 0 4px 20px rgba(247, 37, 133, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.social-links {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: white;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-decoration: none;
}

.social-links a:hover {
    color: white;
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(247, 37, 133, 0.3);
}

.countdown {
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: var(--text-muted);
    font-weight: 300;
}

.countdown strong {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Animações */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

/* Responsividade */
@media (max-width: 600px) {
    .container {
        padding: 2rem 1.5rem;
    }
    
    .logo {
        font-size: 3.5rem;
    }
    
    h1 {
        font-size: 2.25rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .social-links {
        gap: 1rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 1.3rem;
    }
}