@import url('https://fonts.googleapis.com/css2?family=New+Amsterdam&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Economica:ital,wght@0,400;0,700;1,400;1,700&display=swap');
body {
    line-height: 1.4;
    font-family: "Economica", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}
h1{
    color: #FF9E00;
}
h3{
    font-family: 'Economica', sans-serif;
    padding: 0;
}

header {
    line-height: 0.8;
    font-family: "New Amsterdam", sans-serif;
    font-size: 22px;
    background-color: #24609c; /*#003366*/
    color: #fff;
    text-align: center;
    padding: 0.2rem;
}
a{text-decoration: none;}
nav {
    /*background-color: #004080;*/
    background-color: #FF9E00;
    padding: 0.5rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
    margin: 0 1rem;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav ul li a:hover {
    color: #004080;
}
.menu-icon {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}       

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem;
    border-left: 1px solid #e0e0de;
    border-right: 1px solid #e0e0de;
}

.cta-button {
    display: inline-block;
    background-color: #FF9E00;
    color: white;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #004080;
}

footer {
    background-color: #24609c;
    color: white;
    text-align: center;
    padding: 1rem;

}

.logo {
    margin-top: 15px;
    width: 230px;
    height: auto;
}

.countdown {
    font-weight: bold;
    margin: 1rem 0;
}

.countdown-item {
    display: inline-block;
    background-color: #004080;
    color: white;
    padding: 0.5rem;
    border-radius: 5px;
    margin: 0.2rem;
    text-align: center;
}

.alerta{
    font-weight: bold;
    color:#e41212e5
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    
    text-align: center;

}

.close-button {
    color: red;
    float: right;
    font-size: 1.8rem;
    cursor: pointer;
}

.close-button:hover {
    color: darkred;
}

/* Alinhar o input e o botão na mesma linha */
.search-box {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px; /* Espaço entre o input e o botão */
    margin: 20px auto;
    max-width: 600px;
}

.input-field {
    width: 70%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.btn {
    background-color: #004080;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.btn:hover {
    background-color: #003366;
}

.result {
    margin-top: 10px;
    font-size: 1.2rem;
}

.certificados{
    text-align: left;
}

/* Responsivo */
@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        text-align: center;
    }

    .menu-icon {
        display: block;
        text-align: center;
    }

    nav ul.show {
        display: flex;
    }
}

h3{
    
    color:#feffff;
    padding-left: 0;
}

.destaque {
    color: #24609c;
    font-weight: bold;
}