 :root {
            --card-border-radius: 12px;
            --card-padding: 1.5rem;
            --transition-speed: 0.4s;
            --card-bg-color: #FDFBFA;
            --section-bg-color: #F9F6F1;
            --divider-color: #C4A47C;
            --title-font: 'Poppins', sans-serif;
            --body-font: 'Quicksand', sans-serif;
            --text-color-dark: #c2af3b;
            --text-color-light: #555;
        }

        .procedimientos-grid-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            padding: 2rem 0;
            font-family: 'Quicksand', sans-serif;
        }

        .procedimiento-card {
            position: relative;
            overflow: hidden;
            cursor: pointer;
            border-radius: var(--card-border-radius);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            transition: box-shadow var(--transition-speed) ease;
            aspect-ratio: 4 / 5;
        }

        .procedimiento-card:hover {
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
        }

        .procedimiento-card__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform var(--transition-speed) ease-in-out;
        }

        .procedimiento-card:hover .procedimiento-card__image {
            transform: scale(1.1);
        }

        .procedimiento-card__overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: var(--card-padding);
            color: white;
            background: linear-gradient(to top, rgba(59, 54, 46, 0.55) 20%, transparent 100%);
            transition: background var(--transition-speed) ease-in-out;
        }
        
        .procedimiento-card:hover .procedimiento-card__overlay {
            background: rgba(59, 58, 46, 0.7);
        }

        .procedimiento-card__title {
            font-size: 1.5rem;
            margin: 0;
            line-height: 1.2;
            transform: translateY(0);
            transition: transform var(--transition-speed) ease-in-out;
        }

        .procedimiento-card:hover .procedimiento-card__title {
            transform: translateY(-1rem);
        }

        .procedimiento-card__text {
            margin: 0;
            font-size: 0.9rem;
            line-height: 1.5;
            opacity: 0;
            transform: translateY(1rem);
            transition: opacity var(--transition-speed) ease-in-out, transform var(--transition-speed) ease-in-out;
            max-height: 0;
        }

        .procedimiento-card:hover .procedimiento-card__text {
            opacity: 1;
            transform: translateY(-0.5rem);
            max-height: 100%; /* Allow paragraph to take space */
        }
        
        @media (max-width: 768px) {
            .procedimientos-grid-container {
                grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                gap: 1.5rem;
            }
            :root {
                --card-padding: 1.25rem;
            }
            .procedimiento-card__title {
                font-size: 1.25rem;
            }
        }



        .info-overlap-section {
            --section-padding: 4rem;
            display: grid;
            grid-template-columns: 1fr;
            position: relative;
            background-color: var(--section-bg-color);
        }

        .info-overlap__image-container {
            width: 100%;
            height: 450px;
        }

        .info-overlap__image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

        .info-overlap__card {
            padding: 2.5rem 1.5rem;
            background-color: transparent; /* No background on mobile by default */
        }

        .info-overlap h2 {
            font-family: var(--title-font);
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--text-color-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .info-overlap__title {
            font-family: var(--title-font);
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--text-color-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .info-overlap__divider {
            width: 80px;
            height: 2px;
            background-color: var(--divider-color);
            margin: 1.5rem 0;
        }

        .info-overlap__text {
            font-family: var(--body-font);
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-color-light);
            margin: 0;
        }

        .info-overlap p {
            font-family: var(--body-font);
            font-size: 1rem;
            line-height: 1.7;
            color: var(--text-color-light);
            margin: 0;
        }

        /* --- Desktop styles --- */
        @media (min-width: 768px) {
            .info-overlap-section {
                grid-template-columns: repeat(2, 1fr);
                align-items: center;
                padding: var(--section-padding) 0;
                min-height: 600px;
            }

            .info-overlap__image-container {
                /* Place image in the background spanning all columns */
                grid-column: 1 / -1;
                grid-row: 1 / 2;
                height: 100%;
                max-width: 100%;

            }
             .info-overlap__image {
                object-position: center center; /* Focus on the right side of the image */
                max-width: 100%;
            }

            .info-overlap__card {
                /* Place card on top, in the first column */
                grid-column: 1 / 2;
                grid-row: 1 / 2;
                z-index: 1;
                
                background-color: var(--section-bg-color);
                padding: 3rem;
                margin-left: 10%; /* Adjust to control how much it overlaps */
                max-width: 650px;
                box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
            }
        }
        
        @media (min-width: 1200px) {
            .info-overlap__card {
                 margin-left: 15%;
                 padding: 4rem;
            }
            .info-overlap__title {
                font-size: 3rem;
            }
        }



.display-desktop {
    display: block;
 }
 .display-mobile {
    display: none;
 }   
 @media (max-width: 991px) {
    .display-desktop {
        display: none;
    }
    .display-mobile {
        display: block;
    }
    }
    a {
        color: #A67D32;
    }
    a:hover {
        color: #76623c;
        text-decoration: none;
    }
    .blog-body .blog-topic ul li a {
        color: #aea9a9;
        text-transform: uppercase;
    }
    .blog-topic ul li a:hover {
        color: #81702b;
    }

  .benefits-list-section {
            background-color: var(--section-bg-color);
            padding: 2rem 1.5rem;
        }

        .benefits-list__card {
            max-width: 900px;
            margin: 0 auto;
            background-color: var(--card-bg-color);
            border-radius: var(--card-border-radius);
            padding: 2.5rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
        }

        .benefits-list__list {
            list-style: none;
            padding: 0;
            margin: 0;
            font-family: var(--body-font);
            color: var(--text-color-light);
            font-size: 1rem;
            line-height: 1.7;
        }

        .benefits-list__card ul {
            list-style: none;
            padding: 0;
            margin: 0;
            font-family: var(--body-font);
            color: var(--text-color-light);
            font-size: 1rem;
            line-height: 1.7;
        }

        .benefits-list__item {
           
            grid-template-columns: auto 1fr;
            gap: 0.75rem;
            align-items: start;
        }
        .benefits-list__card ul li {
            grid-template-columns: auto 1fr;
            gap: 0.75rem;
            align-items: start;
        }

        .benefits-list__item:not(:last-child) {
            margin-bottom: 1.5rem;
        }
        
        .benefits-list__item::before {
            content: '•';
            color: var(--text-color-dark);
            font-size: 1.2rem;
            font-weight: 600;
            line-height: 1.5; /* Alinea el bullet con la primera línea de texto */
        }

        .benefits-list__item strong {
            color: var(--text-color-dark);
            font-weight: 600; /* Usar un peso específico de la fuente Poppins */
        }
        
        @media (min-width: 768px) {
            .benefits-list-section {
                padding: 3rem 2rem;
            }
             .benefits-list__card {
                padding: 3.5rem;
            }
            .benefits-list__list {
                font-size: 1.05rem;
            }
             .benefits-list__card ul {
                font-size: 1.05rem;
            }
        }

           .centered-text-section {
            background-color: var(--section-bg-color);
            padding: 4rem 1.5rem;
        }

        .centered-text-section__container {
            max-width: 850px;
            margin: 0 auto;
            text-align: center;
        }

        .centered-text-section__title {
            font-family: var(--title-font);
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--text-color-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .centered-text-section h2 {
            font-family: var(--title-font);
            font-size: 2.5rem;
            font-weight: 500;
            color: var(--text-color-dark);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin: 0;
        }

        .centered-text-section__divider {
            width: 100px;
            height: 2px;
            background-color: var(--divider-color);
            margin: 1.5rem auto;
        }

        .centered-text-section p {
            font-family: var(--body-font);
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-color-light);
            margin: 0;
        }

        .centered-text-section__text {
            font-family: var(--body-font);
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--text-color-light);
            margin: 0;
        }

        @media (max-width: 768px) {
            .centered-text-section {
                padding: 3rem 1.5rem;
            }
            .centered-text-section__title {
                font-size: 2rem;
            }
            .centered-text-section__text {
                font-size: 1rem;
            }
        }


.service-card {
    background-image: url('https://images.pexels.com/photos/161477/treatment-finger-keep-hand-161477.jpeg?auto=compress&cs=tinysrgb&w=600');
    background-size: cover;
    background-position: center;
    height: 220px;
    border-radius: 4px; /* Redondeado sutil */
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); /* Sombra para elevar la tarjeta */
    transition: all 0.3s ease-in-out;
    text-decoration: none; /* Elimina el subrayado si la tarjeta es un link */
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    transition: background-color 0.3s ease-in-out;
}

.service-card .service-name {
    position: relative;
    z-index: 2;
    color: #ffffff; /* Color del texto por defecto */
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    padding: 0 15px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    transition: color 0.3s ease-in-out; /* Transición para el color del texto */
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.service-card:hover::before {
    background-color: rgba(40, 40, 40, 0.4);
}

.service-card .service-name a {
    color: #D9CAB0;
}

.service-card:hover .service-name a {
    color: #ce993f; /* Color del texto en hover */
}

.blog-panel a {
    color: #A67D32;
}

.blog-panel h5 a {
    color: #ccad4e;
}

.blog-topic {
    max-width: 400px;
}


.serum-header {
    background: linear-gradient(rgba(248, 246, 242, 0.8), rgba(248, 246, 242, 0.8)), url('https://images.pexels.com/photos/1537635/pexels-photo-1537635.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') no-repeat center center;
    background-size: cover;
    color: #2c2c2c;
}

.serum-title {
    font-size: 3.5rem;
    font-weight: 700;
}

.serum-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 2rem auto;
    font-style: italic;
}

.ingredients-showcase {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.ingredient-tag {
    background-color: rgba(217, 202, 176, 0.5); /* Color marca semi-transparente */
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 500;
}

/* --- Título de Sección General --- */
.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 3rem;
    position: relative;
    color: #2c2c2c;
}

.section-title.text-center::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #D9CAB0;
    margin: 1rem auto 0;
}

/* --- Sección 2: Beneficios --- */
.serum-benefits {
    background-color: #ffffff;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #D9CAB0;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}
.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* --- Sección 3: Experiencia --- */
.serum-experience {
    background-color: #f8f6f2;
}

.experience-content {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.experience-text {
    flex: 1;
}

.experience-text p {
    font-size: 1.1rem;
    line-height: 1.8;
}

.experience-image {
    flex: 0 0 45%;
}

.experience-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- Sección 4: Notas --- */
.serum-notes {
    background-color: #ffffff;
}

.notes-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.note-item {
    background-color: #f8f6f2;
    padding: 2rem;
    border-radius: 8px;
    border-left: 5px solid #D9CAB0;
}

.note-item h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.note-item p {
    color: #555;
    line-height: 1.7;
}

/* --- Media Queries --- */
@media (max-width: 992px) {
    .experience-content {
        flex-direction: column-reverse;
    }
}
@media (max-width: 768px) {
    .notes-content {
        grid-template-columns: 1fr;
    }
    .serum-title {
        font-size: 2.8rem;
    }
}