/*Fontes */
@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Luckiest+Guy&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Calistoga&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Luckiest+Guy&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/* Geral */
* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}
body {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}
h2 {
    font-weight: 800;
    color: #23272A;
}

/*Header*/

#banner-area {
    background-color: #c200fd;
    background-image: url(../images/header-banner.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 505px;
    display: flex;
    align-items: center;
}
.banner-text {
    display: flex;
    flex-direction: column;
    padding: 24px;
}
.banner-text h1 {
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 20px;
}
.banner-text p {
    font-size: 17px;
    color: #ffffff;
}
.buttons-header {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}
.button1, .button2 {
    font-family: "Raleway", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-size: 18px;
    width: 100%;
    padding: 18px 16px;
    border-radius: 35px;
    margin-bottom: 20px;
    border: none;
    cursor: pointer;
}
.button2 {
    background-color: #23272a;
    color: #ffffff;
}

/* main */
/* Section */
.section {
    width: 100%;
    height: 505px;
    display: flex;
    align-items: center;
}
.section2 {
    width: 100%;
    height: 505px;
    display: flex;
    align-items: center;
}
.section-area {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
}
.section1-image img {
    text-align: center;
    width: 100%;
    margin-bottom: 20px;
}
.section1-text p {
    font-weight: 400;
    margin-top: 20px;
    font-size: 17px;
}

/* Section #f6f6f6 */
.section-area2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    background-color: #f6f6f6;
}
.section1-text h1 {
    font-family: "Luckiest Guy", cursive;
    font-weight: 400;
    font-style: normal;
    font-size: 29px;
    color: #23272A;
    margin-bottom: 20px;
}
.section-area3 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    background-color: #f6f6f6;
}

/* footer */
footer {
    background-color: #23272a;
    width: 100%;
    height: 140px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* media */

@media (min-width: 600px) {
    h2, h1 {
        text-align: center;
    }
    #banner-area {
        width: 100%;
        margin: auto;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
    .buttons-header {
        align-items: center;
        justify-content: center;
        text-align: center;
        margin-top: 20px;
    }
    .button1, .button2 {
        width: 400px;
    }
}

@media (min-width: 900px) {
    .banner-text {
        width: 100%;
        max-width: 65%;
    }
    .banner-text h1 {
        font-size: 56px;
    }
    .banner-text p {
        font-size: 17px;
    }
    .buttons-header {
        display: flex;
        flex-direction: row;
        margin-top: 40px;
    }
    .button1 {
        margin-right: 20px;
    }
    /* sections */
    .section-area {
        width: 100%;
        max-width: 65%;
        margin: auto;
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding: 24px;
    }

    #section2 {
        display: flex;
        background-color: #f6f6f6;
        width: 100%;
    }
    .section-area2 {
        width: 100%;
        max-width: 65%;
        margin: auto;
        flex-direction: row-reverse;
    }
    .section1-image {
        flex: 1.9;
        margin-top: 10px;
    }
    .section1-text {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .section1-text h2 {
        font-size: 38px;
        text-align: start;
    }  
    .section-area3 {
        width: 100%;
        max-width: 65%;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .section1-text h1 {
        font-size: 35px;
        text-align: center;
        margin-top: 20px;
    }
}
@media (min-width: 2000px) {
    body {
        width: 100%;
        max-width: 1900px;
        margin: auto;
    }
}