/* --- Configurações Globais e Variáveis --- */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    src: url('/fonts/JTUSjIg1_i6t8kCHKm459W1hyzbi.woff2') format('woff2');
    font-display: swap;
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    src: url('/fonts/JTUSjIg1_i6t8kCHKm459WRhyzbi.woff2') format('woff2');
    font-display: swap;
}
/* --- Configurações Globais e Variáveis --- */
:root {
    --color-orange: #f39c12; /* Laranja/Dourado principal */
    --color-dark: #000000;
    --color-light: #ffffff;
    --color-box-bg: #1a1a1a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background-color: var(--color-dark);
    color: var(--color-light);
    text-align: center;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 5px;
}

/* --- Banner com Contador Regressivo --- */
.promo-banner {
    background-color: var(--color-orange);
    padding: 2px 0;
    width: 100%;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.countdown-item {
    background-color: var(--color-dark);
    color: var(--color-light);
    border-radius: 5px;
    padding: 5px 34px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.countdown-item span {
    font-size: 1.7rem;
    font-weight: 400;
}

.countdown-item p {
    font-size: 0.7rem;
    font-weight: 400;
    margin: 0;
}

/* --- Conteúdo Principal --- */
.main-content {
    padding: 10px 0;
}

.date-display {
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 5px;
    padding: 15px 80px;
    display: inline-block;
    margin-bottom: 30px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
}

h1 {
    font-family: 'Montserrat', sans-serif;
    color: var(--color-orange);
    font-size: 3rem;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px auto;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 151, 30, 0.7);
    }
    
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(247, 151, 30, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(247, 151, 30, 0);
    }
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #ffd200 0%, #f7971e 50%, #000000 100%);
    color: var(--color-light);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    padding: 20px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.2rem;
    border: none;
    text-transform: uppercase;
    position: relative;
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(247, 151, 30, 0.5),
                0 0 20px rgba(247, 151, 30, 0.3),
                0 0 40px rgba(247, 151, 30, 0.2);
}

.cta-button:hover {
    transform: scale(1.1);
    background: linear-gradient(90deg, #ffd200 0%, #f7971e 40%, #000000 90%);
    box-shadow: 0 4px 20px rgba(247, 151, 30, 0.7),
                0 0 30px rgba(247, 151, 30, 0.5),
                0 0 50px rgba(247, 151, 30, 0.3);
}

.cta-button svg {
    fill: var(--color-light);
}


/* --- Seção do Certificado --- */
.certificate-section {
    padding: 60px 0;
}

.certificate-section .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.certificate-image {
    flex: 1;
}

.certificate-image img {
    max-width: 100%;
    padding: 5px;
    height: auto;
    border-radius: 8px;
}

.certificate-text {
    flex: 1;
    padding: 20px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.4;
    text-transform: uppercase;
}

/* --- Responsividade para Mobile --- */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .certificate-section .container {
        flex-direction: column;
        gap: 30px;
    }

    .certificate-text {
        text-align: center;
        font-size: 1.2rem;
    }
}
