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

.hero {
    background-color: #3D0000;
    width: 100%;
    height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: start;
    color: #fff;
}
.hero div {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: start;
    text-align: center;
}

.hero p {
    font-size: 1.7em;
    text-align: start;
    margin-bottom: 5px;
}

.hero h1 {
    text-transform: uppercase;
    font-size: 7.9em;
    line-height: 5.8rem;
}

/* Container Vinho */

.container-wine {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    height: 800px;
    width: 100%;
    padding: 50px 20px;
    background-color: #3D0000;
    color: #fff;
}

.container-wine img {
    height: 600px;
    width: 400px;
    object-fit: cover;
    object-position: bottom;
}

.container-wine .text-wine {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
    width: 40%;
    gap: 20px;
}

.container-wine .text-wine h2 {
    text-align: left;
    text-transform: uppercase;
    font-size: 2.5em;
    color: #DBB579;
}

.container-wine .text-wine .list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
    width: 100%;
    gap: 10px;
}

.container-wine .text-wine .list .item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
}

.item-50 {
    width: 45%;
}

.item-1 {
    width: 100%;
}

.item i {
    color: #3D0000;
    background-color: #DBB579;
    padding: 5px;
    border-radius: 50%;
}

.container-wine .text-wine p {
    text-align: left;
    font-size: 1em;
}

/* Container Yellow */

.container-yellow {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-evenly;
    align-items: center;
    text-align: center;
    height: 800px;
    width: 100%;
    padding: 50px 20px;
    background-color: #dbb67958;
    color: #3D0000;
}

.container-yellow img {
    height: 600px;
    width: 400px;
    object-fit: cover;
    object-position: bottom;
}

.container-yellow .text-yellow {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: center;
    width: 40%;
    gap: 20px;
}

.container-yellow .text-yellow h2 {
    text-align: left;
    text-transform: uppercase;
    font-size: 2.5em;
    color: #3D0000;
}

.container-yellow .text-yellow .list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    text-align: left;
    width: 100%;
    gap: 10px;
}

.container-yellow .text-yellow .list .item {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    gap: 10px;
}

.container-yellow .text-yellow p {
    text-align: left;
    font-size: 1em;
}


/* Responsivo */

@media only screen and (max-width: 1200px) {
    .hero {
        height: 200px;
    }
    .hero h1 {
        font-size: 3.9em;
        line-height: 3.8rem;
    }
    .hero p {
        font-size: 1.2em;
        margin-bottom: 0;
    }

    .container-wine {
        flex-direction: column;
        height: auto;
        padding: 0;
    }

    .container-wine img {
        height: 500px;
        width: 100%;
    }

    .container-wine .text-wine {
        padding: 40px 0;
        width: 80%;
        gap: 10px;
    }

    .container-wine .text-wine h2 {
        font-size: 2.5em;
    }

    .container-wine .text-wine p {
        font-size: 1em;
    }

    .container-yellow {
        flex-direction: column;
        height: auto;
        padding: 0;
    }

    .container-yellow img {
        height: 500px;
        width: 100%;
    }

    .container-yellow .text-yellow {
        padding: 40px 0;
        width: 80%;
        gap: 10px;
    }

    .container-yellow .text-yellow h2 {
        font-size: 2.5em;
    }

    .container-yellow .text-yellow p {
        font-size: 1em;
    }
}