
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

html {
     scroll-behavior: smooth;
}


body {
    font-family: 'Open Sans', sans-serif!important;
    background-attachment: scroll;
    background-position:top;
    background-repeat:repeat-x;
	margin-left: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
    scroll-behavior: smooth;

}

/*Primeira Dobra*/
.dobra-inicio {
    margin: 0;
    padding: 0;
    margin-top: 90px;
}

.dobra-inicio .banner-img {
    width: 100%;
    object-fit: cover;
    display: block;
 }

/*----------
    HEADER - ALANA
    -------------*/
nav {
    background-color: #0055FF;
    min-height: 90px;
    box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 5%), inset 0 -1px 0 rgb(0 0 0 / 15%);
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
}
    nav.navbar {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1050; /* acima do conteúdo */
    }

.navbar-header {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* ESSENCIAL */
}

.navbar-brand {
    display: flex;
    align-items: center;
    margin-right: 8px;
    padding-left: 30px;
    flex-shrink: 1; /* permite diminuir */
    min-width: 0; /* MUITO IMPORTANTE */
}

    .navbar-brand img {
        height: clamp(31px, 6vw, 50px);
        width: auto;
        transition: height 0.3s ease;
    }

@media (max-width: 960px) {

    nav {
        min-height: 60px;
    }

    .navbar {
        justify-content: space-between;
    }

    .navbar-brand {
        padding-left: 10px;
        margin-right: 0;

    }

    .dobra-inicio {
        margin-top: 60px;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {

    }

    .navbar-brand {
        margin-right: auto;
        flex-shrink: 0; /* não deixa encolher demais */
        padding: 0;
    }
}

.nav-link {
    font-size: 15px !important;
    color: #eeeeee !important;
    transition: all 0.3s ease-in-out;
}

    .nav-link:hover {
        color: rgb(0 0 0 / 15%);
    }

/*----------
    menu Hambúrguer
    -------------*/
.navbar-light .navbar-toggler-icon {
    filter: invert(1);
}

/* Estado normal */
.navbar-toggler {
    border: none;
    background-color: transparent;
    transition: background-color 0.25s ease;
    margin-left: auto;
}

    .navbar-toggler:focus,
    .navbar-toggler:active {
        outline: none;
        box-shadow: none;
    }

    /* SOMENTE quando o menu estiver aberto */
    .navbar-toggler[aria-expanded="true"] {
        background-color: rgba(255, 255, 255, 0.12);
    }
/*----------
    itens menu Hambúrguer
    -------------*/
.navbar-collapse {
    text-align: center;
}

.navbar-nav {
    margin: 0 auto;
    align-items: center;
}

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        justify-content: center;
    }



.area-acordeon .card-title{
    color: #246DA7;
    text-transform: uppercase;
}

.frase-chamada {
    margin: 0;
    width: 100%;
    font-size: 20px;
    font-weight: 600 !important;
    color: #ffffff;
    background: #fe8400bd;
    border: 1px solid transparent;
    padding: 10px;
    border-radius: 5px;
    margin-top:-70px;
}


/* Acesso rápido */
.acesso-rapido-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding: 50px;
    text-align: center;
    padding: 60px !important;
}
.fundo-claro {
    background-color: #75a0db4a
} 



/* Estilo da Lista com marcadores customizados */
.custom-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #444;
    font-weight: 500;
}

.custom-list li::before {
    content: "•"; /* Ou você pode usar um ícone do FontAwesome/Bootstrap */
    color: #0d6efd;
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-left: -1em;
    position: absolute;
    left: 5px;
    font-size: 1.5rem;
    line-height: 1;
}

/* Composição de Imagens */
.image-composition {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 500px;
}

.map-bg {
    width: 90%;
    opacity: 0.8;
}

.pic-1, .pic-2 {
    position: absolute;
    border-radius: 20px;
    border: 4px solid white;
    max-width: 200px;
}

/* Posicionamento manual para imitar o design */
.pic-1 {
    top: 10%;
    right: 0;
}

.pic-2 {
    bottom: 0;
    left: 10%;
}

/* Ajuste para telas menores */
@@media (max-width: 768px) {
    .image-composition {
        margin-top: 30px;
    }

    .pic-1, .pic-2 {
        max-width: 140px;
    }
}




/* ACESSO RÁPIDO  */
.acesso-header h1 {
    color: #2b57d5; /* Azul aproximado da imagem */
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.acesso-header p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 30px;
}

/* Grid de Botões */
.botoes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 colunas no Desktop */
    gap: 15px;
    width: 100%;
    max-width: 900px; /* Limita a largura para não espalhar demais no monitor */
    margin: 0 auto; /* Centraliza a grid na página */
}

/* Estilo do Botão (Pílula) */
.btn-custom {
    display: flex; /* Mudado para flex para centralizar melhor o texto */
    align-items: center;
    justify-content: center;
    padding: 15px 10px;
    border: 2px solid #2b57d5;
    border-radius: 50px;
    color: #2b57d5;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.2s ease-in-out;
}

    .btn-custom:hover {
        background-color: #2b57d5;
        color: white;
    }

/* Tablets: 2 colunas */
@media (max-width: 768px) {
    .botoes-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px; /* Respiro nas laterais */
    }
}

/* Celulares: UM EMBAIXO DO OUTRO */
@media (max-width: 480px) {
    .botoes-grid {
        grid-template-columns: 1fr; /* Força uma única coluna */
        gap: 10px; /* Diminui um pouco o espaço entre eles no celular */
    }

    .btn-custom {
        font-size: 1rem; /* Diminui levemente a fonte para telas pequenas */
        padding: 12px 10px;
    }

    .acesso-header h1 {
        font-size: 1.4rem; /* Ajuste no título */
        padding: 0 10px;
    }
}


.btn-outline-primary {
    border-width: 2px;
    color: #0d6efd;
    border-color: #0d6efd;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: #0d6efd;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}


.area-matricula {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #246DA7;
}
.card-title i {
    color:#ff8500;
}
.info-mat-candidatos h2 {
    font-size:20px;
    color:#ffffff;
    
}
.gradient {
    background-image: linear-gradient(to bottom, #ff8500, #ffbc00, #ffbc00);
    color: #ff8500;
    FONT-WEIGHT: BOLD;
    padding: 1%;
    background-clip: text;
    -webkit-background-clip: text;
    /* Adicionado: */
    -webkit-text-fill-color: transparent;
}
.chamada-matricula{
    color:white;
    font-size:60px;
    font-style:italic;
}


/*---------------------------
    Nova area de cards
    --------------------------*/
#nova-area-cards .card {
    border-radius: 12px !important;
    border: 1px solid #0052FF10 !important;
    background: #ffffff !important;
    transition: all .2s ease-in-out;
    box-shadow: none !important;
    min-height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#nova-area-cards .card-body img {
    margin-bottom: 0 !important;
}

#nova-area-cards .card img {
    position: relative !important;
    top: 0 !important;
    right: 0 !important;
    height: 65px;
    margin-bottom: 10px;
}

#nova-area-cards .card-title {
    text-align: center;
    margin-top: 0 !important;
}

#nova-area-cards .card:hover {
    background: #0052ff08 !important;
    transform: translateY(-4px);
    border-color: #0052FF40 !important;
}

#nova-area-cards h3 {
    font-size: 28px;
    font-weight: 700;
    transition: all .2s ease-in-out;
}
#nova-area-cards .card {
    border-radius: 39px;
}
#nova-area-cards h3 span{
    display:block;
    font-size:20px;
    font-weight:400;
}
#nova-area-cards .card-body {
    display: flex;
    flex-direction: column-reverse; 
    justify-content: center;
    align-items: center;
    gap: 12px;
}
#nova-area-cards .card-img-overlay {
    display: flex;
    align-items: end;
    color:#ffffff;
    text-decoration:none;
}
#nova-area-cards .card-body img {
    position: absolute;
    top: -11px;
    right: -11px;
    height: 100px;
}
#nova-area-cards a:hover {
    text-decoration:none;
    transition: all 0.5s;
}
#nova-area-cards a:hover h3{
    transform: scale(1.1);
    padding-left:8px;
}


/* Container do Card */
.area-card {
   text-decoration: none;
    display: block;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease;
    width: 100%; /* Ocupa a largura da coluna do Bootstrap */
}

.area-card:hover {
    transform: scale(1.03);
}

/* Imagem e Filtro de Cor */
.area-image {
    background-size: cover;
    background-position: center;
    height: 450px;
    width: 100%;
    display: flex;
    align-items: flex-end;
    padding: 50px;
    position: relative;
}

/* Camada de cor (Mix Blend Mode simula o efeito da imagem) */
.area-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--area-color);
    opacity: 0.7;
    mix-blend-mode: multiply; /* Faz a cor fundir com a foto P&B */
    transition: opacity 0.3s ease;
}

.area-card:hover .area-overlay {
    opacity: 0.85;
}

/* Título do Card */
.area-title {
    color: white;
    position: relative;
    z-index: 2;
    font-weight: bold;
    text-align: left;
    text-transform: uppercase;
    font-size: 1.1rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
}



@media (max-width: 575.98px) {

    .frase-chamada {
        font-size: 19px;        
        margin-top: -30px;
        margin-bottom:20px;
    }
    .logo {
        width: 80%;
        margin-top: -40px;
    }
    .texto-destaque {        
        font-size: 20px;
    }
    .chamada-matricula {
        font-size: 200%;        
    }
    #header-inicio {
        padding: 55px;
    }
    .area-matricula {
        margin-bottom:15px;
    }

    #nova-area-cards .card {
        min-height: 120px;
    }
    #nova-area-cards .card img {
        height: 55px;
    }
    
    #nova-area-cards h3 {
        font-size: 19px;
        font-weight: 700;
        transition: all .2s ease-in-out;
    }   
    #nova-area-cards h3 span {
        display: block;
        font-size: 15px;
        font-weight: 400;
    }
    .imagem-pesquisa{
        height:185px;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {

    .frase-chamada {
        font-size: 19px;        
        margin-top: -30px;
        margin-bottom:20px;
    }
    .logo {
        width: 50%;
        margin-top: -40px;
    }
    #header-inicio {
        padding: 55px;
    }
    .area-matricula {
        margin-bottom:15px;
    }
    .card-inscricao {
        width:220px;
    }
    .card-consulte {
        width: 220px;
    }
    .card-altere {
        width: 220px;
    }
    .card-duvidas {
        width: 220px;
    }
    .card-escolas {
        width: 220px;
    }
    .card-resolucao {
        width: 220px;
    }
    .card-fases {
        width: 220px;
    }
    .card-calendario {
        width: 220px;
    }
    .card-transferencia {
        width: 220px;
    }
    .informativo-matricula {
        border-radius: 20px;
        width:500px;
    }
    .informativo1 {
        padding-left: 80px !important;
    }
    .informativo2 {
        padding-left: 50px !important;
        text-align: justify;
        margin-right: 30px;
    }
    .informativopesquisa {
        padding-left: 50px !important;
        text-align: center;
        margin-right: 30px;
    }
    .destaque {
        width: 18%;
        height: auto;
        margin-top: -190px;
        margin-left: -1.5%;
    }   
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {

    .frase-chamada {
        font-size: 19px;        
        margin-top: -45px;
        margin-bottom:20px;
    }
    .logo {
        width: 40%;
        margin-top: -58px;
    }
    #header-inicio {
        padding: 73px;
    }
    .area-matricula {
        margin-bottom:15px;
    }
    .card-inscricao {
        width:300px;
    }
    .card-consulte {
        width: 300px;
    }
    .card-altere {
        width: 300px;
    }
    .card-duvidas {
        width: 300px;
    }
    .card-escolas {
        width: 300px;
    }
    .card-resolucao {
        width: 300px;
    }
    .card-fases {
        width: 300px;
    }
    .card-calendario {
        width: 300px;
    }
    .card-transferencia {
        width: 300px;
    }
    .informativo-matricula {
        border-radius: 30px;
    }
    .informativo2 {
        text-align: justify;
        margin-right: 30px;
    }
    .informativopesquisa {
        padding: 0 36px;
    }
    .destaque {
        width: 18%;
        height: auto;
        margin-top: -225px;
        margin-left: -1.5%;
    }   
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {

    .frase-chamada {
        font-size: 19px;       
    }
    .logo {
        width: 36%;        
        margin-top: -62px;
    }
    #header-inicio {
        padding: 73px;
    }
    .informativo-matricula {
        border-radius: 80px;
    }
    .informativo2 {
        text-align: justify;
        margin-right: 30px;
    }
    .informativopesquisa {
        text-align: justify;
        margin-right: 30px;
    }
    .destaque {
        width: 18%;
        height: auto;
        margin-top: -262px;
        margin-left: -1.5%;
    }
    .imagem-pesquisa {
        margin-left: 96px;
        height:240px;
    }
    .pesquisa {
        height: 320px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

    #nova-area-cards h3 span {
        font-size: 22px;        
    }
    .logo {
        width: 28%;       
        margin-top: -87px;
    }
    #header-inicio {
      padding: 96px;
    }
    .informativo-matricula {
        border-radius: 80px;        
    }
    .informativo2 {
        text-align: justify;
        margin-right: 30px;
    }
    .informativopesquisa {
        text-align: justify;
    }
    .destaque {
        width: 18%;
        height: auto;
        margin-top: -282px;
        margin-left: -1.5%;
    }      
    .imagem-pesquisa{
        margin-left:115px;
    }
    .pesquisa {
        height: 300px;
    }
}

/*-------------
    MODAL PERGUNTA INSCRIÇÃO
    ---------------*/
.modal-pergunta-inscricao-exclamacao i {
    background: #ffffff;
    color: #ff8500;
    border: 5px solid white;
    border-radius: 50px;
    font-size: 48px;
}

.modal-pergunta-inscricao-frase {
    max-width: 250px;
}

.modal-pergunta-protecao-frase {
    max-width: 350px;
}

.modal-pergunta-inscricao-botao, .modal-pergunta-protecao-botao {
    color: #ffffff;
    background: #246da6;
    border-color: #246da6;
}

.modal-pergunta-inscricao-content, .modal-pergunta-protecao-content {
    background: #f8f9fade !important;
}

.modal-pergunta-inscricao-body {
    background: #246da6;
    color: #ffffff;
    border-radius: 50px
}

.modal-pergunta-protecao-body {
    background: #246da6;
    color: #ffffff;
    border-radius: 50px;
}

.versao-hora {
    font-size: 11px;
    border: 1px solid #ededed;
    padding: 10px;
    position: fixed;
    bottom: 10px;
    background-color: #fff;
    border-radius: 15px;
    right: 10px;
    z-index: 1;
}




:root {
    --primary-blue: #2b4da1;
    --accent-orange: #f8a51b;
    --bg-light-purple: #e9e4f5;
}

.faetec-section {
    background-color: var(--bg-purple);
    padding-bottom: 80px;
    font-family: sans-serif;
    background-color: #75a0db4a;
}





/* SEGUNDA SESSÃO - ALANA */

/* Container que faz o efeito de "invadir" a seção superior */
.search-container {
    display: flex;
    justify-content: center;
    transform: translateY(-60%);
    margin-bottom: -160px;
    padding: 0 15px; /* Evita que o bloco encoste nas laterais em telas pequenas */
    position: relative;
    z-index: 10;
}

/* O bloco branco principal */
.search-box {
    background: white;
    padding: 50px 50px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 1000px;
    width: 100%;
    transition: all 0.3s ease; /* Transição suave ao redimensionar */
}

    .search-box p {
        margin: 0;
        color: #555;
        font-size: 18px;
        flex: 1;
        padding-right: 20px;
    }

.btn-search {
    background-color: var(--accent-orange);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    cursor: pointer;
}


/* Responsividade para telas médias*/
@media (max-width: 1000px) {
    .search-box {
        flex-direction: column;
        text-align: center;
        padding: 15px;
        margin-top: 60px;
    }

        .search-box p {
            padding-right: 0;
            margin-bottom: 10px;
            font-size: 14px;
        }

    .btn-search {
        padding: 8px 20px;
        max-width: 300px;
        font-size: 14px;
    }

    .search-container {
        transform: translateY(-75%);
    }
}


/* Responsividade para telas médias*/
@media (max-width: 655px) {
    .search-box {
        padding: 15px;
        margin-top: 20px;
    }

        .search-box p {
            padding-right: 0;
            margin-bottom: 10px;
            font-size: 14px;
        }

    .btn-search {
        padding: 8px 20px;
        max-width: 300px;
        font-size: 14px;
    }

    .search-container {
        transform: translateY(-94%);
    }
}

    /* Responsividade para telas menores (Tablets e Celulares) */
    @media (max-width: 768px) {

        .content-row {
            flex-direction: column-reverse;
            text-align: center;
        }

        /* Ajuste da lista no mobile */
        .features-list {
            display: inline-block;
            text-align: left;
            margin: 20px auto;
            width: fit-content;
        }
    }



    /* Layout de Conteúdo */
    .container {
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .content-row {
        display: flex;
        align-items: center;
        gap: 40px;
        padding-top: 40px;
    }

    .text-content {
        flex: 1;
    }

    .image-content {
        flex: 1;
    }

    .text-content h2 {
        color: var(--primary-blue);
        font-size: 24px;
        margin-bottom: 20px;
    }

    /* Marcadores da Lista */
    .features-list {
        list-style: none;
        padding: 0;
        margin-top: 20px;
    }

        .features-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: #2b4da1;
            font-weight: 500;
            line-height: 1.2;
        }

            .features-list li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 6px; /* Ajuste para alinhar com o topo da letra */
                width: 8px;
                height: 8px;
                background-color: #f8a51b;
                border-radius: 50%;
            }

    /* Estilização da Timeline */
    .steps-section {
        text-align: center;
        margin-top: 80px;
        color: var(--primary-blue);
    }

    .needs-text {
        font-weight: bold;
        margin: 30px 0;
    }

    /* Container principal da timeline */
    .timeline-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 0 10px; /* Evita que o texto encoste nas bordas */
    }

    /* Imagem da timeline (já está diminuindo, mantemos assim) */
    .timeline-img {
        width: 100%;
        height: auto;
        display: block;
    }

    /* Grid das frases */
    .timeline-labels {
        display: grid;
        grid-template-columns: repeat(4, 1fr); /* Mantém 4 colunas */
        gap: 80px;
        margin-top: 15px;
        font-size: 16px;
        line-height: 1.3;
        color: #444;
    }

        .timeline-labels span {
            display: block;
            text-align: center;
            padding: 0 5px;
            word-wrap: break-word; /* Garante que palavras longas não quebrem o layout */
        }

    /* Ajuste específico para celulares muito pequenos */
    @media (max-width: 790px) {
        .timeline-labels {
            font-size: 9px; /* Tamanho mínimo legível para telas minúsculas */
            gap: 5px;
        }

        .timeline-labels {
            gap: 0px;
            font-size: 15px;
        }
    }


/* ===== RODAPÉ ===== */
.rodape {
    background-color: #0056b3;
    color: white;
    padding: 30px 60px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.rodape-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    flex-wrap: wrap;
    gap: 20px;
}

.rodape-logos {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rodape-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    max-width: 100%;
}

    .rodape-logo.logo1 {
        border-right: 1px solid white;
        padding-right: 15px;
        margin-top: -5px;
    }

.rodape-redes {
    display: flex;
    gap: 20px;
    font-size: 22px;
}

    .rodape-redes a {
        color: white;
        transition: 0.3s;
    }

        .rodape-redes a:hover {
            transform: scale(1.1);
            color: #dfeaff;
        }

.rodape-copy {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.9;
}

select,
select option,
.card-header,
.card-title,
h1, h2, h3, h4, h5, h6,
label {
    text-transform: none !important;
}

@media (max-width: 900px) {

    .rodape-container {
        flex-direction: column;
        align-items: center;
        gap: 6px;
    }

    .rodape-logos {
        justify-content: center;
        margin: 5px;
    }

    .rodape {
        padding: 10px;
    }

    .rodape-logo {
        height: 26px;
    }

    .rodape-redes {
        font-size: 18px;
    }
}
