@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --cor1: #FFE6E6;
    --cor2: #C07782;
  }

* {
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-decoration: none;
    font-family: "Plus Jakarta Sans", sans-serif;
}

span {
    background-color: var(--cor1);
    color: var(--cor2);
    padding: 0 4px 0 4px;
    border-radius: 10px;
}

/* HEADER */

header, nav ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header {
    height: 20vh;
    background-color: var(--cor1);
    position: fixed;
    width: 100%;
    z-index: 1;
}

header a {
    color: var(--cor2);
    padding: 4px;
    transition: .2s;
}

header a:hover {
    box-shadow: 0px 2px 0px var(--cor2);
}

nav ul {
    gap: 40px;
}


/* MEIO */

.sec1 {
    padding-top: 20vh;
    height: 80vh;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: var(--cor2);
}

.sec1 h1 {
    font-size: 3rem;
    padding-bottom: 8px;
}

.sec1 h2, .sec1 h1, .sec1 p {
    color: var(--cor1);
}

.info1 {
    width: 500px;
}

.info1 p {
    margin-top: 20px;
    line-height: 150%;
}

.botoes {
    margin-top: 20px;
    display: flex;
    gap: 20px;
}

.btn {
    border: 1px solid var(--cor1);
    padding: 10px 8px;
    border-radius: 10px;
    color: var(--cor1);
    transition: .2s;
}

.btn:hover {
    background-color: var(--cor1);
    color: var(--cor2);
}

.sec2 {
    background-color: var(--cor1);
    color: var(--cor2);
    padding: 100px 0 100px 0;
    
}

.sec2 h1 {
    margin-left: 200px;
}

.itens {
    display: flex;
    gap: 80px;
    justify-content: center;
    align-items: center;
    padding: 100px 200px;
}

.item-sec2 img{
    float: left;
    margin-right: 20px;
    border-radius: 10px;
}

.item-sec2 {
    text-align: justify;
    line-height: 150%; 
    width: 50%;
}

.info-sec2 {
    display: flex;
    flex-direction: column;
    gap: 10px;
}



/* FOOTER */

footer {
    height: 10vh;
    text-align: center;
    background-color: var(--cor2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--cor1);
}

footer a  {
    color: var(--cor1);
    text-decoration: underline;
}

@media only screen and (max-width: 1200px){
    .itens {
        display: flex;
        flex-wrap: wrap;
        padding: 100px 100px;
    }
    .item-sec2 {
        width: 100%;
    }
}

@media only screen and (max-width: 1000px){
    .sec1 {
        flex-wrap: wrap;
        padding-top: 30vh;
        text-align: center;
    }
    .botoes{
       margin: 20px 0;
       justify-content: center;
       align-items: center;
    }
    .sec2 h1 {
        margin-top: 50px;
        margin-left: 0;
        text-align: center;
    }
}


@media only screen and (max-width: 570px){
    .sec1 h1 {
        font-size: 2.8rem;
        word-wrap:inherit;
        margin: 10px 0;
    }
    .sec1 img {
        width: 80%;
    }
    .itens {
        
        padding: 100px 100px;
    }
    .item-sec2 {
        clear: both;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .item-sec2 img{
        margin-right: 0;
        margin-bottom: 20px;
        width: 100%;
    }
    nav ul {
        gap: 10px;
    }
    .info1 {
        margin: 20px;
    }

    .info1 h1 {
        padding: 0 50px;
        padding-bottom: 10px;
    }

    .sec1 {
        padding-top: 20vh;
    }
    
    .sec1 h1 {
        font-size: 2.8rem;
        word-wrap:inherit;
        margin: 10px 0;
    }

    .sec2 h1 {
        margin-top: 100px;
    }

}

@media only screen and (max-width: 436px){
    
    .itens {
        padding: 100px 50px;
    }
    .logo {
        margin-top: 5px;
        height: 80%;
        margin-left: -10px;
    }
    header {
        height: 12vh;
    }

    .info1 {
        margin: 20px;
    }

    .info1 h1 {
        padding: 0 50px;
        padding-bottom: 10px;
    }

    .sec1 {
        padding-top: 12vh;
    }
    .sec1 h1 {
        font-size: 2.3rem;
        word-wrap:inherit;
        margin: 10px 0;
    }


    .sec2 {
        margin-bottom: -70px;
    }
}