/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Segoe UI',sans-serif;
    color:#222;
    background:#fff;
    overflow-x:hidden;
}

/* =========================
   CORES INSTITUCIONAIS
========================= */

:root{
    --azul:#003b8f;
    --azul-escuro:#002c69;
    --laranja:#ff6b00;
    --cinza:#f5f5f5;
    --branco:#ffffff;
}

/* =========================
   HEADER
========================= */

.header{
    position:fixed;
    width:100%;
    z-index:9999;
    top:0;
    left:0;
    transition:.3s;
}

.navbar{
    background:#002c69;
    backdrop-filter:blur(10px);
    padding:15px 0;
}

.navbar-brand img{
    max-height:100px;
    width:auto;
}

.nav-link{
    color:#fff !important;
    font-weight:600;
    margin-left:10px;
}

.nav-link:hover{
    color:var(--laranja)!important;
}

.dropdown-menu{
    border:none;
    box-shadow:0 10px 30px rgba(0,0,0,.15);
}

.dropdown-item:hover{
    background:var(--laranja);
    color:#fff;
}

/* =========================
   BOTÕES
========================= */

.btn-aluno{
    background:var(--laranja);
    color:#fff;
    border-radius:30px;
    padding:10px 20px;
    font-weight:700;
    border:none;
}

.btn-aluno:hover{
    background:#e85f00;
    color:#fff;
}

.btn-inscricao{
    background:#003b8f;
    color:#fff;
    border:2px solid #003b8f;
    border-radius:40px;
    padding:14px 30px;
    font-weight:700;
    min-width:240px;
}

.btn-inscricao:hover{
    background:#e85f00;
    color:#fff;
}

.btn-aprendiz{
    background:var(--azul);
    color:#fff;
    padding:12px 25px;
    border-radius:30px;
}

.btn-aprendiz:hover{
    background:var(--azul-escuro);
    color:#fff;
}

.btn-cursos{
    background:#fff;
    color:#003b8f;
    border:2px solid #fff;
    border-radius:40px;
    padding:14px 30px;
    font-weight:700;
    min-width:240px;
}

.btn-cursos:hover{
    background:#003b8f;
    color:#fff;
    border-color:#003b8f;
}

/* =========================
   HERO
========================= */

.hero{
    position:relative;
    min-height:700px;
    background:url('../img/Banner.jpg');
    background-position:center;
    background-size:cover;
    background-repeat:no-repeat;
    display:flex;
    align-items:flex-end;
    justify-content:center;
    padding-bottom:70px;
}

/* ==========================
   CARROSSEL
========================== */

.hero-carousel{
    margin-top:110px;
}

.banner-slide{
    width:100%;
    height:auto;
    display:block;
}

.carousel-caption{
    bottom:40px;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:20px;
}

.carousel-item{
    background:#ffffff;
    text-align:center;
}

.carousel-control-prev,
.carousel-control-next{
    width:6%;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}



.overlay{
    display:none;
}

.hero-content{
    position:relative;
    z-index:10;
    text-align:center;
    color:#fff;
}

.hero-content h1{
    font-size:4rem;
    font-weight:800;
    margin-bottom:20px;
}

.hero-content p{
    font-size:1.3rem;
    max-width:800px;
    margin:auto;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
    margin-top:0;

}

/* =========================
   MODALIDADES
========================= */

#modalidades{
    background:#fff;
    padding:80px 0;
}

.card-modalidade{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    transition:.3s;
    cursor:pointer;

    height:100%;
    display:flex;
    flex-direction:column;
}
.card-modalidade img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.card-modalidade h3{
    text-align:center;
    padding:20px;
    color:var(--azul);
    font-weight:700;

    display:flex;
    align-items:center;
    justify-content:center;

    min-height:80px;
}

.card-modalidade .dropdown{
    display:flex;
    align-items:center;
    justify-content:center;

    min-height:80px;
}


/* =========================
   SOBRE
========================= */

.sobre{
    padding:100px 0;
    background:var(--cinza);
}

.sobre h2{
    color:var(--azul);
    font-size:2.5rem;
    font-weight:800;
    margin-bottom:25px;
}

.sobre p{
    line-height:1.8;
    margin-bottom:15px;
}

/* =========================
   CURSOS
========================= */

.graduacao{
    padding:100px 0;
}

.graduacao h2{
    color:var(--azul);
    font-weight:800;
}

.curso-card{
    background:var(--azul);
    color:#fff !important;

    height:55px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:10px;

    text-decoration:none !important;

    font-size:1rem;
    font-weight:700;

    transition:.3s;
}

.curso-card:hover{
    background:var(--laranja);
    color:#fff !important;
    transform:translateY(-2px);
}

/* =========================
   PROCESSO SELETIVO
========================= */

.processo-seletivo{
    background:linear-gradient(
    135deg,
    var(--azul),
    var(--azul-escuro)
    );
    color:#fff;
    padding:100px 0;
}

.processo-seletivo h2{
    font-size:3rem;
    font-weight:800;
}

.processo-seletivo p{
    font-size:1.2rem;
    margin:20px 0;
}

/* =========================
   FOOTER
========================= */

footer{
    background:#111;
    color:#fff;
    padding:60px 0;
}

footer h4{
    color:var(--laranja);
    margin-bottom:20px;
}

footer p{
    margin-bottom:8px;
}

/* =========================
   WHATSAPP
========================= */

.whatsapp-float{
    position:fixed;
    width:65px;
    height:65px;
    right:25px;
    bottom:25px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:32px;
    z-index:99999;
    text-decoration:none;
    box-shadow:0 5px 20px rgba(0,0,0,.3);
}

.whatsapp-float:hover{
    color:#fff;
    transform:scale(1.05);
}

.whatsapp-label{
    position:absolute;
    right:80px;
    background:#fff;
    color:#333;
    padding:8px 12px;
    border-radius:20px;
    white-space:nowrap;
    font-weight:600;
    font-size:14px;
    box-shadow:0 2px 10px rgba(0,0,0,.15);
    opacity:0;
    visibility:hidden;
    transition:.3s;
}

.whatsapp-float:hover .whatsapp-label{
    opacity:1;
    visibility:visible;
}


/* =========================
   RESPONSIVO
========================= */

@media(max-width:991px){

.hero-content h1{
    font-size:2.7rem;
}

.navbar-brand img{
    max-height:70px;
}

.card-modalidade img{
    height:180px;
}

}

@media(max-width:768px){

.hero-carousel{
    margin-top:140px;
}

.navbar-brand img{
    max-height:65px;
}

.hero{
    background:url('../img/banner-mobile.jpg');
    background-size:cover;
    background-position:center;
}

.hero-content h1{
    font-size:2.2rem;
}

.hero-content p{
    font-size:1rem;
}

.sobre{
    padding:60px 0;
}

.graduacao{
    padding:60px 0;
}

.processo-seletivo h2{
    font-size:2rem;
}

/* CARROSSEL MOBILE */

.banner-slide{
    width:100%;
    height:auto;
}

.carousel-caption{
    bottom:30px;
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
}

}

@media(max-width:576px){

    .hero-carousel{
    margin-top:160px;
}

.navbar-brand img{
    max-height:55px;
}

.hero-content h1{
    font-size:1.8rem;
}

.btn-inscricao{
    width:100%;
}

.btn-outline-light{
    width:100%;
}

}

/* ==========================
   ANIMAÇÕES
========================== */

.card-modalidade,
.curso-card,
.sobre,
.processo-seletivo{
    opacity:0;
    transform:translateY(40px);
    transition:.8s;
}

.card-modalidade.active,
.curso-card.active,
.sobre.active,
.processo-seletivo.active{
    opacity:1;
    transform:translateY(0);
}

/* =========================
   RODAPÉ MODERNO
========================= */

footer{
    background:#f5f5f5;
    padding:30px 0;
    text-align:center;
    color:#555;
}

.footer-logo{
    max-width:300px;
    width:100%;
    height:auto;
    margin-bottom:15px;
}

.footer-social{
    display:flex;
    justify-content:center;
    gap:25px;
    margin-bottom:20px;
}

.footer-social a{
    color:#3f418d;
    font-size:38px;
    transition:.3s;
}

.footer-social a:hover{
    color:var(--laranja);
    transform:translateY(-2px);
}

.footer-copy{
    margin-bottom:8px;
    font-size:14px;
    font-weight:600;
    color:#555;
}

footer p{
    margin-bottom:5px;
    font-size:14px;
    color:#555;
}

.footer-copy{
    margin-bottom:15px;
    font-weight:600;
}

@media(max-width:768px){

    .footer-logo{
        max-width:280px;
    }

    .footer-social a{
        font-size:38px;
    }

}

/* DROPDOWN MODALIDADES */

.btn-dropdown-modalidade{
    background:none;
    border:none;
    color:var(--azul);
    font-size:1.8rem !important;
    font-weight:700 !important;
}

.btn-dropdown-modalidade:hover,
.btn-dropdown-modalidade:focus{
    color:var(--laranja);
    background:none;
    box-shadow:none;
}

.card-modalidade .dropdown-menu{
    width:100%;
    text-align:center;
    border:none;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.card-modalidade .dropdown-item{
    padding:12px;
    font-weight:600;
}

.card-modalidade .dropdown-item:hover{
    background:var(--laranja);
    color:#fff;
}

/* LINKS DOS CARDS */

.card-link{
    display:block;
    text-decoration:none !important;
    color:inherit !important;
}

.card-link:hover{
    text-decoration:none !important;
    color:inherit !important;
}

.card-link h3{
    text-decoration:none !important;
    color:var(--azul) !important;
}

.card-link,
.card-link *{
    text-decoration:none !important;
}

/* =========================
   NOTÍCIAS E EVENTOS
========================= */

.noticias-eventos{
    background:#f8f9fa;
}

.box-home{
    background:#fff;
    border-radius:15px;
    padding:25px;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    height:100%;
}

.box-home h2{
    color:#003b8f;
    font-weight:700;
    margin-bottom:20px;
}

.home-card img{
    width:100%;
    height:280px;
    object-fit:cover;
    border-radius:10px;
}

.home-card h3{
    margin-top:15px;
    font-size:1.3rem;
    color:#003b8f;
}

.home-card p{
    color:#555;
}

/* =========================
   PÁGINA NOTÍCIAS
========================= */

.pagina-topo{
    margin-top:120px;
    background:#003b8f;
    color:#fff;
    text-align:center;
    padding:80px 0;
}

.pagina-topo h1{
    font-size:3rem;
    font-weight:800;
}

.noticia-card{
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
    height:100%;
}

.noticia-card img{
    width:100%;
    height:240px;
    object-fit:cover;
}

.noticia-card h3{
    color:#003b8f;
    font-size:1.3rem;
    margin-bottom:15px;
}

.noticia-card p{
    color:#666;
    margin-bottom:20px;
}