* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Playfair Display', 'Montserrat', sans-serif;
}

body {
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

header {
    text-align: center;

}

.logo {
    max-width: 300px;
    margin-bottom: 20px;
    filter: brightness(0.5);

}

.coming-soon {
    background-color: rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 50px;
    text-align: center;
    margin: 40px auto;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #222;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.subtitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #555;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
    line-height: 1.8;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin: 40px 0;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: white;
    font-weight: 600;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    letter-spacing: 0.5px;
}

.whatsapp {
    background-color: #25D366;
}

.instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.login {
    background-color: #3a3a3a;
}

.social-btn i {
    margin-right: 12px;
    font-size: 1.3rem;
}

.social-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('../../img/bg.webp') no-repeat center center;
    background-size: cover;
    filter: blur(5px);
    background-color: #00000046;
    opacity: 0.5;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

footer {
    text-align: center;
    padding: 25px 0;
    color: #666;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    background: rgba(255, 255, 255, 0.8);
    width: 70px;
    height: 70px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
}

.countdown-label {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .coming-soon {
        padding: 35px 25px;
    }

    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.3rem;
    }

    .social-links {
        flex-direction: column;
        gap: 15px;
    }

    .countdown {
        flex-wrap: wrap;
    }
}

/* Estilos para links de navegação */
.back-link {
    display: inline-flex;
    align-items: center;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    margin: 20px 0;
}

.back-link i {
    margin-right: 8px;
}

.back-link:hover {
    color: #666;
}

/* Estilos para formulários */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-control:focus {
    border-color: #666;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Estilos para botões */
.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    text-decoration: none;
}

.btn:hover {
    background-color: #555;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Estilos para mensagens */
.message {
    padding: 12px 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    text-align: center;
}

.message-success {
    background-color: #d4edda;
    color: #155724;
}

.message-error {
    background-color: #f8d7da;
    color: #721c24;
}

.message-info {
    background-color: #d1ecf1;
    color: #0c5460;
}

.about-img {
    width: 50%;
    border-radius: 5%;
}