*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    font-family: 'Ubuntu', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

a{
    text-decoration: none;
}

a:visited{
    text-decoration: none; 
}

.container{
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

header {
    width: 100vw;
    height: 117px;
    background-color: #2E948A;
    box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.25);
}

header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1255px;
    margin: 0 auto;
}

header .nav-container nav a {
    text-transform: uppercase;
    color: #FDFDFD;
    font-size: 20px;
    font-weight: 700;
    margin: 15px;
    text-decoration: none;
}

header .nav-container nav a:hover {
    transition: all 0.3s ease;
    color: #c4c4c4
}

.conteudo1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1028px;
    margin: 125px auto 66px auto;
}

.conteudo1 h1 {
    color: #2E948A;
    font-weight: 700;
    font-size: 47px;
    line-height: 54px;
    Width: 512px
}

.conteudo1 p {
    font-weight: 300;
    font-size: 20px;
    line-height: 22.98px;
    Width: 461px
}

.texto {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

main {
    background-color: #e5e5e5;
}

.pai {
    display: flex;
    justify-content: center;
    gap: 122px;
    margin-bottom: 170px;
}

.titulo {
    color: #FF4081;
    font-weight: 500;
    font-size: 30px;
    line-height: 34.47px;
    Width: 455px
}

.descricao {
    color: #000;
    font-weight: 300;
    font-size: 17px;
    line-height: 19.53px;
    Width: 516px
}

.coluna1 {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.coluna2 {
    display: flex;
    flex-direction: column;
    gap: 19px;
}

.pai img {
    margin-top: 100px;
}

footer {
    width: 100vw;
    background-color: #419488;
}

footer .container{
    margin: 30px auto;
    max-width: 1255px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    }

footer .container .footer-links{
        display: flex;
        flex-direction: column;
}

footer .container .footer-links a{
    font-size: 20px;
    padding: 5px;
    font-family: 'Ubuntu';
    color: #fff;
    text-decoration: none;
}
    


footer .container .footer-btn{
    display: flex;
    flex-direction: column;
}



footer .container .footer-btn button{
    background-color: #419488;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 62px;
    padding: 14px;
    margin: 13px;
    width: 289px;
    font-size: 20px;
    cursor: pointer;
}

@media (max-width:850px){
    footer .container img{
    width: 200px;
    }
    footer .container .footer-btn button{
    font-size: 14px;
    width: 180px;
    }
}

@media only screen and (max-width: 768px) {
    
    header .nav-container {
        text-align: center;
    }

    .conteudo1 h1 {
        font-size: 100%;
        width: 200%;
        margin-left: 30px;
    }

    .conteudo1 p {
        text-align: left;
        width: 70%;
        margin-left: 30px;
    }

    .pai {
        margin-left: 20px;
        margin-right: 20px;
        gap: 10px;
    }

    .conteudo2 p {
        text-align: center;
        width: 100%;
    }

    .conteudo2-2 p {
        text-align: center;
        width: 100%;
    }

    footer .footer-links {
        text-align: center;
        width: 100%;
    }

    footer .footer-btn {
        width: 110vh;
        align-items: center;
    }
}

@media (max-width:680px){
header{
        height: 150px;
}
header .nav-container{
        flex-direction: column;
        justify-content: space-evenly;
}
header .nav-container nav a{
        font-size: 14px;
}
}

@media (max-width:580px){
    footer .container{
    flex-direction: column;
    }
    footer .container .footer-links{
    justify-content: center;
    flex-direction: row;
    margin: 15px auto;
    }
    footer .container .footer-btn button{
    margin: 4px;
    width: 260px;
    }
}

@media only screen and (max-width: 480px) {
    
    header .nav-container {
        text-align: center;
    }

    .conteudo1 h1 {
        margin-right: 300px;
        font-size: 100%;
    }

    .conteudo1 p {
        text-align: center;
        width: 70%;
        margin-left: 40px;
    }
}

