.tinder-hero{
    position:relative;
    border-radius:28px;
    overflow:hidden;
    margin-bottom:16px;
}

.tinder-img{
    width:100%;
    max-width:480px;
    aspect-ratio:3/4;
    object-fit:cover;
    display:block;
    transition:transform .6s ease;
}

.tinder-hero:hover .tinder-img{
}

.tinder-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:24px;
    color:white;
    background:linear-gradient(transparent, rgba(0,0,0,.85));
}

.badge-online{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:6px 12px;
    border-radius:999px;
    background:rgba(0,0,0,.35);
    font-size:12px;
}

.hook{
    text-align:center;
    font-weight:900;
    margin:20px 0;
    font-size:18px;
}

.reasons,
.card{
    background:rgba(255,255,255,.92);

    box-shadow:0 10px 30px rgba(0,0,0,.06);
}

/* chat preview más real */
.chat-preview{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin:20px 0;
}

.chat-preview .bubble{
    padding:12px 14px;
    border-radius:18px;
    max-width:75%;
    font-size:14px;
    animation:fadeIn .3s ease;
}

.chat-preview .bot{
    background:#fff;
    align-self:flex-start;
}

.chat-preview .me{
    background:#4f46e5;
    color:white;
    align-self:flex-end;
}

.tinder-actions{
    position:sticky;
    bottom:0;

    z-index:20;

    padding:12px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(14px);

    border-top:1px solid #e2e8f0;
}

.tinder-cta-card{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:12px;
}

.cta-title{
    font-weight:900;
}

.cta-sub{
    font-size:12px;
    color:#64748b;
}

.btn-like{
    background:linear-gradient(135deg,#ec4899,#f43f5e);
    color:white;
    padding:12px 16px;
    border-radius:16px;
    font-weight:900;
    text-decoration:none;
}

.gallery-main{
    width:100%;
    position:relative;
}

.gallery-thumbs{
    display:flex;
    gap:10px;
    overflow-x:auto;
    margin-top:12px;
    padding-bottom:10px;
}

.gallery-thumb{
    width:80px;
    height:100px;
    object-fit:cover;
    border-radius:14px;
    cursor:pointer;
    border:2px solid transparent;
    flex-shrink:0;
    transition:.2s;
}

.gallery-thumb:hover{
    border-color:#ec4899;
}


.personaje-page{
    padding-bottom:120px;
}

@media (max-width: 768px){

    .personaje-page{
        padding-bottom:120px;
    }

    .tinder-actions{
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        z-index:999;
    }

}

.personaje-content{
    display:block;
    padding:20px;
}

.personaje-content h2{
    margin:24px 0 12px;
    line-height:1.3;
}

.personaje-content p{
    margin:0 0 14px;
    line-height:1.6;
}

.faq p{
    margin-bottom:18px;
}