body {

    font-family: Arial, Helvetica, sans-serif;

}



/* CORREÇÃO DA MARGEM LATERAL */
body {
  overflow-x: hidden;
  position: relative;
}

.row {
  margin-left: 0;
  margin-right: 0;
}

.carousel-inner {
  overflow: hidden;
}

ul {
    /* remove o marcador e a semântica */
    list-style-type: none;
}

li::before {
    /* devolve a semântica apenas */
    content: "\200B";
}


.event-section {
    /* background-color: #f8f9fa; */
    padding: 40px 15px;
}

.event-section h1 {
    margin-bottom: 20px;
}

.card img {
    border-radius: 8px;
}

.cta-section {
    /* background-color: #090228; */
    /* color: white; */
    text-align: center;
    padding: 40px 15px;
}

.cta-section h1 {
    margin-bottom: 20px;
}

.btn-custom {
    /*
    background: #0177D8;
    background: linear-gradient(90deg, rgba(1, 119, 216, 1) 0%, rgba(3, 137, 248, 1) 50%, rgba(9, 112, 203, 1) 100%);

    *

            color: white;
            border: none;
        }
        .btn-custom:hover {
            background-color: #d63384;
            color: white;
        }






    .card {
        height: 100%; /* Garante que todos os cards tenham a mesma altura */
}


.event-section .card-img-top {
    height: 180px;
    /* Altura fixa */
    object-fit: cover;
    /* Mantém proporção sem distorcer */
    border-radius: 8px;
    /* Aplica borda arredondada */
}


#oportunidades .card-img-container img {
    object-fit: contain;
    border-radius: 8px;
}


.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* Distribui título e botão de forma equilibrada */
}


/* Footer */
.fixed-bar {
    /* position: fixed;*/
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #3755a2;
    color: white;
    padding: 10px;
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.fixed-bar-container {
    display: flex;
    flex-direction: column;
    /* Organiza em coluna para a imagem ficar acima */
    justify-content: center;
    align-items: center;
    gap: 10px;
    /* Espaçamento entre a imagem e os ícones */
}

.fixed-bar-logo {
    width: 300px;
    /* max-height: 50px; */
    object-fit: contain;
}

.fixed-bar-links {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin: 0;
}

.fixed-bar-links li {
    margin: 0 8px;
    /* Ajuste o espaçamento entre os ícones */
}

.fixed-bar-links a {
    color: white;
    font-size: 20px;
    /* Diminuído o tamanho dos ícones */
}

.fixed-bar-text {
    font-size: 11px;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .fixed-bar-container {
        flex-direction: column;
    }

    .fixed-bar-text {
        margin-top: 10px;
    }
}

/********/


.aceite {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    display: none;
    z-index: 3;
}


.fa-solid,
.fas {
    font-weight: 900;
    color: #0a58ca !important;
}


.logotipos {
    background-color: #fff;
    color: #111;
    padding: 0px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 0px #bebebe,
        -0px -0px 10px #bebebe59;
}


/* menu */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f8f9fa;
    color: white;
    padding: 10px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav {
    display: flex;
    align-items: center;
    /* Certifica que todos os itens do menu, incluindo a imagem, estão centralizados */
    gap: 20px;
    /* Espaçamento entre os itens */
}

nav .menu-item {
    display: flex;
    align-items: center;
    /* Centraliza verticalmente os links e a imagem */
    margin-right: 20px;
    margin-left: 20px;
}

nav .menu-item a {
    color: #094d98;
    text-decoration: none;
    font-weight: bold;
}

nav .menu-item img {
    width: 140px;
    /* Mantém o tamanho da logo */
}

.menu-icon {
    display: none;
    cursor: pointer;
    font-size: 24px;
}

/* Menu lateral para mobile */
.side-menu {
    height: 100%;
    width: 250px;
    position: fixed;
    right: -250px;
    top: 0;
    background-color: #3755a2;
    z-index: 1500;
    transition: 0.3s;
    padding-top: 60px;
    text-align: center;
}

.side-menu .menu-item {
    padding: 10px;
}

.side-menu .menu-item a {
    color: white;
    font-size: 18px;
    display: block;
}

.side-menu-close {
    font-size: 30px;
    color: white;
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
}

/* Estilos Mobile */
@media (max-width: 768px) {
    nav .menu-item {
        display: none;
    }

    .menu-icon {
        display: block;
        color: #3761ab;
    }
}

section {
    padding: 16px 20px;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1400;
}

@media (max-width: 768px) {
    .side-menu {
        display: block;
        right: -250px;
    }

    .menu-overlay {
        display: none;
    }
}

.side-menu .menu-item {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

.side-menu .menu-item a {
    text-decoration: none !important;
}


/* ### Fim do menu ### */


/* ### FAQ ### */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap");

h2.faq-heading {
    font-family: "Inter", sans-serif;
    text-align: center;
    font-weight: 300;
    font-size: 28px;
    color: #1d3557;
    margin: 8px 0;
    margin-top: 60px;
}

.faq-container {
    max-width: 985px;
    border-radius: 8px;
    box-shadow: 0 4px 20px -8px rgba(0, 0, 0, 0.3);
    margin: 32px auto;
    font-family: "Inter", sans-serif;
    color: #0056b3;
    line-height: 1.9;
}

.faq-container .question-container {
    border-bottom: 1px solid #eee;
}

.faq-container .question {
    display: flex;
    justify-content: space-between;
    gap: 32px;
    font-size: 18px;
    font-weight: bold;
    padding: 16px 24px;
    cursor: pointer;
}

.faq-container .question .question-icon {
    width: 20px;
    height: 20px;
    background: #eee;
    padding: 4px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    transition: all 300ms ease;
}

.faq-container .question-container.expanded .question-icon {
    background: #3755a2;
    color: #fff;
    transform: rotateZ(180deg);
}

.faq-container .answer {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 8px 0;
}

.faq-container .answer .answer-icon {
    width: 20px;
    flex-shrink: 0;
    color: #3755a2;
    display: flex;
    margin-top: 5px;
}

.faq-container .answer-container {
    padding: 0px 32px;
    background: #edf2f4;
    max-height: 0;
    overflow: hidden;
    transition: all 300ms ease;
}

.faq-container .question-container.expanded .answer-container {
    max-height: 500px;
    padding: 8px 32px;
}

/**** Fim FAQ*****/


/* Para dispositivos mobile */
@media (max-width: 767px) {
    .ajuste-top {
        margin-top: 0px;
    }
}

/* Para dispositivos desktop */
@media (min-width: 768px) {
    .ajuste-top {
        margin-top: 26px;
    }
}


/*=============== FOOTER ===============*/
footer {
    background-color: var(--second-color);
    margin-top: 0rem;
    background: #004a8d;
}

.footer__container {
    display: flex;
    justify-content: center;
    background: #004a8d;
}

.footer__container img {
    max-width: 21rem;
}


.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: #004a8d;
}

.fontcolor_footer {
    color: #fff !important;
    font-size: 0.82rem;
    background: #004a8d;
}

.bx {
    padding: 5px;
}

.redes {
    color: #fff !important;
}

/*==============================*/

.form-control {
    display: block;
    width: 100%;
    height: 3.2rem;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.loader {
    display: none;
}


.loader2 {
    display: none;
}

.content-wrapper {
    margin: 2em 0;
}

.content-wrapper>h1 {
    margin-bottom: 0.5em;
}

h1,
h2 {
    padding: 0;
    margin: 0;


    color: #0056b3 !important;
    font-weight: bold !important;


}

.img-wrapper {
    max-width: 100%;
    max-height: 100%;
}

.img-wrapper>img {
    object-fit: cover;
    width: 100%;
    height: 170px;
    border-radius: 4px;
    border: 1px solid #f6be00 !important;
}

.work-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(333px, 1fr));
    grid-gap: 25px;
    color: #444;
    margin-bottom: 2em;
}

.card {
    background-color: #fff;
    color: #111;
    /* padding: 36px; */
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 15px;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 0px #bebebe,
        -0px -0px 10px #bebebe59;
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (-webkit-min-device-pixel-ratio: 2) {
    body {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
    }

    .content-wrapper {
        margin: 1em 0;
    }

    .img-wrapper>img {
        height: 159px;
    }

    .work-wrapper {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(100%, 1fr));
    }
}


@media only screen and (max-width: 600px) {
    .slide-desk {
        display: none !important;
    }

}


@media only screen and (min-width: 601px) {
    .slide-mobi {
        display: none !important;
    }

}


.cta-section {
    background: #0177D8;
    background: linear-gradient(90deg, rgba(1, 119, 216, 1) 0%, rgba(3, 137, 248, 1) 50%, rgba(9, 112, 203, 1) 100%);
    color: white;
    text-align: center;
    padding: 40px 15px;
    margin-top: 15px;
}

.cta-section h1 {
    margin-bottom: 20px;
}


@media (max-width: 575.98px) {

    /* redefinindo só o --bs-gutter-y dentro do seu componente */
    #cards_cta {
        /* se quiser afetar _todas_ as container-* internas, 
       não precisa repetir a lista de classes: a var 
       herda para as children .row e .col normalmente */
        --bs-gutter-y: 1rem !important;
    }
}


.card-transparente {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}


.card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);

    border-color: #FF7A00;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.3);

}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.btn-custom {
    background-color: #0056b3;
    color: #fff;
    border-radius: 6px;
    transition: background-color 0.2s ease;
}

.btn-custom:hover {
    background: #f7fdfe;
    border: 1px solid #FF6600;
}


.form-select {
    max-width: 280px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}


/* Seção de fundo com detalhe laranja suave */
.cta-section {
    background: linear-gradient(to bottom, #fff, #fff5ec);
    padding: 40px 0;
    text-align: center;
}

/* Título com laranja forte */
.cta-section h1 {
    color: #0056b3 !important;
    font-weight: bold;
    margin-bottom: 20px;
}

/* Texto abaixo do título */
.cta-section p {
    color: #444;
    font-size: 1.1rem;
}

/* Select estilizado */
.cta-section select {
    border: 2px solid #0056b3 border-radius: 8px;
    padding: 10px;
    background-color: white;
    color: #333;
    font-weight: 500;
    transition: 0.3s ease;
}

.cta-section select:hover,
.cta-section select:focus {
    border-color: #FF7A00;
    box-shadow: 0 0 8px rgba(255, 102, 0, 0.3);
}

/* Cards transparentes com detalhe laranja */
.card-transparente {
    background-color: rgba(255, 255, 255, 0.9);
    border: 1px solid #FFD1B2;
    border-radius: 12px;
    padding: 15px;
}

.card-transparente h5 {
    color: #FF6600;
}

.card-transparente .btn {
    background-color: #FF6600;
    border: none;
    color: white;
}






/* ESTILOS PARA O MURAL DE VAGAS MELHORADO */
#mural-de-vagas .card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: visible;
}

#mural-de-vagas .card-link {
    text-decoration: none;
    display: block;
    color: inherit;
    transition: transform 0.3s ease;
}

#mural-de-vagas .card-link:hover {
    transform: translateY(-5px);
}

#mural-de-vagas .card-img-container {
    height: 180px;
    background-color: #f8f9fa;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-radius: 12px 12px 0 0;
}

#mural-de-vagas .card:hover .card-img-container {
    background-color: #fff5ec;
}

#mural-de-vagas .card-img-top {
    max-height: 120px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

#mural-de-vagas .card:hover .card-img-top {
    transform: scale(1.05);
}

/* Overlay e ícone de clique */
.hover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 122, 0, 0);
    transition: background 0.3s ease;
    z-index: 3;
    border-radius: 12px 12px 0 0;
}

.card-link:hover .hover-overlay {
    background: rgba(255, 122, 0, 0.1);
}

.hover-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: #FF7A00;
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: transform 0.3s ease, opacity 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
}

.card-link:hover .hover-icon {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Texto "Ver oportunidades" */
.view-text {
    color: #6c757d;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    display: inline-block;
}

.view-text::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #FF7A00;
    transition: width 0.3s ease;
}

.card-link:hover .view-text {
    color: #FF7A00;
}

.card-link:hover .view-text::after {
    width: 100%;
}



        /* Estilos específicos para o card de destaque */
        .destaque-card {
            background: linear-gradient(135deg, var(--destaque-color), #1a252f);
            color: var(--text-color);
            border: none;
        }
        
        .destaque-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2) !important;
        }
        
        .destaque-img-container {
            height: 250px;
            padding: 30px;
            background-color: rgba(255, 255, 255, 0.1);
        }
        
        .destaque-img-container img {
            max-height: 180px;
        }
        
        .destaque-content {
            padding: 25px;
        }
        
        .destaque-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #fff;
        }
        
        .destaque-text {
            font-size: 1.1rem;
            margin-bottom: 20px;
            opacity: 0.9;
        }
        
        .destaque-badge {
            background: rgba(255, 255, 255, 0.15);
            border-radius: 20px;
            padding: 5px 15px;
            font-size: 0.9rem;
            margin-right: 10px;
            margin-bottom: 10px;
            display: inline-block;
        }
        
        .destaque-footer {
            background: rgba(0, 0, 0, 0.1);
            padding: 15px 0;
        }
        
        .destaque-footer .view-text {
            color: #fff;
            font-size: 1.1rem;
        }
        
        .destaque-card:hover .destaque-footer {
            background: rgba(0, 0, 0, 0.2);
        }
        
        @media (max-width: 767.98px) {
            .destaque-img-container {
                height: auto;
                padding: 20px;
            }
            
            .destaque-content {
                padding: 20px;
            }
            
            .destaque-title {
                font-size: 1.5rem;
            }
        }



section#sobre.bg-light {
  background-color: transparent !important;
}


            .fas.fa-arrow-right {
            color: #fff !important;
            }
            .btn-custom.btn-inscreva:hover {
            color: #fff; /* texto branco */
            }
            .btn-custom.btn-inscreva:hover i {
            color: #fff; /* ícone branco */
            }



:root {
    --primary: #0056b3;
}

.benefits-section {
    padding: 5rem 0;
     background: linear-gradient(to bottom, #fff, #fff5ec);
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    font-size: 2rem;
}

.section-title {
    position: relative;
    display: inline-block;
    margin-bottom: 2.5rem;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}


        /* Estilo para o card principal */
        .main-highlight {
            background: linear-gradient(135deg, #1a5276, #3498db);
            color: white;
            border: none;
            position: relative;
            overflow: hidden;
        }
        
        .main-highlight::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #f1c40f, #e67e22);
        }
        
        .main-highlight .benefit-icon {
            background: rgba(255, 255, 255, 0.2);
            border: 2px solid white;
        }
        
        .main-highlight h3, 
        .main-highlight p {
            color: white;
        }
        
        .main-highlight h3 {
            font-size: 2rem;
            margin-bottom: 15px;
        }
        
        .youtube-link {
            display: inline-flex;
            align-items: center;
            margin-top: 20px;
            padding: 10px 20px;
            background: #e74c3c;
            color: white;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .youtube-link:hover {
            background: #c0392b;
            transform: scale(1.05);
        }
        
        .youtube-link i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 70px;
            height: 70px;
            background: rgba(231, 76, 60, 0.8);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .thumbnail-container {
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .thumbnail-container:hover .play-overlay {
            opacity: 1;
        }
        
        .thumbnail-container img {
            width: 100%;
            display: block;
            transition: all 0.3s ease;
        }
        
        .thumbnail-container:hover img {
            transform: scale(1.03);
        }
        
        .play-overlay i {
            color: white;
            font-size: 28px;
        }
        
        .highlight-tag {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #f1c40f;
            color: #2c3e50;
            padding: 5px 15px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 0.9rem;
            box-shadow: 0 3px 10px rgba(0,0,0,0.1);
        }
