.header-section {
    position: relative;
    height: 37.5rem;
    color: var(--color-light);
}

.header-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
}

.header-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container-header-description {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
}

.header-description {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    text-align: center;
}

.header-description h1 {
    color: var(--color-light);
    transform: translateY(-30px);
    opacity: 0;
    animation: slideDownFadeIn 1s ease forwards;
}

@keyframes slideDownFadeIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-description p {
    font-weight: var(--fw-medium);
    font-size: var(--fs-h4);
}

.btn-cta-whatsapp {
    background: #416ca0;
    transition: background 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
}

.btn-cta-whatsapp:hover {
    background: var(--color-secondary);
    box-shadow: 0 4px 12px rgba(37, 48, 111, 0.35);
    color: var(--color-light);
}

.card-product-header-information {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    padding: 1rem 1.2rem;
    border-radius: 35px 0px 35px;
    max-width: 40rem;
    margin: .9rem auto;
    text-align: center;
}

.card-product-header-information p {
    font-size: 1.125rem;
    font-weight: var(--fw-semibold);
    font-style: italic;
}

.section-collage-of-images {
    padding-top: 4rem;
}

.header-collage-of-images {
    max-width: 768px;
    margin: 0 auto 2rem;
    text-align: center;
}

.header-collage-of-images h2 {
    line-height: 1.2;
    margin-bottom: .5rem;
}

.row-collage-of-images {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.col-collage-of-images {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;
    border-radius: .5rem;
    overflow: hidden;
    padding-bottom: 1.5rem;
}

.col-collage-of-images div {
    position: relative;
    height: 16rem;
    overflow: hidden;
}

.col-collage-of-images div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.col-collage-of-images h3 {
    font-size: 1.25rem;
    text-align: center;
    padding: 0 1.125rem;
    margin-top: .5rem;
    font-weight: var(--fw-semibold);
}

.col-collage-of-images p {
    padding: 0 1.125rem;
    text-align: center;
    margin-bottom: .5rem;
}

.col-collage-of-images a {
    margin-top: auto;
}

.header-btn-cta.links-whatsapp {
    background: var(--color-primary);
    color: var(--color-light);
    align-self: center;
    transition: background .3s ease;
    font-weight: var(--fw-semibold);
}

.header-btn-cta.links-whatsapp:hover {
    background: #273897;
}

.row-benefit-product {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.container-benefit-product h2 {
    max-width: 576px;
    text-align: center;
    margin: 0 auto 2rem;
    line-height: 1.2;
}

.col-benefit-product {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    border-radius: .5rem;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 3px 3px 0px;
    padding: 1rem;
}

.col-benefit-product svg {
    margin-bottom: .5rem;
}

.col-benefit-product h3 {
    font-size: 1.25rem;
    font-weight: var(--fw-semibold);
    line-height: 1.2;
}

.section-product-rollo {
    background-color: var(--color-light);
}

.row-product-rollo {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    align-items: center;
}

.col-product-rollo h2 {
    margin-bottom: .5rem;
    line-height: 1.2;
}

.col-product-rollo p {
    margin-bottom: .9rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: .5rem;
}

.product-features li {
    display: flex;
    gap: .5rem;
}

.product-features li svg {
    flex-shrink: 0;
    margin-top: .10rem;
    stroke-width: 2.5;
}

.container-img-product-detail {
    position: relative;
    height: 24rem;
    border-radius: .5rem;
    overflow: hidden;
}

.container-img-product-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section-call-to-action {
    background-color: var(--color-light);
    padding-bottom: 4rem;
}

.section-call-to-action>div {
    background-color: var(--color-secondary);
    display: flex;
    flex-direction: column;
    gap: .5rem;
    color: var(--color-light);
    padding: 1.25rem;
    border-radius: .5rem;
    align-items: center;
}

.section-call-to-action>div h3 {
    font-weight: var(--fw-semibold);
    text-align: center;
    font-size: 1.4rem;
    line-height: 1.2;
}

.section-call-to-action>div p {
    text-align: center;
    margin-bottom: .5rem;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .row-product-rollo {
        grid-template-columns: 1fr;

    }
}

@media (max-width: 576px) {

    .row-collage-of-images {
        grid-template-columns: 1fr;

    }

    .col-product-rollo h2 {
        text-align: center;
    }
}