@charset "UTF-8";

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: "Oswald", serif;
    font-weight: 300;
    line-height: 1.25;
}

strong{
    font-weight: 800;
}


header{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 50px 64px 10px;
    background-color: #011E46;
}
header img{
    width: 69px;
}
header a{
    font-size: 20px;
    background-color: white;
    border-radius: 5px;
    padding: 10px 20px;
    color: black;
    text-decoration: none;
}
header a:hover{
    
    background-color: #002e6efd;
    color: white;

}


main .hero{
    display: flex;
    padding: 64px;
    flex-direction: row;
    align-items: top;
    justify-content: space-between;
    margin: auto;
    margin-top: -2px;
    background: linear-gradient(to bottom, #001E46 20%, #0049AC 100%);
    border-radius: 0px 0px 20px 20px;
}
main .hero .hero-text{
    margin-top: 70px;
    width: 50%;
    color: white;
}
main .hero .hero-text h1{
    font-size: 65px;
}
main .hero .hero-text span{
    display: block;
    font-weight: 800;
}
main .hero .hero-text p{
    font-size: 26px;
    margin-top: 24px;
    max-width: 600px;
}
main .hero .hero-img{
    width: 50%;
    position: relative;

}
main .hero .hero-img img{
    display: block;
    margin: auto;
}
main .hero .hero-img .img2{
    position: absolute;
    bottom: 10px;
    right: 50px;
    width: 250px;
}


main .cta{
    position: relative;
    padding-top: 160px;
}
main .cta img{
    position: absolute;
    left: 50%;
    transform: translate(-50%);
    top: -160px;
}
main .cta h1{
    font-size: 50px;
    text-align: center;
}
main .cta h1 span{
    display: block;
    font-weight: 800;
}
main .cta .cta-link-div{
    display: block;
    text-align: center;
    margin: 50px auto;
   
}
main .cta .cta-link-div a{
    background: linear-gradient(to right, #0049AC 0%, #001E46 100%);
    font-size: 25px;
    padding: 20px 30px;
    font-weight: 600;
    color: white;
    border-radius: 60px;
    text-decoration: none;
}

main .cta .cta-link-div a:hover{
   background: white;
   border: 4px solid #001E46;
   color: #001E46;
}

main .produtos{
    margin: 100px auto;
}

main .produtos h1{
    font-weight: 800;
    font-size: 48px;
    padding: 0 64px;
}

main .produtos p{
    padding: 0 64px 64px;
    font-size: 30px;
}



main .produtos .produtos-carrossel{
    overflow-x: auto;
    overflow-y: hidden;
}



main .produtos .produtos-carrossel::-webkit-scrollbar {

    height: 8px;
}

  
  /*thumb*/
main .produtos .produtos-carrossel::-webkit-scrollbar-thumb {
    background:rgb(1, 30, 70);
 
    border-radius:50px;
}

main .produtos .produtos-carrossel .carrossel-wrapper{
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
    
}

main .produtos .produtos-carrossel .carrossel-wrapper .slides{
    min-width: 416px;
    height: 416px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    margin-left: 20px;
}
main .produtos .produtos-carrossel .carrossel-wrapper:first-child{
    margin-left: 44px;
}
/* main .produtos .produtos-carrossel .carrossel-wrapper .slides:last-child{
    margin-right: 20px;
} */

main .produtos .produtos-carrossel .carrossel-wrapper .slides img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}   

footer{
    display: flex;
    flex-direction: column;
    padding: 64px;
}
footer .first-itens{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}
footer .first-itens .social-links a:last-child{
    margin-right: 0;
}

footer .first-itens .social-links a{
    margin: 12px;
}

footer hr{
    margin: 64px 0 30px;
}

footer .second-itens {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

footer .second-itens h2{
    font-size: 18px;

    margin: 20px;
}

@media (max-width: 1000px){
    main .hero{
        flex-direction: column;
    }

    main .hero .hero-text{
        width: 100%;
    }

    main .hero .hero-img {
        width: 100%;
    }
    main .hero .hero-img img{
        margin-bottom: 50px;
    }
    main .hero .hero-img .img2{
        
        bottom: 15px;
        left: 50%;
        width: 190px;
    }
}
@media (max-width: 679px){
    main .cta h1{
       font-size: 43px;
    }

    footer .second-itens {
        flex-direction: column;
        text-align: center;
    }   
    footer .second-itens h2 {
        margin: 7px;
    }  
    
}

@media (max-width: 550px){
    main .hero .hero-img img{
        width: 90%;
    }

    main .cta img{
        width: 90%;
    }
    main .cta h1{
        margin-top: 20px;
        font-size: 30px;
    }
    main .produtos h1 {
        font-size: 35px;
    }
    main .produtos p {
        font-size: 25px;   
    }
    main .produtos .produtos-carrossel .carrossel-wrapper:first-child{
        margin-left: 0px;
    }
    
}

@media (max-width: 440px){

    header{
        padding: 50px 30px 10px;
    }
    header a{
        font-size: 16px;
    }

    main .hero {
        padding: 30px;
    }

    main .hero .hero-img {
        margin-bottom: 50px;
    }
    main .hero .hero-text h1 {
        font-size: 36px;
       
    }
    main .hero .hero-text p {
        font-size: 18px;
        margin-bottom: 30px;
    }
    
    main .produtos .produtos-carrossel .carrossel-wrapper .slides{
        min-width: 350px;
        height: 350px;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        margin-left: 20px;
    }
    main .cta h1 {

        font-size: 27px;
    }

    footer{
        display: flex;
        flex-direction: column;
        padding: 30px;
    }
    
}


@media (max-width: 391px){
    main .produtos h1, main .produtos p{
        padding-left: 30px;
        padding-right: 30px;

}
    main .produtos .produtos-carrossel .carrossel-wrapper .slides{
        min-width: 330px;
        height: 330px;
        border: 1px solid rgba(0, 0, 0, 0.2);
        border-radius: 10px;
        margin-left: 15px;
    }
    main .cta h1 {

        font-size: 27px;
    }

 
}

