:root {
    --bg-section-color: #fefdf0;
    --bg-section-color-2: #fed559;
    --primary-color-product: #872227;
}

.section-banner {
    position: relative;
    height: 37rem;
}

.banner {
    position: absolute;
    inset: 0;
}

.bg-image-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(77, 57, 40, 0.550);
}

.container-1024 {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    height: 100%;
    display: flex;
    align-items: center;
}

.section-banner-text {
    max-width: 768px;
    color: var(--white);
}

.section-banner-text h1 {
    color: var(--white);
}

.section-banner-text p {
    font-size: 1.25rem;
}

.section-banner-text {
    opacity: 0;
    transform: translateX(-100%);
    animation-name: enter-from-the-left;
    animation-duration: 1s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}

@keyframes enter-from-the-left {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.section-product-introduction {
    padding: 3rem 1rem;
    background-color: var(--bg-section-color-2);
}

.section-product-introduction-text h2 {
    color: var(--primary-color-product);
    max-width: 768px;
}

.section-product-introduction-text p {
    color: #1d1c1c;
    font-size: 1.125rem;
}

.section-product-introduction-btn a {
    display: inline-block;
    background-color: var(--primary-color-product);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
    text-align: center;
}

.section-product-introduction-btn a:hover {
    background-color: rgb(163, 37, 44);
}

.section-product-benefit {
    background-color: var(--bg-section-color);
    padding: 3rem 1rem;
}

.product-benefit-content {
    display: grid;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.product-benefit-content-items h3 {
    color: var(--primary-color-product);
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-benefit-content-items ul {
    display: grid;
    gap: .7rem;
}

.product-benefit-content-items ul li {
    display: flex;
    gap: .5rem;
    align-items: flex-start;
}

.product-benefit-content-items ul li svg {
    flex-shrink: 0;
    margin-top: .25rem;
}


.product-benefit-content-items ul li svg path {
    stroke-width: 4;
    stroke: var(--primary-color-product);
}

.section-product-uses-img {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.img-item>div {
    position: relative;
    height: 300px;
    margin-bottom: 1rem;
}

.img-item>div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: .5rem;
}

.img-item p {
    text-align: center;
    font-weight: 600;
}

.section-product-why-choose-us {
    background-color: var(--white);
    padding: 3rem 1rem;
}

.product-why-choose-us-header {
    text-align: center;
    margin-bottom: 2rem;
}

.product-why-choose-us-header h2 {
    margin-bottom: .5rem;
    color: var(--primary-color-product);
}

.product-why-choose-us-header p {
    font-size: 1.125rem;
    font-weight: 500;
}

.product-why-choose-us-articles {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.product-why-choose-us-article {
    flex: 1 1 calc(100% / 5 - 4rem);
    min-width: calc(100% / 5 - 4rem);
    overflow: hidden;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
    text-align: center;
    cursor: pointer;
}

.card-icon {
    background-color: var(--color-orange-light);
    color: var(--color-orange);
    width: 4rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    aspect-ratio: 1 / 1;
    margin: 0px auto 1rem;
    transition: background-color 0.5s, color 0.5s ease;
}

.product-why-choose-us-article:hover .card-icon {
    background-color: var(--color-orange);
    color: var(--white);
}

.product-why-choose-us-articles article h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.section-product-call-to-action {
    background-color: var(--bg-section-color-2);
    padding: 3rem 1rem;
    text-align: center;
    color: var(--white);
}

.section-product-call-to-action h2 {
    color: var(--primary-color-product);
}

.container-product-call-to-action-btn {
    display: flex;
    justify-content: center;
}

.container-product-call-to-action-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5rem;
    background-color: var(--primary-color-product);
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s;
}

.container-product-call-to-action-btn a:hover {
    background-color: rgb(163, 37, 44);
}

.container-product-call-to-action-btn a svg path {
    stroke-width: .4;
    stroke: var(--white);
}

@media (min-width: 768px) {
    .product-benefit-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1100px) {
    .product-why-choose-us-articles {
        flex-wrap: wrap;
    }

    .product-why-choose-us-articles article {
        flex: 1 1 calc(100% / 3 - 2rem);
        max-width: calc(100% / 3 - 2rem);
    }
}

@media (max-width: 768px) {
    .product-why-choose-us-articles article {
        flex: 1 1 calc(100% / 2 - 1rem);
        max-width: calc(100% / 2 - 1rem);
    }
}

@media (max-width: 576px) {
    .container-product-benefit-header-btn a {
        font-size: 1rem;
    }
}

@media (max-width: 460px) {
    .product-why-choose-us-articles article {
        flex: 1 1 100%;
        max-width: 320px;
    }
}