body {
    font-family: 'Kanit', sans-serif;
    margin: 0;
}
/* Fundo escuro */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    align-items: center;
    justify-content: center;
}

/* Conteúdo do modal */
.modal-content {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.3s ease-in-out;
    box-shadow: 0px 6px 20px rgba(0,0,0,0.3);
    font-family: 'Kanit', sans-serif;
}

.modal-content h2 {
    margin-bottom: 10px;
    color: #333;
}

.modal-content p {
    margin: 6px 0;
    color: #555;
}

.fechar {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
    transition: 0.3s;
}

.fechar:hover {
    color: #000;
}

@keyframes fadeIn {
    from {opacity: 0; transform: scale(0.95);}
    to {opacity: 1; transform: scale(1);}
}
/* Fade-in */
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Botão pulsante */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.info-container {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    max-width: 1100px;
    margin: 40px auto;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
}

.info-container h2 {
    font-family: 'Cal Sans', sans-serif;
    color: #003f8a;
    font-size: clamp(24px, 4vw, 34px);
    text-align: center;
    margin-bottom: 20px;
}

.info-container h3 {
    color: #0056b3;
    font-size: clamp(18px, 3vw, 22px);
    margin-top: 35px;
    margin-bottom: 12px;
    border-left: 4px solid #0056b3;
    padding-left: 10px;
}

/* Contagem regressiva */
.countdown-box {
    background: #eaf4ff;
    border-left: 4px solid #007bff;
    padding: 10px 15px;
    border-radius: 8px;
    margin: 15px auto;
    font-weight: bold;
    color: #003f8a;
    text-align: center;
    font-size: 18px;
}

/* Destaques */
.highlight-box {
    padding: 15px;
    border-radius: 8px;
    margin: 15px 0;
}

.highlight-box.red { background: #ffe5e5; border-left: 4px solid #c0392b; }
.highlight-box.blue { background: #eaf4ff; border-left: 4px solid #0056b3; }
.highlight-box.yellow { background: #fff8e1; border-left: 4px solid #f1c40f; }

/* Banner */
.banner-container {
    width: 100%;
    max-width: 900px;
    margin: 20px auto;
    text-align: center;
}

.banner-container img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.banner-container img:hover {
    transform: scale(1.02);
}

/* Botões */
.btn-acessar {
    display: inline-block;
    padding: 16px 32px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}


.btn-acessar-recadastramento {
    display: inline-block;
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.btn-acessar:hover {
    transform: scale(1.05);
}

/* Responsivo */
@media (max-width: 768px) {
    .info-container { padding: 20px; }
    .btn-acessar { font-size: 16px; padding: 14px 20px; }
}
