:root {
    --primary-color: #000000;
    --secondary-color: #1a1a1a;
    --text-dark: #f0f0f0;
    --text-light: #b0b0b0;

    
    /* Mantém os tamanhos de fonte */
    --fonte-xs: 0.75rem;
    --fonte-sm: 0.875rem;
    --fonte-base: 1rem;
    --fonte-lg: 1.125rem;
    --fonte-xl: 1.25rem;
    --fonte-2xl: 1.5rem;
    --fonte-3xl: 1.875rem;
    --fonte-4xl: 2.25rem;
    --fonte-5xl: 3rem;
    --fonte-6xl: 3.75rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {

    color: var(--text-dark);
    min-height: 100vh;
    overflow-x: hidden;
    font-size: var(--fonte-base);
}

.textDestaque {
    color: #ffffff;
}

.titleUni {
    font-size: var(--fonte-5xl);
    font-weight: 800;
    line-height: 2.9rem;
    letter-spacing: -1px;
    color: #ffffff;
}



/* Hero Section */
.hero-espera {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 1rem 4rem;
}

.conteudo-espera {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.grid-espera {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.texto-principal-espera {
    text-align: center;
}

.titulo-espera {
    font-size: var(--fonte-4xl);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
}

.descricao-espera {
    font-size: var(--fonte-lg);
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.visual-espera {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Countdown Timer */
.countdown-container {
    margin: 3rem 0;
}

.countdown-title {
    font-size: var(--fonte-xl);
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

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

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #1a1a1a;
    padding: 1.5rem 1rem;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 100px;
    border: 1px solid #333333;
}

.countdown-number {
    font-size: var(--fonte-4xl);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.countdown-label {
    font-size: var(--fonte-sm);
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Form Section */
.form-espera {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin: 0 auto;
    border: 1px solid #333333;
}

.form-title {
    font-size: var(--fonte-2xl);
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
    color: #ffffff;
}

.form-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 2rem;
    font-size: var(--fonte-base);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #ffffff;
    font-size: var(--fonte-base);
}

.form-control {
    padding: 12px 16px;
    border: 1px solid #333333;
    border-radius: 12px;
    font-size: var(--fonte-base);
    transition: all 0.3s;
    background: #000000;
    color: #ffffff;
}

.form-control:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
    background: #000000;
    color: #ffffff;
}

.form-control::placeholder {
    color: #666666;
}

.form-select {
    padding: 12px 16px;
    border: 1px solid #333333;
    border-radius: 12px;
    font-size: var(--fonte-base);
    background: #000000;
    color: #ffffff;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 20 20'%3e%3cpath stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.5rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
}

.form-select:focus {
    border-color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.2);
    background: #000000;
    color: #ffffff;
}

.btn-enviar {
    background: #000000;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-weight: 600;
    font-size: var(--fonte-base);
    width: 100%;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
    border: 1px solid #333333;
}

.btn-enviar:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(139, 60, 233, 0.4);
    background: linear-gradient(90deg, #e44fad, #8b3ce9);
    border-color: transparent;
}

.btn-enviar:active {
    transform: translateY(0) scale(0.98);
    box-shadow: 0 4px 12px rgba(139, 60, 233, 0.3);
}

/* Footer */
.footer-espera {
    background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
    color: #fff;
    padding: 3rem 0 2rem;
    margin-top: 4rem;
    border-top: 1px solid #333333;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-logo {
    font-size: var(--fonte-2xl);
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    margin-bottom: 0.5rem;
}

.footer-description {
    font-size: var(--fonte-base);
    line-height: 1.6;
    color: #b0b0b0;
    margin: 0;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 1rem;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    font-size: var(--fonte-lg);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
    background: linear-gradient(90deg, #e44fad, #8b3ce9);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(139, 60, 233, 0.3);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    margin: 0;
    font-size: var(--fonte-sm);
    color: #999;
}

/* Confetti Canvas */
#confetti-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1000;
    display: none;
}

/* Lançamento Concluído */
.lancamento-concluido {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin: 2rem 0;
    display: none;
    border: 1px solid #333333;
}

.lancamento-concluido h2 {
    font-size: var(--fonte-4xl);
    margin-bottom: 1rem;
    color: #ffffff;
}

.lancamento-concluido p {
    font-size: var(--fonte-xl);
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* Responsive */
@media (min-width: 768px) {
    .grid-espera {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }

    .texto-principal-espera {
        text-align: left;
    }

    .titulo-espera {
        font-size: var(--fonte-5xl);
    }

    .descricao-espera {
        margin-left: 0;
        margin-right: 0;
        font-size: var(--fonte-xl);
    }

    .countdown {
        justify-content: flex-start;
    }

    .footer-content {
        grid-template-columns: 2fr 1fr;
    }
}

@media (max-width: 767px) {
    .headerDesktop {
        display: none;
    }

    .titulo-espera {
        font-size: var(--fonte-3xl);
    }

    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        min-width: 80px;
        padding: 1rem 0.5rem;
    }

    .countdown-number {
        font-size: var(--fonte-3xl);
    }

    .form-espera {
        padding: 2rem;
    }
    
    .lancamento-concluido h2 {
        font-size: var(--fonte-3xl);
    }
    
    .lancamento-concluido p {
        font-size: var(--fonte-lg);
    }
}