/* ================================================== */
/* === PALETA DE CORES E VARIÁVEIS GLOBAIS ========== */
/* ================================================== */
:root {
    --azul-claro-simcosta: #0077FF;
    --azul-escuro-simcosta: #003366;
    --laranja-simcosta: #F28C00;
    --cinza-texto: #333333;
}

/* ================================================== */
/* === RESET E ESTILOS BASE PARA TODOS OS ELEMENTOS == */
/* ================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

/* ================================================== */
/* === ESTILOS GERAIS DO CORPO E ESTRUTURA ========== */
/* ================================================== */
body,
html {
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-size: 1.1rem;
    color: #2c3e50;
    background-color: #f9f9f9;
    line-height: 1.6;
    height: 100%;
}

/* ================================================== */
/* === CABEÇALHO E LOGOTIPOS ======================== */
/* ================================================== */
header,
nav,
section,
footer {
    width: 100%;
    /* padding: 0 40px; */
    box-sizing: border-box;
}

.content-section {
    /* padding: 30px 0; */
    display: none;
    min-height: calc(100vh - 270px);
}

.content-section.active {
    display: flex;
    flex-direction: column;
}

/* === Cabeçalho === */
header {
    background: white;
    padding: 5px 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
    /* distribui os elementos */
}

.header-logo-left,
.header-logo-right {
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo-left img,
.header-logo-right img {
    max-width: 100%;
    max-height: 100px;
    /* controla a altura máxima da imagem */
    height: auto;
    width: auto;
    object-fit: contain;
}

.header-logo-left img {
    transform: scale(1.5);
}

.header-logo-right img {
    transform: scale(1.2);
}


.header-titles {
    width: 90%;
    text-align: center;
    color: #004080;
    font-size: 0.8rem;
    margin: 0 auto;
}

/* ================================================== */
/* === BARRA DE NAVEGAÇÃO PRINCIPAL ================= */
/* ================================================== */
nav {
    background: #00509d;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    height: 70px;
}

.nav-item {
    color: white;
    text-decoration: none;
    padding: 8px 8px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
    text-wrap: nowrap;
}

.nav-item:hover {
    color: #e6f2ff;
    transform: scale(1.1);

}

.nav-item.active {
    background: #003366;
    transform: scale(1.1);
}


.page-container {
    width: 100%;
    padding: 0 70px;
    max-width: 1280px;
    margin: 0 auto;
}

.page-container h2 {
    padding-top: 10px;
    padding-bottom: 10px;
}


/* ================================================== */
/* === SEÇÃO HOME (PÁGINA INICIAL) ================== */
/* ================================================== */
#home {
    padding: 0;
}

.slideshow-container {
    position: relative;
    height: 600px;
    width: 100%;
    overflow: hidden;
    background: white;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}

.texto-formatado {
    margin: 0 auto;

    /* padding-left: 30px;
    padding-right: 30px; */

    /* background: white;
    border-radius: 10px;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1); */

    text-align: justify;
    /* font-size: 20px; */
    /* line-height: 1.6; */
}

.video-container {
    margin: 0 auto;
    text-align: justify;
    display: flex;
}

.texto-formatado p {
    margin-bottom: 1em;
}

/* ================================================== */
/* === SEÇÃO "QUEM SOMOS" =========================== */
/* ================================================== */

.apoio-inst {
    height: 200px;
    margin-top: 50px;
}

.quem-somos-container {
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.missao-box {
    text-align: center;
    /* margin-bottom: 40px; */
}

.missao-box h2 {
    font-size: 2rem;
    color: #003366;
    margin-bottom: 10px;
}

.destaque-missao {
    /* background: #003366; */

    background: #003366;
    background: linear-gradient(0deg, rgba(0, 51, 102, 1) 0%, rgba(119, 163, 201, 1) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);

    color: white;

    padding: 25px;
    border-radius: 25px 25px 25px 25px;
    margin-top: 50px;
    font-size: 1.1em;
    /* font-style: italic; */
}

.quem-somos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.objetivos-list li {
    margin-top: 10px;
    padding-left: 25px;
    position: relative;
    list-style-type: none;
}

.objetivos-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #00509d;
}

.eixos-grid {
    gap: 20px;
    margin: 20px 0;
    margin-top: 50px;
}

.eixos-grid h3 {
    margin-bottom: 20px;
}

.eixo-item {
    background: white;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #00509d;
    width: 70%;
    margin: 0 auto;
    margin-bottom: 10px;
}

.eixo-item p {
    margin-left: 10px;
    text-align: justify;
}

.impacto-item {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    align-items: flex-start;
}

.icone-impacto {
    font-size: 2em;
    min-width: 50px;
    text-align: center;
}

.dados-estatisticos {
    margin-top: 50px;
}

.dados-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.dado-item {
    text-align: center;
    padding: 15px;
    background: rgba(0, 51, 102, 1);
    background: linear-gradient(0deg, rgba(0, 51, 102, 1) 0%, rgba(119, 163, 201, 1) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: white;
    border-radius: 25px;
}

.dado-valor {
    font-size: 2em;
    font-weight: bold;
}

.chamada-acao {
    text-align: center;
    /* margin-top: 50px; */
    padding: 20px;
    background: #f0f8ff;
    border-radius: 0px 0px 100px 100px;
}

/* ================================================== */
/* === SEÇÃO DE EQUIPAMENTOS/equipamentoS =========== */
/* ================================================== */

.equip-icon {
    position: absolute;
    bottom: 10px;
    right: 14px;
    cursor: pointer;
}

.equipamento-card {
    width: 250px;
    height: 290px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #333;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    background: white;
}

.equipamento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    /* background: #f8f9fa; */
}

.equipamento-card img {
    width: 200px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 15px;
    padding: 10px;
}

.equipamento-card h3 {
    font-size: 1rem;
}

.equipamento-card h4 {
    font-size: 0.9rem;
}


.equipamentos-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
}

.equipamentos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    justify-items: center;
}



/* === Regimento ===
.regimento-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.regimento-article {
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.regimento-list {
    margin: 15px 0;
    padding-left: 30px;
}

.regimento-table {
    border: 1px solid #ddd;
    border-radius: 6px;
    overflow: hidden;
    margin: 20px 0;
}

.regimento-row {
    display: flex;
    border-bottom: 1px solid #eee;
}

.regimento-row.header {
    background: #f8f9fa;
    font-weight: bold;
}

.regimento-cell {
    flex: 1;
    padding: 12px 15px;
}
 */
/* ================================================== */
/* === SEÇÃO DE DIRETRIZES OPERACIONAIS ============= */
/* ================================================== */

#diretrizes ul {
    margin-left: 30px;
    padding-left: 20px;
    margin-bottom: 16px;
    line-height: 1.8;
}

/* ================================================== */
/* === SEÇÃO DE EDITAL ============================== */
/* ================================================== */
.criteria-section,
.requirements-section {
    margin-bottom: 40px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.criteria-list,
.requirements-list {
    padding-left: 30px;
}

.sublist {
    padding-left: 20px;
    margin: 10px 0;
}

.submission-info {
    margin-top: 25px;
    padding: 15px;
    background: #e6f7ff;
    border-radius: 8px;
    border-left: 4px solid #00509d;
}

/* .container-submissao {
  max-width: 700px;
  margin: 40px auto;
  padding: 30px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.container-submissao h2 {
  text-align: center;
  margin-bottom: 20px;
}

.container-submissao form {
  display: flex;
  flex-direction: column;
}

.container-submissao label {
  margin-top: 15px;
  font-weight: bold;
}

.container-submissao input[type="text"],
.container-submissao input[type="email"],
.container-submissao input[type="file"] {
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.container-submissao button {
  margin-top: 25px;
  padding: 12px;
  background-color: #00509d;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.container-submissao button:hover {
  background-color: #003d7a;
} */

/* ================================================== */
/* === BOTÃO E MODAL DE SUBMISSÃO DE PROPOSTA ======= */
/* ================================================== */
.submission-section {
    margin: 30px 0;
    width: 100%;
}

.organge {
    background: linear-gradient(135deg, var(--laranja-simcosta) 0%, #F28C00 100%);
}

/* Igual ao botão .info-link existente */

.submission-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: linear-gradient(135deg, var(--laranja-simcosta) 0%, #F28C00 100%);
    color: white;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s;
    margin-right: 10px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 45%;
}

.submission-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    background: linear-gradient(135deg, #F28C00 0%, var(--laranja-simcosta) 100%);
}

.submission-button i {
    margin-right: 8px;
}

/* ===== Modal de Submissão ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    width: 80%;
    max-width: 700px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.close {
    color: #aaa;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.submission-form {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--azul-escuro-simcosta);
}

.form-group input[type="file"] {
    padding: 12px;
    border: 2px dashed #ddd;
    border-radius: 6px;
    background: #f9f9f9;
    transition: all 0.3s;
}

.form-group input[type="file"]:hover {
    border-color: var(--laranja-simcosta);
    background: #fffaf5;
}

.help-text {
    font-size: 0.9rem;
    color: #666;
    margin-top: 5px;
}

.btn-submit {
    background: var(--laranja-simcosta);
    color: white;
    border: none;
    padding: 14px 25px;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: bold;
}

.btn-submit:hover {
    background: #e65c00;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 111, 0, 0.2);
}

/* Responsividade */
@media (max-width: 768px) {
    .modal-content {
        width: 90%;
        margin: 10% auto;
        padding: 20px;
    }

    .submission-button {
        padding: 20px 15px;
    }

    .submission-button .button-content i {
        font-size: 2rem;
    }

    .submission-button .button-text {
        font-size: 1.3rem;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    /* .gestao-container {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
    } */

    .documents ul {
        flex-direction: column;
    }


    header,
    nav,
    section,
    footer {
        padding: 0 1rem;
    }

    .slideshow-container {
        height: 200px;
    }

    .texto-formatado {
        padding: 1.5rem;
    }

    .quem-somos-content {
        grid-template-columns: 1fr;
    }

    .dados-grid {
        grid-template-columns: 1fr;
    }

    .equipamentos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .equipamento-card {
        width: 100%;
        height: auto;
        padding: 10px;
    }

    .equipamento-card img {
        width: 100%;
        height: 120px;
    }

    .regimento-content {
        padding: 15px;
    }

    .regimento-row {
        flex-direction: column;
    }

    .gestao-equipe {
        flex-direction: column;
    }

}

@media (max-width: 900px) {
    .header-titles {
        font-size: 1.5vw;
    }

    .nav-item {
        font-size: 2vw;
    }

    .nav {
        gap: 0.7vw;
    }
}

/* ESTILO PARA MENSAGEM GRANDE DE SUCESSO */
.alert.grande {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    min-width: 400px;
    max-width: 600px;
    text-align: center;
    border: none;
}

.alert-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.alert.grande .alert-text h3 {
    font-size: 2.5rem;
    margin: 0;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.alert.grande .alert-text p {
    font-size: 1.2rem;
    margin: 0.5rem 0 0 0;
}

.alert.grande .fa-check-circle {
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.1);
    }
}

.close-alert {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
}

.close-alert:hover {
    opacity: 1;
}


/* ================================================== */
/* === SEÇÃO DE CALENDÁRIO ========================== */
/* ================================================== */

.calendar-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* .calendario-explicativo {
    max-width: 100%;
    margin: 0 auto 30px;
    font-size: 1.05rem;
    color: #444;
    text-align: justify;
    line-height: 1.6;
} */

/* ================================================== */
/* === SEÇÃO DE GESTÃO (EQUIPE E ESTRUTURA) ========= */
/* ================================================== */

.gestao-structure {
    margin-bottom: 40px;
    background-color: #e6f2ff;
    padding: 25px;
    border-radius: 8px;
}

.gestao-structure h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.gestao-structure ul {
    list-style-type: none;
    padding-left: 20px;
}

.gestao-structure li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.gestao-structure li::before {
    content: '•';
    color: #00509d;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -5px;
}

/* .gestao-documents {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    margin-left: 8%;
    margin-bottom: 40px;
}

.gestao-documents h3 {
    color: #003366;
    margin-bottom: 15px;
    font-size: 1.4rem;
} */

/* .documents ul {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    list-style: none;
}

.documents li {
    background: #e6f2ff;
    padding: 12px 20px;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.documents li:hover {
    transform: translateY(-3px);
    background: #00509d;
}

.documents li:hover a {
    color: white;
}

.documents a {
    color: #00509d;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.documents a::before {
    content: '📄';
    margin-right: 8px;
} */

.team-section {
    margin: 0 auto;
    /* margin-top: 40px; */
}

.team-section h3 {
    text-align: center;
    color: #003366;
    margin-bottom: 30px;
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 10px;
}

/* .team-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: #00509d;
} */

.team-category {
    margin-bottom: 50px;
    text-align: center;
}

.team-category h4 {
    padding: 12px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-size: 1.5rem;
    display: inline-block;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin: 0 auto;
}

/* Adicione estas 2 regras ao seu style.css */
.team-grid.single-item {
    grid-template-columns: repeat(1, minmax(250px, 300px));
    justify-content: center;
}

.team-grid.single-item .team-member {
    max-width: 300px;
    margin: 0 auto;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    padding: 20px;
    min-width: 277px;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 20px;
    border: 4px solid #e6f2ff;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h5 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: #002147;
}

.member-role {
    color: #00509d;
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.member-contact {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

/* ================================================== */
/* === SEÇÃO DE CONTATO (FORMULÁRIO) ================ */
/* ================================================== */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #f7f9fc;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 12px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.form-double {
    display: flex;
    gap: 10px;
}

.form-double .form-group {
    flex: 1;
}

.contact-form button {
    background: #005f87;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.contact-form button:hover {
    background: #003f5f;
}

.flash-message {
    background: #ff9900;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-left: 15px;
    display: inline-block;
    vertical-align: middle;
}

.form-footer {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

/* ================================================== */
/* === RODAPÉ ======================================= */
/* ================================================== */
footer {
    padding: 20px;
    background: #003366;
    color: white;
    margin-top: 40px;
}

footer a {
    color: #ff9900;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: 15px;
    font-size: 1.5em;
}

/* === Estilos para os botões de download do Edital === */
.info-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: #00509d;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    /*    margin-top: 20px; */
    transition: all 0.3s;
    margin-right: 10px;
    font-weight: bold;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 45%;
}

.info-link:hover {
    background: #003366;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

/* ================================================== */
/* === BOTÕES DE DOWNLOAD DE DOCUMENTOS ============= */
/* ================================================== */
.edital-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
    margin-left: 8%;
}

/* ================================================== */
/* === BOTÃO E MODAL DE SUBMISSÃO DE PROPOSTA ======= */
/* ================================================== */
/* .submission-section {
    margin: 40px 0;
    width: 100%;
    display: block !important; /* Força exibição */
/* } */

/* .submission-button {
    background: linear-gradient(135deg, var(--laranja-simcosta) 0%, #F28C00 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    padding: 25px 20px !important;
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 8px rgba(242, 140, 0, 0.3) !important;
    color: white !important;
    text-decoration: none !important;
    font-weight: bold !important;
    cursor: pointer !important;
    position: relative !important;
    z-index: 10 !important;
}

.submission-button:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 12px rgba(242, 140, 0, 0.4) !important;
    background: linear-gradient(135deg, #F28C00 0%, var(--laranja-simcosta) 100%) !important;
}

.submission-button .button-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
}

.submission-button .button-content i {
    font-size: 2.5rem !important;
    color: white !important;
}

.submission-button .button-text {
    font-size: 1.5rem !important;
    color: white !important;
}

/* Garante que o botão apareça em todas as situações */
/* .edital-content .submission-section {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}  */