:root {
    --bg-section-color: #ce9243;
    --bg-section-color-2: #fffcf7;
    --primary-color-product: #872227;
}

.section-banner {
    position: relative;
    height: 32rem;
}

.banner {
    position: absolute;
    inset: 0;
}

.bg-image-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 60%;
}

.section-product-header {
    background-color: var(--bg-section-color);
    padding: 3rem 1rem;
}

.section-product-header-text {
    text-align: center;
    color: var(--white);
}

.section-product-header-text h1 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: .5rem;
}

.section-product-header-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.container-product-benefit-header-btn {
    text-align: center;
}

.container-product-benefit-header-btn a {
    display: inline-block;
    background-color: #b24f23;
    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-benefit-header-btn a:hover {
    background-color: #cf6c39;
}

.section-product-why-choose-us {
    padding: 3rem 1rem;
    background-color: var(--bg-section-color-2);
}

.container-992 {
    max-width: 992px;
    margin: 0 auto;
}

.section-product-why-choose-us-text {
    gap: 2rem;
}

@media (min-width: 768px) {
    .section-product-why-choose-us-text {
        grid-template-columns: repeat(3, 1fr);
    }

    .product-benefit-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.section-product-why-choose-us-text-article {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.icono {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1rem;
}

.icono svg {
    color: var(--primary-color);
    fill: var(--primary-color);
}

.icono svg .check {
    color: var(--white);
}

.section-product-why-choose-us-text article h3 {
    color: #3a4e4e;
    text-align: center;
    font-size: 1.25rem;
    max-width: 230px;
    width: 100%;
}

.container-1024 {
    max-width: 1024px;
    margin: 0 auto;
}

.section-product-benefit {
    background-color: var(--white);
    padding: 3rem 1rem;
}

.product-benefit-content h2 {
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color-product);
}

.product-benefit-content ul li {
    display: flex;
    gap: .5rem;
    align-items: flex-start;
}

.product-benefit-content ul li svg {
    flex-shrink: 0;
    margin-top: .25rem;
}

.product-benefit-content ul li svg path {
    stroke-width: 4;
    stroke: var(--primary-color-product);
}

.product-benefit-content ul li p {
    font-size: 1.125rem;
}

.product-benefit-list {
    gap: .7rem 1rem;
}

.section-product-uses-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-product-uses {
    background-color: var(--bg-section-color-2);
    padding: 3rem 1rem;
}

.section-product-uses h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color-product);
}

.section-product-uses-img {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3rem 1.5rem;
}

.img-item {
    flex: 1 1 calc(100% / 3 - 3rem);
    max-width: calc(100% / 3 - 3rem);
}

.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;
    padding: 0 1rem;
}

.section-product-call-to-action {
    background-color: var(--color-orange-light);
    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(--color-orange);
    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(231, 133, 53);
}

.container-product-call-to-action-btn a svg path {
    stroke-width: .4;
    stroke: var(--white);
}

@media (max-width: 1200px) {
    .section-product-uses-container {
        max-width: 992px;
    }

    .img-item {
        flex: 1 1 calc(100% / 2 - 1.5rem);
        max-width: calc(100% / 2 - 1.5rem);
    }
}

@media (max-width: 768px) {
    .img-item {
        flex: 1 1 100%;
        max-width: 380px;
    }
}

@media (max-width: 576px) {
    .section-banner {
        height: 25rem;
    }

    .bg-image-banner {
        object-position: center center;
    }
}