.whatsapp-float {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    z-index: 9999;
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25);
    border-radius: 50%;
    padding: 0.3rem;
}
.whatsapp-float svg {
    width: 64px;
    height: 64px;
    display: block;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.18);
}
.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
@media (min-width: 600px) {
    .carrousel {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 2rem;
        overflow-x: auto;
        max-width: 100%;
        padding: 4rem 2rem;
        scroll-snap-type: x mandatory;
        scrollbar-width: none; /* Firefox */
    }
    .carrousel::-webkit-scrollbar {
                display: none; /* Chrome, Safari, Edge Chromium */
        width: 0;
        height: 0;
        background: transparent;
    }
    .carrousel-item {
        min-width: 240px;
        max-width: 240px;
        flex: 0 0 240px;
        scroll-snap-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .carrousel-item img {
        width: 200px;
        height: 200px;
        object-fit: cover;
        border-radius: 0.8rem;
    }
}
:root {
    --color-title: #ae1a39;
    --font_family_title: "Roboto Condensed", sans-serif;
    --font_family_price: "Montserrat", sans-serif;
    --background_subtitle: #000;
    --color_subtitle: #fff;
    --color-price: #000000;
    --color_border_button: #cc1337;
    --background_button: #fff;
    --color_button-title: #cd1639;
    --background_color_main: #f4f4f4;
    --skew-angle: 12deg;
}

html {
    font-size: 62.5%;
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    font-size: 2rem;
    font-family: var(--fuente-principal);
    line-height: 1.5;
    background-color: var(--background_color_main);
    width: 100%;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    font-family: var(--font_family_price);
    align-items: center;
}

.container {
    margin: 0 auto;
    min-width: 90%;
}

/*
Header styles
*/
.header {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding: 3rem 0;
}

.header__title {
    font-size: 5.2rem;
    font-weight: 900;
    font-style: normal;
    color: var(--color-title);
    font-family: var(--font_family_title);
    margin: 0 auto;
    width: 100%;
    text-align: center;
    line-height: 1;
}



.header__subtitle {
    margin: 0 auto;
    text-align: center;
    background-color: var(--background_subtitle);
    color: var(--color_subtitle);
    padding: 0.2rem 1.5rem;
    border-radius: 1rem;
}

.header__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    font-family: var(--font_family_title);
}


.header__list li:nth-child(2)::before,
.header__list li:nth-child(3)::before {
    content: "-";
    margin-right: 1rem;
    margin-left: 1.5rem;
}


/*
section main
*/

.section__presentation {
    height: 42rem;
    width: 100%;
    margin-top: -6rem;
    background-image: url('../imgs/hermosa-pareja-sexy-disfrutando-del-sexo-excitante-antes-de-tener-sexo-en-la-cama-en-el-dormitorio-d.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
    z-index: -1;
}


.section__presentation-info {
    width: 100%;
    position: absolute;
    top: 43%;
}

.section__presentation-info div {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 800px) {
    .section__presentation-info div {
        gap: 1.8rem;
    }
}

.section__presentation-list {
    list-style: none;
    padding: 0;
    margin-left: -1rem;
}

.section__presentation-list ul {
    list-style: none;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.section__presentation-list ul li {
    margin-bottom: 1rem;
    background-color: var(--color_border_button);
    color: var(--background_button);
    margin: 0.2rem;
    padding: 1rem 1.3rem;
    display: flex;
    flex-direction: row;
    width: 23rem;
    gap: 1.2rem;
    align-items: center;
    justify-content: left;
    border-radius: 2rem;
}

@media (min-width: 800px) {
    .section__presentation-list ul li {
        width: 28rem;
        padding: 1rem 1.5rem;
    }
}

.img-list {
    width: 2rem;
    height: 2rem;
}

.section__presentation-list ul li span {
    font-size: 1.2rem;
    font-weight: 800;
    display: inline-block;
    font-family: 'Open Sans', Arial, sans-serif;
}

.section__presentation-image {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: -7rem;
    height: 25rem;
    width: 20rem;
}

.section__presentation-image img {
    width: 15rem;
    height: 25rem;
}

@media (min-width: 320px) {
    .section__presentation-image img{
        width: 16rem;
        height: 28rem;
    }
}

@media (min-width: 400px) and (max-width: 600px) {
    .section__presentation-image {
        margin-left: -9rem;
    }
}

@media (min-width: 764px) and (min-height: 800px) {
    .section__presentation-image {
        margin-left: -10rem;
    }
}


@media (min-width: 800px) {
    .section__presentation-image {
        margin-left: -9rem;
    }
}


.section__offer-button-container{
    margin-top: 2rem;
}

.section__offer-button{
    border-color: var(--color_border_button);
    background-color: var(--background_button);
    padding: 1.4rem 1rem;
    line-height: 1.5rem;
    width: fit-content;
    margin: 0 auto;
    border-radius: 2rem;
    cursor: pointer;
    box-shadow: 0 0.5rem 0.4rem var(--color_border_button);
    transition: 0.3s;
}

.section__offer-button-title {
    padding: 1rem;
    margin: 0;
    color: var(--color_button-title);
    font-size: 1.5rem;
}

.section__offer-button-shipping {
    color: var(--background_subtitle);
    font-weight: 800;
    font-size: 1.4rem;
    font-family: var(--font_family_price);
}



/* second section */

.section__price {
    padding: 4rem 2rem;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    line-height: 0.5;
}

.section__price-title {
    font-size: 2.5rem;
    font-weight: 600;
    font-family: var(--font_family_price);
}

.section__price-title strong {
    color: var(--color-price);
    font-weight: 800;
}

.section__price-before {
    font-size: 1.8rem;
    font-weight: 400;
    font-family: var(--font_family_price);
    text-decoration: line-through;
    color: var(--color-price);
    padding-bottom: 5rem;
}

.section__price-button {
    border-color: var(--color_border_button);
    background-color: var(--background_button);
    padding: 1.4rem 1rem;
    line-height: 1.5rem;
    width: fit-content;
    margin: 0 auto;
    border-radius: 2rem;
    cursor: pointer;
    box-shadow: 0 0.5rem 0.4rem var(--color_border_button);
    transition: 0.3s;
}

.section__price-button:hover {
    transform: scale(1.1);
}

.section__price-button-title {
    padding: 1rem;
    margin: 0;
    color: var(--color_button-title);
    font-size: 1.5rem;
}

.section__price-button-shipping {
    color: var(--background_subtitle);
    font-weight: 800;
    font-size: 1.4rem;
    font-family: var(--font_family_price);
}


.section__offer {
    position: relative;
    padding: 4rem 2rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    /* Elimina el fondo y la opacidad aquí */
    /* background-image, opacity, etc. */
    overflow: hidden;
    
}

.section__offer::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../imgs/la-intimidad-de-la-joven-pareja-latina-en-la-cama.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
}

.section__offer-title {
    font-size: 3.2rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: normal;
    color: var(--color-title);
    font-family: var(--font_family_title);
    margin: 0 auto;
    width: 100%;
    text-align: center;
    line-height: 1;
}

.section__offer-info {
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    line-height: 0.8rem;

}

.section__offer-info span {
    display: inline-block;
    transform: skew(-10deg, 0deg);
}

.section__offer-info .tag {
    background-color: var(--color_border_button);
    padding: 1.5rem;
    border-radius: 1rem;
    color: var(--color_subtitle);
    font-weight: 800;
    font-size: 2.2rem;
    text-transform: uppercase;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.section__offer-info p {
    padding: 1rem;
    margin: 0;
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: var(--font_family_price);
}

.section__offer-info p strong {
    font-weight: 800;
}

/* section about first's images of medicines */
.section__offer-image-container {
    padding-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    padding-bottom: 3rem;
}

.section__offer-one-image,
.section__offer-two-image {
    width: 100%;
    max-width: 700px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    gap: 2rem;
}

.container__image {
    display: flex;
    flex-direction: row;
    height: 10rem;
    width: auto;
    object-fit: cover;
}



@media (min-width: 600px) {
    .container__image{
        height: 15rem;
    }
}

.image_med {
    display: block;
    max-width: 8rem;
    height: 12rem;
}

@media (min-width: 600px) {
    .image_med {
        height: 13rem;
        max-width: 12rem;
    }

    .ampliacion{
        height: 16rem;
        max-width: 12rem;
    }

}

.ampliacion{
    display: block;
    max-width: 12rem;
    height: 12rem;
}

.container__info-arrows {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -2rem;
}

.container__info-arrows::after {
    content: "➤➤➤";
    display: block;
    margin-top: 1rem;
    font-size: 1.5rem;
    color: var(--color-title);
}

@media(min-width: 600px){
    .container__info-arrows::after {
        font-size: 2rem;
    }
}

.container__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 2rem;
    line-height: 1rem;
}



.container__info-tag {
    border: 2px solid;
    border-color: var(--color_border_button);
    padding: 0.5rem 0.7rem;
    border-radius: 1rem;
}

@media (min-width: 600px) {
    .container__info-tag {
        font-size: 2rem;
        padding: 0.7rem 1rem;
    }
}

.container__info-tag strong {
    display: inline-block;
    color: var(--color-title);
    font-weight: 700;
    font-family: var(--font_family_price);
    transform: skew(-10deg);
    font-size: 1.2rem;
}

@media (min-width: 600px) {
    .container__info-tag strong {
        font-size: 2rem;
    }
}

.container__info-before {
    margin-top: 1rem;
    font-size: 1.2rem;
    font-weight: 400;
    font-family: var(--font_family_price);
    text-decoration: line-through;
    color: var(--color-price);
}

@media (min-width: 600px) {
    .container__info-before {
        font-size: 1.5rem;
    }
}

.container__info-now {
    display: flex;
    flex-direction: column;
    font-size: 1.2rem;
    font-weight: 600;
    font-family: var(--font_family_price);
    line-height: 2rem;
    text-align: center;
}

@media (min-width: 600px) {
    .container__info-now {
        line-height: 3rem;
        font-size: 1.8rem;
    }
}

.container__info-now strong {
    font-weight: 800;
    font-size: 2.5rem;
}

.section__offer-tags-info {
    padding: 2rem 0;
    margin: 0 auto;
}

.section__offer-tags-info ul {
    list-style: none;
    padding: 0;
}

.section__offer-tags-info ul li {
    font-size: 1.2rem;
    font-weight: 400;
    width: 30rem;
    font-family: var(--font_family_price);
    margin-bottom: 1rem;
    background-color: var(--color_border_button);
    color: var(--background_button);
    padding: 1rem 2rem;
    margin: 0.2rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.section__offer-tags-info ul li:nth-child(1) {
    border-radius: 1.5rem 1.5rem 0 0;
}

.section__offer-tags-info ul li:nth-child(4) {
    border-radius: 0 0 1.5rem 1.5rem;
}

/* results */

.section__results{
    position: relative;
    width: 100vw;
    max-width: 100vw;
    box-sizing: border-box;
    overflow-x: hidden;
    padding-top: 4rem;
}

.section__results::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url('../imgs/pantalla_2.webp');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.6;
    z-index: -1;
}

.section__results-title{
    font-size: 3rem;
    padding: 0 1rem;
    font-weight: 900;
    text-transform: uppercase;
    font-style: normal;
    color: var(--color-title);
    font-family: var(--font_family_title);
    margin: 0 auto;
    width: 100%;
    text-align: center;
    line-height: 1;
    padding-bottom: 4rem;
}

@media (min-width: 600px) {
    .section__results-title {
        font-size: 4rem;
    }
}

.section__results-items {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 0 auto;
    max-width: 400px;
}

@media (min-width: 600px) {
    .section__results-items {
        max-width: 800px;
        padding: 0 2rem;
    }
}

.section__results-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 1rem;
}


.section__results-item:nth-child(even) {
    flex-direction: row-reverse;
    gap: 2rem;
     padding-left: 2rem;
     padding-right: 2rem;
}

.section__results-item p {
    flex: 1;
    margin: 0 1rem;
    align-items: center;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
}

.section__results-item:nth-child(odd) p {
    padding-left: 1rem;
}



@media (min-width: 600px) {
    .section__results-item p {
        font-size: 3rem;
    }
}

.section__results-item span {
    font-weight: bold;
    color: var(--color_border_button);
}

.section__results-item img{
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    background-color: var(--background_button);
    object-fit: fill;
    display: block;
    margin: 0 auto;
    filter: grayscale(100%);
}

@media (min-width: 600px) {
    .section__results-item img{
        width: 25rem;
        height: 25rem;
    }
}

.section__results-button-container{
    text-align: center;
    padding: 8rem 0;
}

/* about product */
.section__about-product {
    padding: 3rem 0;
    position: relative;
}

.section__about-product-title {
    color: var(--color-title);
    font-size: 3.2rem;
    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--font_family_title);
    text-align: center;
    line-height: 3rem;
}

.section__about-product-title span {
    display: block;
    color: var(--color-price);
}

.section__about-product-info {
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    line-height: 1.4rem;
}



.section__about-product-info-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    padding: 1rem;
    font-family: var(--font_family_price);
    margin: 0 auto;
}

.section__about-product-info-item-side-left,
.section__about-product-info-item-side-right {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.section__about-product-info-item-side-left {
    border-right: 3px solid var(--color_border_button);
    padding-right: 1.5rem;
    width: 100%;
}


/* line bottom */
.section__about-product-info-item:nth-child(1)::after {
    content: "";
    border-bottom: 3px solid var(--color_border_button);
    display: block;
    width: 220%;
    margin: 1rem 0;
}

/* line bottom */



.section__about-product-info-item-down {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
    padding: 1rem;
    font-family: var(--font_family_price);
    margin: 0 auto;
}

.section__about-product-info-item-down .section__about-product-info-item-side-right {
    margin-left: 2rem;
}


.paragraph {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.paragraph:nth-child(1) {
    margin-right: 8rem;
    padding: 0 1rem;
}

.paragraph span {
    display: block;
}

.section__about-product-description {
    width: 100%;
    max-width: 800px;
    margin: auto;
    display: flex;
    flex-direction: column;
    padding: 5rem 0;
    position: relative;
    height: auto;
    gap: 2rem;
}

.section__about-product-description-img {
    position: absolute;
    opacity: 0.3;
    top: 0;
}

.section__about-product-description::before {
    content: "";
    position: absolute;
    top: 5rem;
    left: -18rem;
    width: 100%;
    max-width: 500px;
    height: 600px;
    background-image: url('../imgs/medicamento_cara_frontal.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.3;
    border-radius: 20px;
    z-index: -1;
}

.section__about-product-description>* {
    position: relative;
    z-index: 1;
}

.section__about-product-description-info {
    position: relative;
    width: 85%;
    max-width: 700px;
    display: flex;
    background-color: var(--background_button);
    margin: 0 auto;
    align-items: center;
    padding: 0.8rem 0.2rem 0.8rem 7.5rem;
    border-radius: 4rem;
}

.circle_image {
    position: absolute;
    left: 15px;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
}

.circle_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-descript {
    padding: 0 1.5rem;
    margin: 0;
    line-height: 0.5rem;
}

.text-descript-title {
    font-size: 1.3rem;
    word-spacing: 0.3rem;
    letter-spacing: 0.1rem;
    text-transform: uppercase;
    font-weight: 500;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.text-descript-paragraph {
    font-size: 1.2rem;
    margin-top: -0.8rem;
    color: var(--color-text);
    line-height: 1.5rem;
    font-weight: 600;
    font-optical-sizing: auto;
    font-family: "Open Sans", sans-serif;
}

@media (min-width: 520px) {
    .section__about-product-description-info {
        padding: 1.5rem 0.2rem 1.5rem 7.7rem;
    }

    .text-descript-title {
        font-size: 1.5rem;
    }

    .text-descript-paragraph {
        font-size: 1.4rem;
    }
}


/* benefits */
.section__about-product-benefits {
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
}


.section__about-product-benefits-title{
    color: var(--background_color_main);

    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--font_family_title);
    text-align: center;
    line-height: 3rem;
    background-color: var(--color_border_button);
    margin-top: -5rem;
    padding: 2rem 2rem;
}




.section__about-product-benefits-content {
    padding: 2rem 0;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section__about-product-benefits-content ul {
    list-style: none;
    padding: 0;
}

.section__about-product-benefits-content ul li {
    font-size: 1.5rem;
    font-weight: 500;
    width: 90%;
    line-height: 1.7rem;
    font-family: var(--font_family_price);
    margin-bottom: 1rem;
    background-color: var(--color_border_button);
    color: var(--background_button);
    padding: 1rem 2rem;
    margin: 0.2rem auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 800px) {
    .section__about-product-benefits-content ul li {
        font-size: 2.3rem;
        gap: 2rem;
        line-height: 2.5rem;
        width: 55rem;
    }

    .img-list{
        width: 3rem;
        height: 3rem;
    }
}

.section__about-product-benefits-content ul li:nth-child(1) {
    border-radius: 1.5rem 1.5rem 0 0;
}

.section__about-product-benefits-content ul li:nth-child(7) {
    border-radius: 0 0 1.5rem 1.5rem;
}


.section__about-product-benefits-subtitle {
    color: var(--background_subtitle);
    font-size: 3.2rem;
    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--font_family_title);
    text-align: center;
    line-height: 3rem;
}

@media (min-width: 600px) {
    .section__about-product-benefits-subtitle {
        font-size: 4rem;
    }
}

.section__about-product-benefits-subtitle span {
    color: var(--color-title);
}

.section__about-product-benefits-images {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 3rem;
    padding-top: 5rem;
    height: auto;
}



.section__about-product-benefits-images img {
    width: 3rem;
    height: 3rem;
    object-fit: cover;
    border-radius: 1rem;
    aspect-ratio: 1/1;
    display: block;
    margin: 0 auto;
}

@media(min-width: 600px) {
    .section__about-product-benefits-images img {
        width: 5rem;
        height: 5rem;
        border-radius: 1rem;
        aspect-ratio: auto;
    }
}


.section__about-product-benefits-images img:nth-child(1) {
    width: 11rem;
    height: 18rem;
    
    align-items: self-start;
}


.section__about-product-benefits-images img:nth-child(2) {
    width: 15rem;
    height: 28rem;
}


@media (min-width: 600px) {
   .section__about-product-benefits-images img:nth-child(1) {
       width: 12rem;
       height: 20rem;
   }

   .section__about-product-benefits-images img:nth-child(2) {
       width: 20rem;
       height: 35rem;
   }
}


/* section of recommended */
.section__about-product-recommended {
    padding: 1.5rem 0;
}

.section__about-product-recommended-title {
    color: var(--background_color_main);

    font-weight: 900;
    text-transform: uppercase;
    font-family: var(--font_family_title);
    text-align: center;
    line-height: 3rem;
    background-color: var(--color_border_button);
    margin-top: -5rem;

}


.section__about-product-recommended .text {
    padding: 1rem 0;
    font-size: 2.5rem;
    transform: skew(-10deg, 0deg);
}

.section__about-product-recommended-group {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    overflow: hidden;
}

.section__about-product-recommended-item {
    width: 100%;
    max-width: 900px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.section__about-product-recommended-item:nth-child(1) {
    padding: 2rem;
}


.section__about-product-recommended-info {

    text-align: center;
    display: flex;
    flex-direction: column;
    font-family: var(--font_family_title);
    justify-content: center;
    line-height: 2rem;
}

.section__about-product-recommended-info .text-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.section__about-product-recommended-info .text-subtitle {
    font-weight: 900;
    text-transform: uppercase;
    color: var(--color-title);
    line-height: 3rem;
    font-size: 1.4rem;
    margin: 0;
    padding: 0;
}


.section__about-product-recommended-info:nth-child(2) {
    padding: 1rem;
}

.section__about-product-recommended-info p {
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.4rem;

}

.section__about-product-recommended-info:nth-child(2) p {
    display: block;
    font-size: 1.5rem;
    margin: 0.5rem;
}

.text-title-info {
    font-size: 1.5rem;
    font-weight: 700;
}

.text-subtitle-info {
    font-weight: 700;
    font-family: var(--font_family_title);
    background-color: rgba(228, 138, 158, 0.5);
    /* color con opacidad */
    padding: 0.2rem 0;
    margin: 0;
}

.text-info {
    color: var(--color-title);
}




/* Carrusel horizontal simple */

.section__about-product-recommended-opinions {
    padding: 3rem 0;
    width: 100%;
    overflow: hidden;
}

.section__about-product-recommended-opinions-title {
    position: relative;
    color: var(--color-price);
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--font_family_title);
    text-align: center;
    line-height: 3rem;
}

@media((min-width: 600px) and (max-width: 700px)){
    .section__about-product-recommended-opinions-title {
        font-size: 2.5rem;
    }
}

.section__about-product-recommended-opinions-title span {
    color: var(--color-title);
    font-weight: 700;
}

.section__about-product-recommended-opinions-title span::before {
    content: "";
    position: absolute;
    width: 122px;
    height: 20px;
    border-top: 3px solid var(--color-title);
    border-radius: 50%;
    top: 100%;
}


.carrousel {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    overflow-x: auto;
    padding: 2rem 0;
    scroll-snap-type: x mandatory;
    padding: 4rem 2rem;
    align-items: center;
}

.carrousel-item {
    flex: 0 0 auto;
    scroll-snap-align: center;
    background: var(--color_border_button);
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    padding: 1rem;
    min-width: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carrousel-item img {
    width: 180px;
    height: auto;
    border-radius: 0.8rem;
    object-fit: cover;
}

@media((min-width: 600px) and (max-width: 900px)){
    .carrousel {
        margin: 0 auto;
        width: 70rem;
    }
}

@media (min-width: 900px) and (max-width: 1200px) {
    .carrousel {
        margin: 0 auto;
        width: 90rem;
    }
}

@media (min-width: 1200px) {
    .carrousel {
        margin: 0 auto;
        width: 110rem;
    }
}



.section__about-product-recommended-button {
    padding: 2rem 0;
    margin: 0 auto;
    display: flex;
}

/* secutiry */
.section__about-product-recommended-security {
    max-width: 100rem;
    margin: auto;
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 3rem 0;
}

.section__about-product-recommended-security-item {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem;
    gap: 1rem;
}

.section__about-product-recommended-security-item img {
    width: 2rem;
    height: auto;
}

.section__about-product-recommended-security-item p {
    font-size: 1rem;
    font-family: var(--font_family_price);
    margin: 0;
    font-weight: 800;
}

.section__about-product-recommended-security-item p span {
    font-weight: 500;
    font-size: 0.6rem;
    display: block;
}

.section__about-product-recommended-security-item:nth-child(1),
.section__about-product-recommended-security-item:nth-child(2) {
    position: relative;
}

.section__about-product-recommended-security-item:nth-child(1)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: -8%;
    width: 2px;
    height: 50%;
    /* Ajusta el porcentaje para el largo de la barra */
    background: var(--color_border_button);
}

.section__about-product-recommended-security-item:nth-child(2)::after {
    content: "";
    position: absolute;
    top: 25%;
    right: -8%;
    width: 2px;
    height: 50%;
    /* Ajusta el porcentaje para el largo de la barra */
    background: var(--color_border_button);
}


/* logo - secutiry */

.section__about-product-recommended-security-logos {
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}

.section__about-product-recommended-security-logos-title {
    font-size: 1.8rem;
    font-weight: 700;
    text-align: center;
    font-family: var(--font_family_title);
    text-transform: uppercase;
}

.section__about-product-recommended-security-logos-title span {
    font-weight: 400;
}

.section__about-product-recommended-security-logos-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4rem;
}

.section__about-product-recommended-security-logos-item {
    display: flex;
    flex-direction: row;
    gap: 3rem;
}

.img-logo {
    width: 6rem;
    height: auto;
    margin: 0 auto;
}

@media (min-width: 600px){
    .img-logo{
        width: 8rem;
        height: auto;
    }
}



.section__about-product-recommended-security-logos-button {
    padding: 5rem 0 2rem 0;
    text-align: center;
}



@media (min-width: 600px) and (max-width: 800px) {
    .section__presentation-image {
            width: 20rem;
            height: 30rem;
        
    }
}

@media (min-width: 800px) {


    .section__presentation-image {
        width: 20rem;
        height: 30rem;
    
 
        transform: scale(1.2);
    }

    .header__subtitle {
        padding: 0.5rem 1.6rem;
        margin-top: -15px;
    }

    .section__presentation-info {
        top: 43%;
    }

    .section__presentation-info div {
        justify-content: right;
        margin: 0 80px;
    }

    .section__presentation {
        height: 60.5rem;
        background-position-y: -150px;
    }

    .section__presentation-list ul li {
        padding: 1rem 1.7rem;
        width: 28rem;
    }

    .section__presentation-list ul li span {
        font-size: 1.7rem;
    }

    .section__price-title {
        font-size: 3rem;
    }

    .section__price-before {
        font-size: 2.2rem;
    }

    .section__offer-title {
        font-size: 4rem;
    }

    .section__offer-info .tag {
        padding: 1.8rem;
        font-size: 2.5rem;
    }

    .section__offer-tags-info ul li {
        font-size: 2rem;
        width: 45rem;
        padding: 1.8rem 3rem;
    }

    .carrousel {
        justify-content: center;
    }

    .carrousel-item img {
        width: 250px;
    }

    .img-list {
        width: 3rem !important;
    }

    .paragraph {
        font-size: 1.5rem !important;
    }

    .paragraph span {
        font-size: 1.2rem !important;
    }

    .section__about-product-recommended-security-logos-title {
        font-size: 2.5rem;
    }

    .img-logo {
        width: 9rem;
    }

    .text-title {
        font-size: 2.5rem !important;
    }

    .text-subtitle {
        font-size: 2rem !important;
    }

    .section__about-product-recommended-item p {
        font-size: 1.8rem;
        line-height: 1.7rem;
    }

    .text-subtitle-info {
        font-size: 2.9rem;
        padding: 0.7rem 0;
    }

    .text-title-info {
        font-size: 2rem;
    }

}


@media(min-width: 1200px){
    .section__presentation {
        background-size: 100% 80rem;
        background-position: center !important;
    }
}


.whatsapp-float {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 9999;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.whatsapp-float:hover {
  transform: scale(1.1);
}

.img_float{
    width: 8rem;
    height: auto;
}