/* ===================================================
RESET
=================================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;

    background:#fff;

    color:#222;

}

/* ===================================================
CONTAINER
=================================================== */

.container{

    width:100%;

    max-width:1280px;

    margin:auto;

    padding:0 60px;

}

/* ===================================================
HERO
=================================================== */

.hero{

    min-height:auto;

    background:url("imagens/background.png");

    background-size:cover;

    background-position:center;

    display:flex;

    align-items:center;

}

.hero .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

}

/* ===================================================
LADO ESQUERDO
=================================================== */

.hero-left{

    flex:1;

    max-width:560px;

}

.logo{

    width:260px;

    margin-bottom:25px;

}

.hero h1{

    font-size:62px;

    line-height:1;

    font-weight:800;

    margin-bottom:28px;

}

.hero h1 span{



    color:#ff6200;

}

.hero p{

    font-size:23px;

    color:#5b5b5b;

    line-height:1.9;

    margin-bottom:45px;

}

/* ===================================================
CTA CURSOS
=================================================== */

.cursos-cta{

    margin-top:-12px;
    margin-bottom:22px;

}

.cursos-cta h2{

    margin:0 0 6px;
    font-size:26px;
    line-height:1.2;
    font-weight:800;
    color:#202020;

}

.cursos-cta h2::after{

    content:"";
    display:inline-block;
    width:42px;
    height:4px;
    margin-left:10px;
    margin-bottom:4px;
    border-radius:999px;
    background:#ff6200;

}

.cursos-cta p{

    margin:0;
    font-size:16px;
    line-height:1.5;
    color:#666;

}

/* ===================================================
CARDS
=================================================== */

.cards{

    display:flex;

    gap:18px;

}

.card{

    width:180px;

    background:#fff;

    border-radius:18px;

    padding:32px 25px;

    box-shadow:

    0 18px 45px rgba(0,0,0,.08);

    transition:.35s;

    text-align:center;

}

.card:hover{

    transform:translateY(-8px);

}

.icon{
    font-size:34px;
    margin-bottom:15px;
}

.icon i{
    color:#ff6200;
}



.card span{

    display:block;

    font-size:15px;

    line-height:1.5;

    font-weight:600;

}

/* ===================================================
LADO DIREITO
=================================================== */

.hero-right{

    flex:1;

    display:flex;

    justify-content:flex-end;

    align-items:flex-end;

}

.hero-image{

    width:100%;

    max-width:760px;

    position:relative;

    right:-60px;

}

/* ===================================================
FORMULARIO
=================================================== */

.cadastro{
   padding:30px 0 90px;
    background:url("imagens/background.png");
    background-size:cover;
    background-position:center;
    position:relative;
}

.cadastro::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(255,255,255,.82);
}

.cadastro .container{
    position:relative;
    z-index:2;
}


.form-card{

    max-width:900px;

    margin:auto;

    background:#fff;

    border-radius:26px;

    padding:50px;

    box-shadow:

    0 25px 70px rgba(0,0,0,.08);

}

.form-card h2{

    font-size:40px;

    margin-bottom:10px;

}

.form-card h2 span{

    color:#ff6200;

}

.subtitulo{

    margin-bottom:40px;

    color:#666;

}

.form-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:25px;

}

.full{

    grid-column:1/-1;

}

.input-group{

    display:flex;

    flex-direction:column;

}

.input-group label{

    margin-bottom:8px;

    font-weight:600;

}

.input-group input,
.input-group select{

    height:58px;

    border:1px solid #ddd;

    border-radius:12px;

    padding:0 18px;

    font-size:16px;

    transition:.3s;

}

.input-group input:focus
.input-group select:focus{

    outline:none;

    border-color:#ff6200;

}

.lgpd{

    display:flex;

    gap:12px;

    margin-top:25px;

    align-items:flex-start;

    font-size:14px;

}

.btn{

    width:100%;

    margin-top:30px;

    height:64px;

    border:none;

    border-radius:14px;

    background:#ff6200;

    color:#fff;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

}

.btn:hover{

    background:#ea5600;

}
/* ===================================================
BOTÃO / LGPD
=================================================== */

.btn:hover{

    transform:translateY(-3px);

    box-shadow:0 18px 35px rgba(255,98,0,.35);

}

.form-card small{

    display:block;

    text-align:center;

    margin-top:18px;

    color:#666;

    font-size:14px;

}

/* ===================================================
BENEFÍCIOS
=================================================== */

.beneficios{

    padding:90px 0;

    background:#ffffff;

}

.beneficios h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

    font-weight:700;

}

.beneficios-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.beneficios-grid div{

    background:#fff;

    border-radius:22px;

    padding:40px 25px;

    text-align:center;

    box-shadow:0 15px 45px rgba(0,0,0,.08);

    transition:.35s;

}

.beneficios-grid div:hover{

    transform:translateY(-8px);

}

.beneficios-grid div{

    font-size:46px;

}

.beneficios-grid h3{

    margin-top:20px;

    font-size:20px;

    line-height:1.5;

}

/* ===================================================
RODAPÉ
=================================================== */

footer{

    margin-top:80px;

    background:linear-gradient(90deg,#ff6200,#ff7d00);

    color:#fff;

    padding:50px 0;

}

footer .container{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:40px;

}

.footer-logo{

    width:180px;

    filter:brightness(0) invert(1);

}

footer p{

    color:#fff;

    margin:0;

    font-size:18px;

}

/* ===================================================
ANIMAÇÕES
=================================================== */

.hero-left{

    animation:fadeLeft .9s ease;

}

.hero-right{

    animation:fadeRight .9s ease;

}

.form-card{

    animation:fadeUp .9s ease;

}

@keyframes fadeLeft{

    from{

        opacity:0;

        transform:translateX(-40px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

@keyframes fadeRight{

    from{

        opacity:0;

        transform:translateX(40px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

/* ===================================================
RESPONSIVO
=================================================== */

@media(max-width:1100px){

.hero .container{

    flex-direction:column;

    text-align:center;

    padding-top:70px;

}

.hero-left{

    max-width:100%;

}

.hero-right{

    justify-content:center;

}

.hero-image{

    max-width:520px;

    right:0;

}

.cards{

    justify-content:center;

    flex-wrap:wrap;

}

.form-grid{

    grid-template-columns:1fr;

}

.full{

    grid-column:auto;

}

.beneficios-grid{

    grid-template-columns:repeat(2,1fr);

}

footer .container{

    flex-direction:column;

    text-align:center;

}

}

@media(max-width:768px){

.container{

    padding:0 25px;

}

.logo{

    width:170px;

}

.hero{

    padding:60px 0;

}

.hero h1{

    font-size:54px;

}

.hero p{

    font-size:18px;

}

.cards{

    flex-direction:column;

    align-items:center;

}

.card{

    width:100%;

    max-width:320px;

}

.form-card{

    padding:30px;

}

.form-card h2{

    font-size:32px;

}

.beneficios h2{

    font-size:30px;

}

.beneficios-grid{

    grid-template-columns:1fr;

}

.hero-image{

    max-width:380px;

}

.btn{

    font-size:16px;

}

}


.sucesso-card{

    display:none;

    text-align:center;left

   padding:25px 30px;

    animation:fade .5s ease;

}

.sucesso-card .check{

    font-size:72px;

    color:#ff6200;

    margin-bottom:20px;

}

.sucesso-card h2{

    font-size:34px;

    margin-bottom:18px;

    color:#222;

}

.sucesso-card p{

    font-size:18px;

    color:#666;

    line-height:1.8;

}

@keyframes fade{

    from{

        opacity:0;
        transform:translateY(25px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}

.sucesso-card{
    display:none;
    text-align:center;
    padding:25px 30px;
    animation:fadeUp .5s ease;
}

.sucesso-card .check{
   width:75px;
height:75px;
margin:0 auto 20px;
    background:#22c55e;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow:0 15px 35px rgba(34,197,94,.35);
}

.sucesso-card .check i{
    color:#fff;
    font-size:34px;
}

.sucesso-card h2{
    color:#222;
    font-size:34px;
    margin-bottom:15px;
}

.sucesso-card p{
    color:#666;
    font-size:18px;
    line-height:1.7;
    margin:10px 0;
}

@keyframes fadeUp{
    from{
        opacity:0;
        transform:translateY(20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}
.hero{
    position: relative;
}


.hero h1{
    line-height: 1.05;
}

.hero .titulo-topo{
    font-size: 56px;
    font-weight: 900;
    color: #222;
}

.hero .titulo-destaque{
    font-size: 78px;
    font-weight: 900;
    color: #ff6200;
}
/* ===================================================
CATÁLOGO DE CURSOS
=================================================== */

.cards-cursos .card-cursos{
    width:170px;
    min-height:205px;
    padding:24px 18px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:flex-start;
    cursor:pointer;
    border:2px solid transparent;
}

.cards-cursos .card-cursos:hover{
    border-color:#ff6200;
    box-shadow:0 20px 45px rgba(0,0,0,.12);
}

.cards-cursos .card-cursos strong{
    display:block;
    font-size:16px;
    line-height:1.25;
    margin-bottom:8px;
}

.cards-cursos .card-cursos span{
    font-size:13px;
    line-height:1.45;
    color:#666;
    font-weight:500;
}

.cards-cursos .icon{
    margin-bottom:13px;
    font-size:32px;
}

.card-graduacao .icon i{color:#ff6200;}
.card-tecnico .icon i{color:#8b5cf6;}
.card-profissionalizante .icon i{color:#f5b800;}

.card-link{
    margin-top:auto;
    padding-top:16px;
    color:#ff6200;
    font-size:12px;
    font-weight:700;
}

.card-link i{
    margin-left:4px;
    transition:.2s;
}

.card-cursos:hover .card-link i{
    transform:translateX(4px);
}

.modal-cursos{
    position:fixed;
    inset:0;
    z-index:9999;
    display:none;
    align-items:center;
    justify-content:center;
    padding:25px;
}

.modal-cursos.aberto{
    display:flex;
}

.modal-overlay{
    position:absolute;
    inset:0;
    background:rgba(20,15,30,.62);
    backdrop-filter:blur(5px);
}

.modal-painel{
    position:relative;
    z-index:2;
    width:min(760px,100%);
    max-height:min(780px,90vh);
    overflow:hidden;
    background:#fff;
    border-radius:28px;
    padding:38px;
    box-shadow:0 30px 90px rgba(0,0,0,.28);
    display:flex;
    flex-direction:column;
}

.modal-fechar{
    position:absolute;
    top:18px;
    right:18px;
    width:42px;
    height:42px;
    border:0;
    border-radius:50%;
    background:#f4f4f4;
    color:#333;
    font-size:20px;
    cursor:pointer;
    transition:.2s;
}

.modal-fechar:hover{
    background:#ff6200;
    color:#fff;
}

.modal-kicker{
    display:inline-block;
    margin-bottom:8px;
    color:#ff6200;
    font-size:13px;
    font-weight:800;
    letter-spacing:.5px;
}

.modal-cabecalho h2{
    font-size:34px;
    line-height:1.15;
    margin-bottom:8px;
}

.modal-cabecalho p{
    color:#666;
    font-size:15px;
}

.modal-categorias{
    display:flex;
    gap:10px;
    margin:25px 0 18px;
    flex-wrap:wrap;
}

.modal-categoria{
    border:1px solid #ddd;
    background:#fff;
    color:#444;
    border-radius:999px;
    padding:11px 16px;
    font-family:inherit;
    font-size:14px;
    font-weight:700;
    cursor:pointer;
    transition:.2s;
}

.modal-categoria:hover,
.modal-categoria.ativo{
    border-color:#ff6200;
    background:#fff4ed;
    color:#ff6200;
}

.busca-cursos{
    display:flex;
    align-items:center;
    gap:12px;
    height:56px;
    border:1px solid #ddd;
    border-radius:14px;
    padding:0 18px;
    margin-bottom:18px;
    color:#999;
}

.busca-cursos:focus-within{
    border-color:#ff6200;
    box-shadow:0 0 0 3px rgba(255,98,0,.08);
}

.busca-cursos input{
    width:100%;
    border:0;
    outline:0;
    font-family:inherit;
    font-size:15px;
    color:#222;
}

.lista-cursos{
    overflow-y:auto;
    padding-right:5px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:10px;
}

.curso-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    min-height:54px;
    padding:13px 15px;
    border:1px solid #e8e8e8;
    border-radius:13px;
    background:#fff;
    color:#333;
    font-family:inherit;
    font-size:14px;
    font-weight:600;
    text-align:left;
    cursor:pointer;
    transition:.2s;
}

.curso-item:hover{
    border-color:#ff6200;
    background:#fff8f3;
    color:#ff6200;
    transform:translateY(-2px);
}

.curso-item i{
    flex-shrink:0;
    color:#ff6200;
}

.sem-cursos{
    grid-column:1/-1;
    text-align:center;
    color:#777;
    padding:30px 10px;
}

.catalogo-observacao{
    margin-top:16px;
    text-align:center;
    color:#888;
    font-size:12px;
}

body.modal-aberto{
    overflow:hidden;
}

/* Correção do foco dos inputs e select */
.input-group input:focus,
.input-group select:focus{
    outline:none;
    border-color:#ff6200;
}

@media(max-width:1100px){
    .cards-cursos .card-cursos{
        width:180px;
    }
}

@media(max-width:768px){
    .cards-cursos .card-cursos{
        width:100%;
        max-width:320px;
        min-height:0;
    }

    .modal-cursos{
        padding:12px;
    }

    .modal-painel{
        max-height:94vh;
        padding:28px 20px 22px;
        border-radius:22px;
    }

    .modal-cabecalho h2{
        font-size:27px;
        padding-right:35px;
    }

    .modal-categorias{
        gap:7px;
        margin-top:20px;
    }

    .modal-categoria{
        flex:1 1 auto;
        padding:10px 11px;
        font-size:12px;
    }

    .lista-cursos{
        grid-template-columns:1fr;
    }
}
