/* CSS del sitio depidi */
.fbox-bg.fbox-center .fbox-icon{
    background-color: #f8f8f8;
}

.piernas img {
    position: absolute;
    width: 33vw;
    left: -1%;
    top: -25vh;
    z-index: 99;
}

.pageid90 .content-wrap{
    overflow: visible;
}

.pageid10.item_55558 .content-wrap{
    overflow: visible;
}



/* DEPILACION */
.laser-tips {
    background: #f8e7ec;
    padding: 70px 20px;
    font-family: inherit;
    overflow: hidden;
}

.laser-tips__container {
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
}

.laser-tips__title {
    margin: 0 0 55px;
    text-align: center;
    color: #c58bcf;
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: 1px;
}


/* Layout principal */

.laser-tips__content {
    position: relative;
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
    gap: 35px;
}


/* Círculo central */

.laser-tips__center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.laser-tips__center-circle {
    width: 245px;
    height: 245px;
    border-radius: 50%;
    background: #fff;
    border: 8px solid rgba(255, 255, 255, 0.6);
    box-shadow:
        0 0 0 3px #dca6da,
        0 12px 30px rgba(115, 70, 130, 0.12);

    display: flex;
    justify-content: center;
    align-items: center;

    color: #c58bcf;
    font-size: 78px;
}


/* Lista */

.laser-tips__items {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 28px;
}


/* Línea vertical decorativa */

.laser-tips__items::before {
    content: "";
    position: absolute;
    left: -35px;
    top: 48px;
    bottom: 48px;
    width: 2px;
    background: rgba(255, 255, 255, 0.9);
}


/* Cada consejo */

.laser-tip {
    position: relative;
    min-height: 90px;
    padding: 14px 25px 14px 74px;

    display: flex;
    align-items: center;

    background: linear-gradient(
        90deg,
        #c785d2 0%,
        #cd91d4 100%
    );

    border-radius: 50px;

    color: #fff;
}


/* Línea hacia la izquierda */

.laser-tip::before {
    content: "";
    position: absolute;
    width: 36px;
    height: 2px;
    background: #fff;
    left: -35px;
    top: 50%;
    transform: translateY(-50%);
}


/* Punto */

.laser-tip::after {
    content: "";
    position: absolute;
    left: -41px;
    top: 50%;
    transform: translateY(-50%);

    width: 13px;
    height: 13px;

    background: #545b91;
    border-radius: 50%;
}


/* Icono */

.laser-tip__icon {
    position: absolute;
    left: 9px;
    top: 50%;
    transform: translateY(-50%);

    width: 58px;
    height: 58px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: #fff;

    color: #555;
    font-size: 24px;

    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.25);
}


.laser-tip__text {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
}

.laser-tip__text span {
    display: block;
}


/* Pequeñas variaciones para darle un efecto similar al original */

.laser-tip:nth-child(1) {
    width: 75%;
}

.laser-tip:nth-child(2) {
    width: 94%;
    margin-left: 35px;
}

.laser-tip:nth-child(3) {
    width: 95%;
    margin-left: 55px;
}

.laser-tip:nth-child(4) {
    width: 92%;
    margin-left: 35px;
}

.laser-tip:nth-child(5) {
    width: 75%;
}


/* Responsive */

@media (max-width: 767px) {

    .laser-tips {
        padding: 50px 18px;
    }

    .laser-tips__title {
        margin-bottom: 35px;
    }

    .laser-tips__content {
        display: flex;
        flex-direction: column;
        gap: 35px;
    }

    .laser-tips__center-circle {
        width: 170px;
        height: 170px;
        font-size: 55px;
    }

    .laser-tips__items {
        width: 100%;
        gap: 18px;
    }

    .laser-tips__items::before,
    .laser-tip::before,
    .laser-tip::after {
        display: none;
    }

    .laser-tip,
    .laser-tip:nth-child(1),
    .laser-tip:nth-child(2),
    .laser-tip:nth-child(3),
    .laser-tip:nth-child(4),
    .laser-tip:nth-child(5) {
        width: 100%;
        margin-left: 0;
        box-sizing: border-box;
    }

    .laser-tip {
        min-height: 80px;
        padding: 12px 20px 12px 70px;
    }

    .laser-tip__icon {
        width: 50px;
        height: 50px;
        font-size: 21px;
    }

    .laser-tip__text {
        font-size: 16px;
    }
}