*{
    margin: 0;
    padding: 0;
}

.burguer{
    display: none;
}

h2{
    font-size: 3.5vh;
    color: black;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

p{
    font-size: 2vh;
    color: #4A4A4A;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.nav-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;

    background-color: #3247A2;
}

.nav-links{
    display: flex;
    gap: 30px;
}

.nav-links a{
    text-decoration: none;
    color: white;

    font-family: "Poppins", sans-serif;
    font-weight: 500;

      transition: 0.5s;
}

.nav-links a:hover{
    color: #D02329;
    text-decoration: underline 3px #F6E324;
}

.sub-nav{
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-nav img{
    height: 6vh;
}

.sub-nav h3{
    font-size: 2.5vh;
    color: #3247A2;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.main-1{
    display: flex;
    flex-direction: column;
    place-self: center;
    gap: 50px;
    margin: 60px 0px;
}

.text-main-1{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-main-1 strong{
    color: #D02329;
    font-weight: 700;
    text-decoration: underline 3px #F6E324;
}

.text-main-1 hr{
    height: 3px;
    background-color: #F6E324;
    border: 0;
}

.main-2{
    display: flex;
    place-self: center;
    gap: 23vh;
}

.text-main-2{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.text-main-2 .text{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-main-2 .text h2{
    text-decoration: underline 3px #F6E324;
}

.main-3{
    display: flex;
    place-self: center;
    gap: 20px;
    margin: 60px 0px;
}

.main-3 .card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 30px;

    width: 300px;
    height: 250px;

    background-color: #3247A2;
    border-radius: 2px;

    transition: 0.5s;
}

.main-3 .card h3{
    font-size: 3vh;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: white;
}

.main-3 .card p{
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: white;
}

.main-3 .card:hover{
    scale: 1.05;

    color: #D02329;

    background-color: #F6E324;
    border-radius: 2px;
}

.main-3 .card:hover h3{
    text-decoration: underline 3px #3247A2;
    color: #D02329;
}

.main-3 .card:hover p{
    color: #D02329;
}

.footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #3247A2;
    padding: 50px;
    gap: 30px;
}

.footer h2{
    font-size: 2vh;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.footer hr{
    height: 1px;
    width: 900px;
    background-color: white;
}

.footer .colunas{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 150px;
}

.footer .coluna{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .coluna p{
    font-size: 2vh;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.footer .coluna h3{
    font-size: 2.5vh;
    color: #F6E324;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.footer .coluna a{
    font-size: 2vh;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-decoration: none;
}

.footer .coluna .link-social{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

.footer .coluna .link-social a{
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    color: #D02329;
    background-color: #F6E324;
    border-radius: 3px;
    font-weight: 600;
}

@media screen and (width < 560px){
.burguer{
    display: block;
    flex-direction: column;
}

.burguer img{
    display: flex;
    width: 4vh;
}

#listmob{
    position: absolute;
    top: 80px;
    right: 0px;
    height: 250px;
    width: 100%;


    display: none;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;;
    padding: 10px;
    

    background-color: #3247A2;
    transition: 1s;
}

#listmob a{
    font-family: "Poppins", serif;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;  
}

#listmob a:hover{
    border-radius: 20px;
    text-decoration: underline 2px #D02329;
    color: #F6E324;
}
    
h2{
    font-size: 3.5vh;
    color: black;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

p{
    font-size: 2vh;
    color: #4A4A4A;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
}

.nav-bar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;

    background-color: #3247A2;
}

.nav-links{
    display: none;
    gap: 30px;
}

.nav-links a{
    text-decoration: none;
    color: white;

    font-family: "Poppins", sans-serif;
    font-weight: 500;

    transition: 0.5s;
}

.nav-links a:hover{
    color: #D02329;
    text-decoration: underline 3px #F6E324;
}

.sub-nav{
    display: flex;
    align-items: center;
    gap: 10px;
}

.sub-nav img{
    height: 6vh;
}

.sub-nav h3{
    font-size: 2.5vh;
    color: #3247A2;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
}

.main-1{
    display: flex;
    flex-direction: column;
    place-self: center;
    gap: 50px;
    margin: 60px 20px;
}

.text-main-1{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-main-1 strong{
    color: #D02329;
    font-weight: 700;
    text-decoration: underline 3px #F6E324;
}

.text-main-1 hr{
    height: 3px;
    background-color: #F6E324;
    border: 0;
}

.main-1 br{
    display: none;
}

.main-2{
    display: flex;
    flex-direction: column;
    place-self: center;
    gap: 30px;
    margin: 5px 20px;
}

.text-main-2{
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.text-main-2 .text{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.text-main-2 .text h2{
    text-decoration: underline 3px #F6E324;
}

.main-2 img{
    display: flex;
    height: 30vh;
}

.main-3{
    display: flex;
    flex-direction: column;
    place-self: center;
    gap: 20px;
    margin: 60px 20px;
}

.main-3 .card{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    padding: 30px;

    width: 250px;
    height: 250px;

    background-color: #3247A2;
    border-radius: 2px;

    transition: 0.5s;
}

.main-3 .card h3{
    font-size: 3vh;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: white;
}

.main-3 .card p{
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: white;
}

.main-3 .card:hover{
    scale: 1.05;

    color: #D02329;

    background-color: #F6E324;
    border-radius: 2px;
}

.main-3 .card:hover h3{
    text-decoration: underline 3px #3247A2;
    color: #D02329;
}

.main-3 .card:hover p{
    color: #D02329;
}

.main-3 .card br{
    display: none;
}

.footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #3247A2;
    padding: 50px;
    gap: 30px;
}

.footer h2{
    font-size: 1.2vh;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.footer hr{
    height: 1px;
    width: 300px;
    background-color: white;
}

.footer .colunas{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    gap: 30px;

}

.footer .coluna{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .coluna p{
    font-size: 2vh;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.footer .coluna h3{
    font-size: 2.5vh;
    color: #F6E324;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.footer .coluna a{
    font-size: 2vh;
    color: white;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    text-decoration: none;
}

.footer .coluna .link-social{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 10px;
}

.footer .coluna .link-social a{
    display: flex;
    gap: 20px;
    padding: 10px 20px;
    color: #D02329;
    background-color: #F6E324;
    border-radius: 3px;
    font-weight: 600;
}
}