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

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: 90%;
    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
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.parte1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    width: 100%;
    max-width: 1030px;
    margin: 125px auto 66px auto;
}

.container {
    margin-top: 64px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
}

.container h1 {
    color: #ff4081;
    font-weight: 500;
    font-size: 50px;
    line-height: 57.45px;
    height: 100%;
    width: 100%;
    Width: 758px
    
}

.container h4 {
    color: #9d9d9d;
    font-weight: 300;
    font-size: 18px;
    line-height: 20.68px;
    width: 200px;
}

.container img {
    margin-top: 107px;
}

.container h2 {
    color: #419488;
    width: 100%;
}

.parte2 {
    background-color: #f7f7f7;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    align-items: center;
    max-width: 100vw;
    height: 100%;
    width: 100%;
    margin: 25px auto 0px auto;
    padding-bottom: 100px;
}

.parte2 h1 {
    display: flex;
    justify-content: center;
    color: #ff4081;
    font-weight: 500;
    font-size: 50px;
    line-height: 57.45px;
    width: 800px;
    padding: 50px;
}

.colunas {
    display: flex;
    justify-content: space-evenly;
    text-align: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.colunas h3 {
    color: #ff4081;
    font-weight: 700;
    font-size: 25px;
    line-height: 28.73px;
    width: 344px;
    margin-top: 52.1px;
    margin-bottom: 28.32px;
}

.colunas img {
    width: 288px;
    height: 279.06px;
}

.colunas p {
    margin-left: 20px;
    font-weight: 300;
    font-size: 17px;
    line-height: 19.53px;
    width: 293px;
    margin-bottom: 28.32px;
}

.colunas .figura1 button {
    margin-right: 20px;
}

.colunas button {
    background-color: #ff4081;
    color: #fff;
    border-radius: 62px;
    padding: 15px 9px;
    border: none;
    width: 233px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.colunas button:hover {
    background-color: #ca255c;
    color: #fff;
}

footer {
    display: flex;
    justify-content: center;
    width: 100vw;
    background-color: #419488;
}

footer .containerb {
    height: 207px;
    width: 90%;
    max-width: 1255px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

footer .containerb .botao {
    display: flex;
    flex-direction: column;
}

footer .containerb .botao button {
    background-color: #419488;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 62px;
    padding: 14px;
    margin: 13px;
    width: 289px;
    font-size: 20px;
    transition: all 0.3s ease;
    cursor: pointer;

}

footer .containerb .botao button:hover {
    background-color: #1b675c;
    color: #fff
}

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

    .conteudo1 h1 {
        font-size: 100%;
        text-align: left;
        width: 100%;
    }

    .conteudo1 p {
        text-align: left;
        width: 100%;
    }

    .pai {
        gap: 10px;
    }

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

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

    footer .links {
        width: 100%;
    }

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




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

    .container {
        padding: 20px;
        font-size: 100%;
        text-align: center;
        width: 100%;
    }

    .container img {
        padding-left: 150px;
        padding-right: 150px;
    }

    .container h1 {
        font-size: 100%;
        text-align: center;
        width: 100%;
    }

    .parte2 h1 {
        font-size: 100%;
        text-align: center;
        width: 100%;
    }

    .colunas {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

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

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

@media only screen and (max-width: 468px) {

    .container img {
        padding-left: 350px;
        padding-right: 350px;
    }
}

