/* =====================================
   RESET
===================================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}


body{

    font-family:Arial, Helvetica, sans-serif;

    background:#f4f7fb;

    color:#333;

    line-height:1.6;

}



.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}





/* =====================================
   CABEÇALHO
===================================== */


header{

    background:#063970;

    height:80px;

    display:flex;

    align-items:center;

}



header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

}



.logo{

    height:55px;

    width:auto;

}



nav a{

    color:white;

    text-decoration:none;

    margin-left:20px;

    font-size:16px;

    transition:.3s;

}



nav a:hover{

    opacity:.8;

}







/* =====================================
   TÍTULO
===================================== */


.titulo{

    background:white;

    padding:55px 0;

    text-align:center;

}



.titulo h1{

    color:#063970;

    font-size:38px;

    margin-bottom:15px;

}



.titulo p{

    max-width:850px;

    margin:auto;

    font-size:18px;

    color:#555;

}







/* =====================================
   CONTEÚDO
===================================== */


.conteudo{

    padding:60px 0;

}



.bloco{

    background:white;

    padding:40px;

    border-radius:15px;

    margin-bottom:40px;

}



.bloco h2{

    color:#063970;

    font-size:30px;

    margin-bottom:20px;

}



.bloco p{

    margin-bottom:15px;

}







/* =====================================
   BENEFÍCIOS
===================================== */


.beneficios{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.card{

    background:white;

    padding:30px 20px;

    border-radius:12px;

    text-align:center;

    font-size:32px;

    box-shadow:0 5px 15px rgba(0,0,0,.08);

    transition:.3s;

}



.card:hover{

    transform:translateY(-5px);

}



.card h3{

    color:#063970;

    font-size:18px;

    margin:15px 0;

}



.card p{

    color:#555;

    font-size:15px;

}







/* =====================================
   FUNCIONAMENTO
===================================== */


.funciona{

    background:white;

    padding:60px 0;

    text-align:center;

}



.funciona h2{

    color:#063970;

    font-size:32px;

    margin-bottom:40px;

}



.passos{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.passos div{

    background:#f4f7fb;

    padding:30px;

    border-radius:12px;

}



.passos strong{

    display:flex;

    width:50px;

    height:50px;

    background:#063970;

    color:white;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:24px;

    margin:0 auto 15px;

}







/* =====================================
   RECURSOS
===================================== */


.recursos{

    padding:60px 0;

}



.recursos h2{

    text-align:center;

    color:#063970;

    font-size:32px;

    margin-bottom:40px;

}



.cards{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:25px;

}



.cards div{

    background:white;

    padding:30px;

    border-radius:12px;

    text-align:center;

    font-size:35px;

    transition:.3s;

}



.cards div:hover{

    transform:translateY(-5px);

}



.cards h3{

    font-size:18px;

    color:#063970;

    margin-top:15px;

}







/* =====================================
   VANTAGENS
===================================== */


.vantagens{

    background:white;

    padding:60px 0;

    text-align:center;

}



.vantagens h2{

    color:#063970;

    font-size:32px;

    margin-bottom:20px;

}



.vantagens p{

    max-width:850px;

    margin:auto;

    font-size:18px;

}



.vantagens ul{

    list-style:none;

    margin-top:30px;

}



.vantagens li{

    display:inline-block;

    background:#063970;

    color:white;

    padding:12px 20px;

    border-radius:25px;

    margin:8px;

}







/* =====================================
   BOTÕES
===================================== */


.botao{

    display:inline-block;

    background:white;

    color:#063970;

    text-decoration:none;

    padding:14px 32px;

    border-radius:30px;

    font-weight:bold;

    margin:8px;

    transition:.3s;

}



.botao:hover{

    transform:scale(1.05);

}







/* =====================================
   CTA
===================================== */


.cta{

    background:#063970;

    color:white;

    text-align:center;

    padding:60px 0;

}



.cta h2{

    font-size:32px;

    margin-bottom:15px;

}



.cta p{

    margin-bottom:25px;

}



.cta .secundario{

    background:transparent;

    border:2px solid white;

    color:white;

}







/* =====================================
   RODAPÉ
===================================== */


footer{

    background:#02254d;

    color:white;

    text-align:center;

    padding:20px;

}







/* =====================================
   RESPONSIVO
===================================== */


@media(max-width:950px){


    header{

        height:auto;

        padding:15px 0;

    }



    header .container{

        flex-direction:column;

        gap:15px;

    }



    nav a{

        margin:0 8px;

        font-size:14px;

    }



    .beneficios,
    .passos,
    .cards{

        grid-template-columns:repeat(2,1fr);

    }


}




@media(max-width:600px){


    .titulo h1{

        font-size:30px;

    }



    .beneficios,
    .passos,
    .cards{

        grid-template-columns:1fr;

    }



    .bloco{

        padding:25px;

    }



    .botao{

        width:90%;

    }


}