/* =========================================================
   PERFIL VIP - HEADER / ESTADO / DESCRIPCION
   ========================================================= */

#div_h1_amarillo{
    position: relative;
    text-align: left;
    padding: 34px 15px 18px 15px;
    border-bottom: 1px solid rgba(255,255,255,0.75);
    box-sizing: border-box;
}

#div_h1_amarillo .perfil-h1{
    position: relative;
    font-family: inherit;
    font-size: 22px;
    line-height: 1.1;
    margin: 0 0 18px 0;
    padding-right: 0;
    text-align: left;
    color: #fff;
}

#div_h1_amarillo .perfil-h1-nombre{
    display: block;
    font-weight: 750;
    letter-spacing: 0.2px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
}

#div_h1_amarillo .perfil-h1-meta{
    display: block;
    font-size: 11px;
    line-height: 1.35;
    margin-top: 6px;
    color: #F2F2F2;
    text-decoration: overline;
    font-weight: 400;
}

#div_h1_amarillo .perfil-h1-meta b{
    color: #42dd30;
    font-weight: 700;
}

/* =========================================================
   ESTADO NORMAL
   ========================================================= */

#div_h1_amarillo p.estado-perfil{
    font-family: inherit;
    font-size: 19px;
    line-height: 1.38;
    font-weight: 650;
    color: #fff;
    text-align: left;

    display: block;
    box-sizing: border-box;
    width: calc(100% + 30px);

    margin: 0 -15px;
    padding: 11px 15px 11px 18px;

    border-bottom: none;
    background: rgba(255,255,255,0.045);
    border-left: 3px solid #e60000;
    border-radius: 0;
}

/* =========================================================
   ESTADO DINAMICO
   ========================================================= */

#div_h1_amarillo p.estado-perfil-dinamico{
    position: relative;
    overflow: hidden;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,0.085),
            rgba(255,255,255,0.035)
        );

    box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.08),
        0 3px 12px rgba(0,0,0,0.18);
}

/* Mujer */
#div_h1_amarillo p.estado-perfil.estado-tipo-mujer{
    border-left-color: #e60000;
}

/* Hombre */
#div_h1_amarillo p.estado-perfil.estado-tipo-hombre{
    border-left-color: #168cff;
}

/* Trans */
#div_h1_amarillo p.estado-perfil.estado-tipo-trans{
    border-left-color: #b43cff;
}



#div_h1_amarillo p.estado-perfil-dinamico::after{
    content: "";
    position: absolute;
    top: 0;
    left: -70%;
    width: 45%;
    height: 100%;

    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.24),
        transparent
    );

    transform: skewX(-22deg);
    animation: brilloEstadoDinamico 4.2s ease-in-out infinite;
    pointer-events: none;
}

@keyframes brilloEstadoDinamico{
    0%{
        left: -70%;
    }

    45%{
        left: 125%;
    }

    100%{
        left: 125%;
    }
}

/* =========================================================
   FOTO PRINCIPAL
   ========================================================= */

#vp_main_pic{
    position: relative;
    overflow: hidden;
}

#vp_main_pic img{
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: auto;
}

/* =========================================================
   BADGE PROMO HOY
   ========================================================= */

#vp_main_pic .promo-foto-badge{
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 20;

    display: inline-flex;
    align-items: center;

    max-width: calc(50% - 18px);
    padding: 7px 10px;

    border: 1px solid rgba(255,255,255,0.30);
    border-radius: 6px;

    background: rgba(220,0,0,0.78);
    color: #fff;

    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-transform: uppercase;

    box-shadow: 0 3px 10px rgba(0,0,0,0.35);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

#vp_main_pic .promo-foto-badge span{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* =========================================================
   BADGE DISPONIBLE AHORA
   ========================================================= */

#vp_main_pic .disponible-foto-badge{
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 20;

    display: inline-flex;
    align-items: center;
    gap: 6px;

    max-width: calc(50% - 18px);
    padding: 7px 10px;

    border: 1px solid rgba(145,255,135,0.40);
    border-radius: 6px;

    background: rgba(24,135,17,0.78);
    color: #fff;

    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0.2px;
    text-transform: uppercase;

    box-shadow:
        0 3px 10px rgba(0,0,0,0.35),
        0 0 10px rgba(66,221,48,0.22);

    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

#vp_main_pic .disponible-foto-badge > span:last-child{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Punto verde animado */

#vp_main_pic .disponible-punto{
    position: relative;

    display: inline-block;
    flex: 0 0 auto;

    width: 8px;
    height: 8px;

    border-radius: 50%;
    background: #6aff59;

    box-shadow:
        0 0 0 2px rgba(255,255,255,0.18),
        0 0 8px rgba(106,255,89,0.95);
}

#vp_main_pic .disponible-punto::after{
    content: "";

    position: absolute;
    top: 50%;
    left: 50%;

    width: 8px;
    height: 8px;

    border: 2px solid rgba(106,255,89,0.75);
    border-radius: 50%;

    transform: translate(-50%, -50%);
    animation: pulsoDisponible 1.5s ease-out infinite;
}

@keyframes pulsoDisponible{
    0%{
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 1;
    }

    100%{
        transform: translate(-50%, -50%) scale(2.2);
        opacity: 0;
    }
}

/* =========================================================
   DESCRIPCION
   ========================================================= */

#vp_desc{
    padding: 22px 15px 24px 15px;
    box-sizing: border-box;
}

#vp_desc .perfil-desc-texto{
    font-family: inherit;
    font-size: 18px;
    line-height: 1.46;
    font-weight: 400;
    text-align: left;
    color: inherit;
    margin: 0;
}

/* =========================================================
   ESCRITORIO
   ========================================================= */

@media(min-width:769px){

    #div_h1_amarillo{
        padding: 34px 20px 20px 20px;
    }

    #div_h1_amarillo .perfil-h1{
        font-size: 2.2em;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    #div_h1_amarillo .perfil-h1-meta{
        font-size: 0.38em;
        line-height: 1.35;
        margin-top: 7px;
    }

    #div_h1_amarillo p.estado-perfil{
        font-size: 1.65em;
        line-height: 1.34;
        width: calc(100% + 40px);
        margin: 0 -20px;
        padding: 12px 20px 12px 23px;
        box-sizing: border-box;
    }



    #vp_main_pic .promo-foto-badge{
        top: 14px;
        left: 14px;
        padding: 8px 12px;
        font-size: 13px;
    }

    #vp_main_pic .disponible-foto-badge{
        top: 14px;
        right: 14px;
        padding: 8px 12px;
        font-size: 13px;
    }

    #vp_desc{
        padding: 22px 20px 24px 20px;
    }

    #vp_desc .perfil-desc-texto{
        font-size: 1.45em;
        line-height: 1.42;
    }
}