* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
}

/* HEADER */

header {
    position: relative;
    width: 100%;
    height: 459px; 

    display: flex;
    justify-content: center;
}

.banner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(img/header.png);
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.container-text {
   display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    color: white;
}

.container-text h1 {
    width: 313px;
    text-align: center;
    font-family: "Luckiest Guy";
    font-size: 56px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.container-text p {
    width: 757px;
    color: #FFF;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.container-botao {
    display: flex;
    gap: 18px;
}

.botao1 {
    width: 205px;
    height: 44px;
    color: #23272A;
    background-color: white;
    border-radius: 28px;
    border: none;
    font-family: "Open Sans";
    font-size: 16px;
    cursor: pointer;
}

.botao2 {
    width: 281px;
    height: 44px;
    color: #FFF;
    background: #23272A;
    border-radius: 28px;
    border: none;
    font-family: "Open Sans";
    font-size: 16px;
    cursor: pointer;
}

/* MAIN */

main {
    width: 100%;
    height: 100%;
}

.container-01 {
    width: 100%;
    height: 394px;
    margin:  20px auto;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
}

.container-img {
    display: flex;
    width: 607px;
    height: 394px;
}

.text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
}

aside .text h1 {
    width: 329px;
    color: #23272A;
    font-family: "Open Sans";
    font-size: 35px;
    font-weight: 800;
}

aside .text p {
    width: 348px;
    color: #23272A;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
}

.container-02 {
    width: 100%;
    height: 448px;
    margin:  20px auto;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background-color: #F6F6F6;;
}

.container-03 {
    width: 100%;
    padding: 40px 0px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    background-color: #F6F6F6;;
}

.text-02 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

aside .text-02 h1 {
    width: 608px;
    color: #23272A;
    font-family: "Luckiest Guy";
    text-align: center;
    font-size: 40px;
    font-weight: 400;
}

aside .text-02 p {
    width: 802px;
    color: #23272A;
    text-align: center;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 400;
}

.container-img-02 {
    display: flex;
    width: 784px;
    height: 508px;
}

/* FOOTER */

footer {
    height: 100px;
    padding: 35px 0px 36px 0px;
    background: #23272A;

    display: flex;
    justify-content: center;
    align-items: center;
}

footer img {
    width: 220px;
    height: 60px;
}





