@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --gold: #d4af37;
    --gold-light: #ffd700;
    --gold-dark: #aa820a;
    --bg-dark: #0c0e12;
    --bg-card: #151821;
    --border-color: rgba(212, 175, 55, 0.25);
    --font-main: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    font-size: 14px;
}

body {
    background-color: var(--bg-dark) !important;
    color: #ffffff !important;
    font-family: var(--font-main) !important;
    padding-top: 75px !important;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
}

/* REGRA GERAL DE TEXTOS DA INTERFACE */
label, .form-label, .form-check-label, th, td, h1, h2, h3, h4, h5, h6, p, span {
    color: #ffffff !important;
}

/* FIX DEFINITIVO PARA LEGENDA E TEXTOS DE ORIENTAÇÃO (SEM LETRAS ESCURAS) */
.text-muted, small.text-muted, div.text-muted, .form-text {
    color: #cbd5e1 !important; /* Azul prateado claro, de altíssima legibilidade */
    opacity: 0.9 !important;
}

/* BOTÃO DE ANUNCIAR DOURADO */
.btn-gold, .btn-anunciar-modern {
    background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
    color: #000000 !important;
    font-weight: 800 !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 8px 18px !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4) !important;
    transition: all 0.25s ease-in-out !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none !important;
    white-space: nowrap;
}

.btn-gold:hover, .btn-anunciar-modern:hover {
    background: linear-gradient(135deg, #ffffff, var(--gold-light)) !important;
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.7) !important;
}

/* 1. CARROSSEL DE STORIES (AVATARES REDONDOS) */
.stories-container {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding: 10px 5px 15px 5px;
    scrollbar-width: none;
}

.stories-container::-webkit-scrollbar {
    display: none;
}

.story-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    flex-shrink: 0;
    width: 80px;
}

.story-avatar-ring {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
    transition: transform 0.25s ease;
}

.story-item:hover .story-avatar-ring {
    transform: scale(1.06);
}

.story-avatar-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #0c0e12;
}

.story-name {
    margin-top: 6px;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
}

/* 2. SLIDE VIP HORIZONTAL (Mosaico 3 Fotos) */
.vip-section-wrapper {
    margin-bottom: 25px;
}

.vip-carousel-box {
    width: 100%;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    background-color: #08090c;
}

.vip-mosaic-wrapper {
    display: flex;
    width: 100%;
    height: 360px;
    position: relative;
    overflow: hidden;
}

.vip-mosaic-item {
    flex: 1;
    height: 100%;
    position: relative;
    overflow: hidden;
    border-right: 2px solid rgba(212, 175, 55, 0.3);
}

.vip-mosaic-item:last-child {
    border-right: none;
}

.vip-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.vip-caption-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 25px;
    background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.4) 70%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* 3. GRADE DE CARDS DAS ACOMPANHANTES */
.escort-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
    gap: 16px;
}

.card-escort {
    background-color: var(--bg-card) !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 10px !important;
    overflow: hidden;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
}

.card-escort:hover {
    transform: translateY(-4px);
    border-color: var(--gold) !important;
    box-shadow: 0 8px 22px rgba(212, 175, 55, 0.3);
}

.card-escort-img-box {
    position: relative;
    width: 100%;
    height: 260px;
    overflow: hidden;
    background-color: #050608;
}

.card-escort-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.3s ease;
}

.card-escort:hover .card-escort-img {
    transform: scale(1.05);
}

.card-escort-info {
    padding: 12px !important;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
    background-color: #12141c;
}

.card-escort-name {
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 2px;
}

.card-escort-location {
    font-size: 0.82rem !important;
    color: #e2e8f0 !important;
    font-weight: 500;
}

.card-escort-location i {
    color: var(--gold) !important;
}

.badge-vip {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
    color: #000000 !important;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
}

/* BADGES ONLINE / OFFLINE PISCANDO NO CARD */
.status-badge-box {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(10, 12, 16, 0.88);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 4px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.70rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 10;
    line-height: 1;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

/* ONLINE (VERDE) */
.status-online {
    color: #10b981 !important;
}
.status-online .status-dot {
    background-color: #10b981;
    box-shadow: 0 0 6px #10b981;
    animation: pulse-green-dot 1.5s infinite ease-in-out;
}

/* OFFLINE (VERMELHO) */
.status-offline {
    color: #ef4444 !important;
}
.status-offline .status-dot {
    background-color: #ef4444;
    box-shadow: 0 0 6px #ef4444;
    animation: pulse-red-dot 1.5s infinite ease-in-out;
}

/* ANIMAÇÕES DE PULSO DAS BOLINHAS */
@keyframes pulse-green-dot {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.8);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

@keyframes pulse-red-dot {
    0% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.8);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
    }
    100% {
        transform: scale(0.9);
        box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
    }
}

/* 4. ÍCONE OFICIAL FLUTUANTE DO WHATSAPP */
.whatsapp-official-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 2px 5px 15px rgba(0, 0, 0, 0.4);
    z-index: 9999;
    text-decoration: none !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.whatsapp-official-float:hover {
    background-color: #20ba5a;
    transform: scale(1.1);
    box-shadow: 2px 8px 20px rgba(37, 211, 102, 0.6);
    color: #ffffff !important;
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 768px) {
    .vip-carousel-box, .vip-mosaic-wrapper { height: 250px !important; }
    .card-escort-img-box { height: 230px; }
    .escort-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
}

@media (max-width: 576px) {
    .whatsapp-official-float {
        width: 52px;
        height: 52px;
        font-size: 30px;
        bottom: 20px;
        right: 20px;
    }
}