@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

:root {
    --neon-pink: #ff007f;
    --neon-purple: #9d00ff;
    --dark-bg: #0a0a0a;
    --card-bg: #151515;
    --glow-pink: 0 0 20px rgba(255, 0, 127, 0.5);
    --glow-purple: 0 0 20px rgba(157, 0, 255, 0.5);
}

* {
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
}

        body {
            font-family: 'Rajdhani', sans-serif;
            background: var(--dark-bg);
            color: #ffffff;
            padding-top: 140px; /* Barra faturamento 52px + header 88px */
            padding-bottom: 90px;
            overflow-x: hidden;
        }

/* Cyberpunk Background Grid */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 0, 127, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(157, 0, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Neon Glow Effects */
.neon-text {
    text-shadow: 0 0 10px var(--neon-pink), 0 0 20px var(--neon-pink);
}

/* ── Header: centrar logo com posição absoluta ─────────────────── */

/* O contentor flex precisa de position: relative para ancorar o logo */
.header-flex-row {
    position: relative;
}

/*
 * Logo absolutamente centrado no ecrã, independente da largura
 * dos elementos à esquerda (saldo) e à direita (controlos).
 * pointer-events: none evita bloquear cliques nos laterais.
 */
.header-logo-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    white-space: nowrap;
    pointer-events: none;
    z-index: 1;
}

/* Reativar eventos para o próprio texto do logo */
.header-logo-center > * {
    pointer-events: auto;
}

/* Em ecrãs muito estreitos (<360px) esconde o subtítulo e reduz fonte */
@media (max-width: 360px) {
    .header-logo-center p    { display: none; }
    .header-logo-center h1   { font-size: 1.25rem; }
    .logo-x                  { font-size: 1.45em; }
}

/* ── Logótipo RESERVADO X — X Premium ─────────────────────────── */
.logo-heading {
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
    gap: 0;
}

.logo-x {
    font-size: 1.72em;           /* ~1.7× o tamanho de 'RESERVADO' */
    line-height: 0.82;           /* impede que o X estique a linha */
    margin-left: 5px;            /* separação visual do 'O' */
    display: inline-block;
    text-shadow:
        0 0 12px var(--neon-pink),
        0 0 28px var(--neon-pink),
        0 0 55px rgba(255, 0, 127, 0.55),
        0 0 90px rgba(255, 0, 127, 0.25);
    transition: text-shadow 0.3s ease;
}

/* Efeito de hover no logótipo — pulso suave */
.logo-heading:hover .logo-x {
    text-shadow:
        0 0 16px var(--neon-pink),
        0 0 36px var(--neon-pink),
        0 0 70px rgba(255, 0, 127, 0.7),
        0 0 120px rgba(255, 0, 127, 0.35);
}

/* Mobile padrão: ligeira redução */
@media (max-width: 400px) {
    .logo-x { font-size: 1.5em; margin-left: 3px; }
}

/* [S-04 FIX] .neon-border removida ? n?o existe nenhum elemento com esta classe no HTML. */

.neon-purple-border {
    box-shadow: 0 0 10px rgba(157, 0, 255, 0.3), inset 0 0 10px rgba(157, 0, 255, 0.1);
    border: 1px solid rgba(157, 0, 255, 0.5);
}

h1, h2, h3, .brand-font {
    font-family: 'Orbitron', sans-serif;
}

/* [M-06 FIX] .section consolidada numa s? defini??o (ver abaixo, pr?ximo de .section.active).
   Esta regra parcial foi removida para evitar conflito com a defini??o principal. */

/* Cards Cyberpunk */
.cyber-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 127, 0.1), transparent);
    transition: 0.5s;
}

.cyber-card:hover::before {
    left: 100%;
}

/* ==========================================
   CAMPANHA DE LANÇAMENTO — Banner Premium
   ========================================== */
.launch-promo-banner {
    width: 100%;
    max-width: 100%;
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.4) 0%, rgba(255, 0, 127, 0.4) 50%, rgba(157, 0, 255, 0.4) 100%);
    background-size: 200% 200%;
    animation: promoGradientShift 4s ease infinite;
    border: 2px solid rgba(255, 0, 127, 0.6);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.4), 0 0 60px rgba(157, 0, 255, 0.2);
}

.launch-promo-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    pointer-events: none;
    animation: promoShine 3s ease-in-out infinite;
}

@keyframes promoShine {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

@keyframes promoGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.launch-promo-content {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.launch-promo-icon {
    font-size: 3rem;
    line-height: 1;
    filter: drop-shadow(0 0 10px rgba(255, 0, 127, 0.8));
}

.launch-promo-text {
    flex: 1;
}

.launch-promo-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(255, 0, 127, 0.8);
    margin-bottom: 0.35rem;
}

.launch-promo-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.launch-promo-free {
    color: var(--neon-pink);
    text-shadow: 0 0 15px var(--neon-pink);
}

.launch-promo-days {
    color: #ffd700;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.7);
}

/* ── Contador dinâmico da campanha ─────────────────────────────── */
.lp-counter-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.lp-counter-num {
    font-family: 'Orbitron', monospace;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.02em;
    text-shadow: 0 0 16px rgba(255, 215, 0, 0.6);
}

.lp-counter-sep {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.lp-counter-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    align-self: center;
}

.lp-slots-left {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 700;
    color: #63ffbe;
    background: rgba(99, 255, 190, 0.12);
    border: 1px solid rgba(99, 255, 190, 0.3);
    border-radius: 999px;
    padding: 2px 10px;
    white-space: nowrap;
}

/* Quando a campanha está esgotada */
.lp-slots-left.full {
    color: #fca5a5;
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

/* ── Barra de progresso ─────────────────────────────────────────── */
.lp-progress-track {
    height: 8px;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 999px;
    margin-top: 0.65rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.lp-progress-fill {
    height: 100%;
    width: 0%;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffd700, var(--neon-pink), var(--neon-purple));
    background-size: 200% 100%;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    animation: lp-shimmer 2.5s linear infinite;
    position: relative;
}

.lp-progress-fill::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 24px; height: 100%;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    filter: blur(4px);
    animation: lp-glow-tip 2.5s linear infinite;
}

@keyframes lp-shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes lp-glow-tip {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1; }
}

/* Banner quando campanha esgotada */
.launch-promo-banner.lp-full {
    background: linear-gradient(135deg, rgba(80,80,80,0.4) 0%, rgba(50,50,50,0.4) 100%);
    border-color: rgba(255,255,255,0.15);
    box-shadow: none;
    animation: none;
}

/* Mobile */
@media (max-width: 480px) {
    .lp-counter-num { font-size: 1.3rem; }
    .lp-slots-left  { margin-left: 0; }
    .lp-counter-row { gap: 0.35rem; }
}

/* ==========================================
   SECÇÃO AFILIADOS — Gaming/Tech Premium
   ========================================== */
.affiliate-section {
    border-color: rgba(0, 255, 255, 0.2);
}

.affiliate-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #00ffff;
    text-align: center;
    margin-bottom: 1.25rem;
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.affiliate-icon {
    font-size: 2.25rem;
    filter: drop-shadow(0 0 12px rgba(0, 255, 255, 0.7));
}

.affiliate-bubble {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.08) 0%, rgba(157, 0, 255, 0.08) 100%);
    border: 2px solid rgba(0, 255, 255, 0.4);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.15), inset 0 0 20px rgba(0, 255, 255, 0.05);
}

.affiliate-commission {
    color: #00ffff;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

.affiliate-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.affiliate-stat {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.affiliate-stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.affiliate-stat-crd {
    color: #fbbf24;
    text-shadow: 0 0 15px rgba(251, 191, 36, 0.6);
}

.affiliate-stat-refs {
    color: #00ffff;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.6);
}

.affiliate-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.affiliate-link-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.affiliate-link-input {
    width: 100%;
    padding: 1rem 1.25rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid var(--neon-pink);
    border-radius: 12px;
    color: var(--neon-pink);
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.05em;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.3);
}

.affiliate-link-input:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.4);
}

.affiliate-copy-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 0.08em;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2) 0%, rgba(157, 0, 255, 0.2) 100%);
    border: 2px solid #00ffff;
    border-radius: 12px;
    color: #00ffff;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.affiliate-copy-btn:hover {
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.3) 0%, rgba(157, 0, 255, 0.3) 100%);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

@media (max-width: 400px) {
    .launch-promo-content { flex-direction: column; text-align: center; }
    .launch-promo-title { font-size: 1.25rem; }
    .affiliate-stats-grid { grid-template-columns: 1fr; }
}

/* Cart?o Fidelidade Cyberpunk */
.loyalty-card {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 2px solid var(--neon-pink);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--glow-pink);
    position: relative;
    overflow: hidden;
}

/* ?CONE SMARTPHONE PISCANDO */
.smartphone-hint {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    border-radius: 12px;
    padding: 12px;
    animation: hintGlow 2s ease-in-out infinite;
}

.smartphone-icon {
    position: relative;
    font-size: 24px;
    color: #00ff88;
}

.scanner-beam {
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid #00ff88;
    border-radius: 6px;
    animation: beamPulse 1.5s ease-in-out infinite;
    opacity: 0.7;
}

.hint-text {
    display: flex;
    flex-direction: column;
}

.hint-main {
    color: #00ff88;
    font-size: 14px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

.hint-sub {
    color: #00ff88;
    font-size: 10px;
    opacity: 0.8;
}

@keyframes hintGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
}

@keyframes beamPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
}

/* Selos de Fidelidade */
.stamp-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border: 2px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-size: 14px;
    font-weight: bold;
    color: #666;
}

.stamp-circle:hover {
    border-color: var(--neon-pink);
    transform: scale(1.1);
}

.stamp-circle.filled {
    background: linear-gradient(135deg, var(--neon-pink) 0%, #ff1493 100%);
    border-color: var(--neon-pink);
    color: white;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
    animation: stampGlow 2s ease-in-out infinite alternate;
}

@keyframes stampGlow {
    from { box-shadow: 0 0 20px rgba(255, 0, 127, 0.6); }
    to { box-shadow: 0 0 30px rgba(255, 0, 127, 1); }
}

.stamp-number {
    font-size: 12px;
    font-weight: bold;
}

.loyalty-card::after {
    content: 'RX';
    position: absolute;
    bottom: -10px;
    right: 10px;
    font-size: 60px;
    opacity: 0.05;
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
}

.stamp {
    width: 32px;
    height: 32px;
    border: 2px dashed rgba(255, 0, 127, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.3s;
    font-size: 14px;
    background: rgba(0,0,0,0.5);
}

.stamp.fill {
    background: linear-gradient(135deg, var(--neon-pink) 0%, var(--neon-purple) 100%);
    border-color: var(--neon-pink);
    color: white;
    box-shadow: 0 0 15px var(--neon-pink);
    font-weight: bold;
}

/* Sistema N?veis Neon */
.level-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Orbitron', sans-serif;
}

.lvl-bronze {
    background: linear-gradient(135deg, #cd7f32, #8b4513);
    color: white;
    box-shadow: 0 0 10px rgba(205, 127, 50, 0.5);
}
.lvl-silver {
    background: linear-gradient(135deg, #c0c0c0, #808080);
    color: #000;
    box-shadow: 0 0 10px rgba(192, 192, 192, 0.5);
}
.lvl-gold {
    background: linear-gradient(135deg, #ffd700, #ff8c00);
    color: #000;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}
.lvl-platinum {
    background: linear-gradient(135deg, #e5e4e0, #9d00ff);
    color: #fff;
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.5);
    border: 1px solid rgba(255,255,255,0.3);
}

/* [S-04 FIX] .lvl-partner removida ? n?o existe nenhum elemento com esta classe no HTML. */

/* Dropdowns Cyberpunk */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(21, 21, 21, 0.98);
    border: 1px solid rgba(255, 0, 127, 0.3);
    border-radius: 12px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
    z-index: 100;
    margin-top: 8px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.dropdown.show {
    max-height: 350px;
    overflow-y: auto;
}

.dropdown-item {
    padding: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ccc;
    transition: all 0.2s;
}

.dropdown-item:hover {
    background: rgba(255, 0, 127, 0.1);
    color: var(--neon-pink);
    padding-left: 20px;
}

.dropdown-item.active {
    background: linear-gradient(90deg, rgba(255, 0, 127, 0.2), transparent);
    color: var(--neon-pink);
    border-left: 3px solid var(--neon-pink);
}

/* [S-04 FIX] .cat-icon + ::before + :hover removidas ? renderDirectory() usa
   .dir-cat-icon (emoji-based), n?o esta classe. Nenhum elemento no HTML usa .cat-icon. */

/* Diret?rio de Categorias - Cards Premium */
.category-card {
    border-radius: 16px;
    padding: 16px 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(circle at top left, rgba(255, 0, 127, 0.08), transparent 55%),
                radial-gradient(circle at bottom right, rgba(157, 0, 255, 0.08), transparent 55%),
                rgba(10, 10, 10, 0.9);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle, rgba(255, 0, 127, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none; /* nunca intercepta cliques dos pills */
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 0, 127, 0.6);
    box-shadow: 0 16px 40px rgba(255, 0, 127, 0.2);
}

.category-card:hover::before {
    opacity: 1;
}

.category-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at 30% 0%, rgba(255, 255, 255, 0.25), transparent 55%),
                linear-gradient(135deg, rgba(255, 0, 127, 0.6), rgba(157, 0, 255, 0.6));
    color: #ffffff;
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.6);
    flex-shrink: 0;
}

.category-icon i {
    font-size: 18px;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.category-pill {
    -webkit-appearance: none;
    appearance: none;
    position: relative;   /* garante z-index local e que ::before n?o interfere */
    z-index: 1;
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 5px 13px;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    /* fundo neon-pink claramente distinto do card escuro */
    background: rgba(255, 0, 127, 0.16);
    border: 1px solid rgba(255, 0, 127, 0.5);
    color: #ffffff;
    cursor: pointer;
    white-space: nowrap;
    -webkit-user-select: none;
    user-select: none;
    transition:
        background   0.18s ease,
        border-color 0.18s ease,
        box-shadow   0.18s ease,
        transform    0.12s ease;
}

.category-pill:hover,
.category-pill:focus-visible {
    background: rgba(255, 0, 127, 0.35);
    border-color: #ff007f;
    color: #ffffff;
    box-shadow: 0 0 12px rgba(255, 0, 127, 0.6), inset 0 0 8px rgba(255, 0, 127, 0.15);
    transform: translateY(-2px) scale(1.04);
    outline: none;
}

.category-pill:active {
    transform: translateY(0) scale(0.97);
    box-shadow: 0 0 6px rgba(255, 0, 127, 0.4);
}

/* =============================================
   GRELHA DE AN?NCIOS ? PORTAL DE ELITE (CLASSIFIEDS X)
   ============================================= */

/* Contentor ? cards grandes premium; minmax(400px) garante impacto visual */
#ads-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 24px;
    padding: 4px;
}

/* Mobile: 1 coluna ? ecr?s pequenos (?439px) */
@media (max-width: 439px) {
    #ads-list { grid-template-columns: 1fr; }
}

/* [A-06 FIX] Tablets e telem?veis em paisagem (440?799px):
   minmax(400px) causava overflow horizontal nesta gama.
   For?ar 1 coluna garante que os cards cabem sem scroll lateral. */
@media (min-width: 440px) and (max-width: 799px) {
    #ads-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ??? CARD ? CONTENTOR PREMIUM ???????????????????????????? */
.ad-card {
    /* Gradiente radial sutil no topo + fundo escuro para texto branco/neon leg?vel */
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 0, 127, 0.07) 0%, transparent 60%),
        linear-gradient(180deg, #161616 0%, #0c0c0c 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    width: 100%;
    max-width: 450px;   /* ret?ngulo vertical imponente */
    margin: 0 auto;     /* centrado na c?lula da grelha */
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.ad-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75), 0 0 32px rgba(255, 0, 127, 0.16);
    border-color: rgba(255, 0, 127, 0.42);
}

.ad-card.vip {
    border-color: rgba(255, 215, 0, 0.3);
    background:
        radial-gradient(ellipse at 50% 0%, rgba(255, 215, 0, 0.06) 0%, transparent 60%),
        linear-gradient(180deg, #181400 0%, #0c0c00 100%);
}
.ad-card.vip:hover {
    border-color: rgba(255, 215, 0, 0.65);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.75), 0 0 32px rgba(255, 215, 0, 0.22);
}

.ad-card.online-partner { border-color: rgba(255, 0, 127, 0.5); }

/* ??? BLOCO DE IMAGEM ? Grande impacto (650px) ??????????? */
.ad-card-img-wrap {
    position: relative;
    height: 650px;
    overflow: hidden;
    flex-shrink: 0;
}

.ad-card-image {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: top;   /* foca no rosto/corpo */
    display: block;
    transition: transform 0.42s ease;
}

.ad-card:hover .ad-card-image { transform: scale(1.04); }

/* Gradiente profundo no fundo da imagem ? transi??o suave para o corpo do card */
.ad-card-img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 160px;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.5) 45%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* BADGES SOBREPOSTOS ? top-left */
.ad-card-overlay-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    z-index: 3;
}

.ad-badge-online {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 190, 75, 0.93);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0,190,75,0.45);
}
.ad-badge-online i { font-size: 7px; animation: pulse 1.6s infinite; }

.ad-badge-vip {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(255, 200, 0, 0.93);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(255,200,0,0.45);
}

/* PRE?O SOBREPOSTO ? bottom-right, acima do gradiente */
.ad-card-price-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(0, 0, 0, 0.82);
    color: #ff007f;
    font-size: 14px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 10px;
    border: 1px solid rgba(255, 0, 127, 0.5);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    line-height: 1.2;
}
.ad-card-price-badge small {
    font-size: 9px;
    font-weight: 500;
    opacity: 0.72;
    margin-left: 2px;
}

/* ??? CORPO DO CARD ??????????????????????????????????? */
.ad-card-body {
    padding: 18px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ad-card-name {
    font-size: 22px;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0 0 6px;
    line-height: 1.2;
    letter-spacing: 0.01em;
}

/* Linha: cidade + categoria */
.ad-card-meta {
    font-size: 11px;
    color: #9ca3af;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    margin: 0 0 10px;
}

.ad-card-cat-tag {
    background: rgba(157, 0, 255, 0.18);
    border: 1px solid rgba(157, 0, 255, 0.35);
    color: #c084fc;
    padding: 2px 8px;
    border-radius: 999px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    flex-shrink: 0;
}

/* ??? TELEFONE ? destaque neon ??????????????????????? */
.ad-card-phone {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 14px 0 16px;
    margin-bottom: 16px;
    border-top: 1px solid rgba(255, 0, 127, 0.15);
    border-bottom: 1px solid rgba(255, 0, 127, 0.15);
}

.ad-card-phone-label {
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 6px;
}

.ad-card-phone-number {
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: #ff007f;
    text-decoration: none;
    text-shadow:
        0 0 14px rgba(255, 0, 127, 0.7),
        0 0 28px rgba(255, 0, 127, 0.35);
    transition: color 0.2s ease, text-shadow 0.2s ease;
    line-height: 1.2;
}

.ad-card-phone-number:hover {
    color: #ff55aa;
    text-shadow:
        0 0 20px rgba(255, 0, 127, 1),
        0 0 40px rgba(255, 0, 127, 0.6),
        0 0 60px rgba(255, 0, 127, 0.25);
}

/* ══ OVERLAY NOME/IDADE/CIDADE — fundo do card sobre a foto ══════ */
.ad-card-img-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 10px 14px 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    pointer-events: none;
}
.ad-card-img-name {
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
    text-shadow: 0 1px 6px rgba(0,0,0,0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ad-card-img-age {
    font-weight: 600;
    font-size: 15px;
    opacity: 0.9;
}
.ad-card-img-city {
    color: rgba(255,255,255,0.75);
    font-size: 11px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.8);
    letter-spacing: 0.03em;
}

/* ══ TELEFONE CTA — bloco verde destacado, primeiro no corpo ══════ */
.ad-card-phone-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #25D366;
    border: 2px solid rgba(37,211,102,0.6);
    border-radius: 14px;
    padding: 14px 18px;
    color: #ffffff;
    font-size: 19px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-decoration: none;
    margin-bottom: 14px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4);
    animation: phone-pulse 2.4s ease-in-out infinite;
}
.ad-card-phone-cta i {
    font-size: 17px;
    flex-shrink: 0;
}
.ad-card-phone-cta:hover {
    transform: translateY(-2px);
    background: #1ebe57;
    box-shadow: 0 8px 28px rgba(37,211,102,0.65);
    color: #fff;
    animation: none;
}
@keyframes phone-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
    50%       { box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 0 0 8px rgba(37,211,102,0); }
}

/* ══ VIP — borda dourada no card completo ════════════════════════ */
.vip-gold-border {
    border: 2px solid #ffd700 !important;
    box-shadow:
        0 0 0 1px rgba(255,215,0,0.15),
        0 4px 24px rgba(255,200,0,0.18),
        var(--card-shadow, 0 2px 16px rgba(0,0,0,0.6)) !important;
}
.vip-gold-border .ad-card-img-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(to bottom, rgba(255,215,0,0.06) 0%, transparent 35%);
    z-index: 1;
    pointer-events: none;
}

/* ══ DESCRIÇÃO — texto completo (card com espaço de sobra) ═══════ */
.ad-description {
    font-size: 13px;
    line-height: 1.7;
    color: #b0b7c3;
    margin: 0 0 16px;
}

/* ??? ETIQUETAS DE CARACTER?STICAS ??????????????? */
.ad-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
}

.ad-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: #d1d5db;
    white-space: nowrap;
}
.ad-tag i { font-size: 9px; opacity: 0.8; }
.ad-tag.tag-age   { border-color: rgba(251,191,36,0.3); color: #fbbf24; background: rgba(251,191,36,0.08); }
.ad-tag.tag-nat   { border-color: rgba(96,165,250,0.3); color: #93c5fd; background: rgba(96,165,250,0.08); }
.ad-tag.tag-views { border-color: rgba(167,139,250,0.3); color: #a78bfa; background: rgba(167,139,250,0.08); }
.ad-tag.tag-svc   { border-color: rgba(52,211,153,0.3); color: #6ee7b7; background: rgba(52,211,153,0.08); }

/* ??? DIVISOR + BOT?ES DE AC??O ?????????????????? */
.ad-card-footer {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Bot?o principal: WhatsApp (destaque) */
.ad-btn-wa-main {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    flex: 1;
    justify-content: center;
    background: linear-gradient(135deg, #1fbe5c, #128C7E);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 10px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
}
.ad-btn-wa-main:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

/* Bot?es secund?rios: ?cones redondos */
.ad-icon-btn {
    -webkit-appearance: none;
    appearance: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06);
    color: #d1d5db;
    cursor: pointer;
    font-size: 14px;
    text-decoration: none;
    flex-shrink: 0;
    transition: background 0.15s ease, border-color 0.15s ease,
                transform 0.15s ease, box-shadow 0.15s ease;
}
.ad-icon-btn:hover { transform: scale(1.15); }

.ad-btn-chat {
    background: rgba(157, 0, 255, 0.14);
    border-color: rgba(157, 0, 255, 0.42);
    color: #c084fc;
}
.ad-btn-chat:hover {
    background: rgba(157, 0, 255, 0.3);
    border-color: #9d00ff;
    box-shadow: 0 0 12px rgba(157, 0, 255, 0.42);
}

.ad-btn-call {
    background: rgba(255, 0, 85, 0.14);
    border-color: rgba(255, 0, 85, 0.42);
    color: #ff5577;
}
.ad-btn-call:hover {
    background: rgba(255, 0, 85, 0.3);
    border-color: #ff0055;
    box-shadow: 0 0 12px rgba(255, 0, 85, 0.42);
}

.ad-btn-qr {
    background: rgba(0, 255, 136, 0.1);
    border-color: rgba(0, 255, 136, 0.35);
    color: #00ff88;
}
.ad-btn-qr:hover {
    background: rgba(0, 255, 136, 0.24);
    border-color: #00ff88;
    box-shadow: 0 0 12px rgba(0, 255, 136, 0.42);
}

.ad-btn-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Compatibilidade: manter .ad-btn-wa para outros usos legados */
.ad-btn-wa {
    background: rgba(37, 211, 102, 0.14);
    border-color: rgba(37, 211, 102, 0.42);
    color: #25D366;
}
.ad-btn-wa:hover {
    background: rgba(37, 211, 102, 0.3);
    border-color: #25D366;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.42);
}

/* =============================================
   SMART HEADER ? HIDE ON SCROLL
   ============================================= */

/* Revenue bar (topo absoluto) */
#revenue-slim-bar {
    transition: transform 0.30s ease-in-out;
    will-change: transform;
}
#revenue-slim-bar.header-hidden {
    transform: translateY(-100%);
}

/* Main header (t?tulo + pesquisa) ? posicionado a 52px do topo */
header {
    transition: transform 0.30s ease-in-out;
    will-change: transform;
}
header.header-hidden {
    /* translateY(-100%) sobe pelo pr?prio height;
       o extra -52px garante que sai completamente do viewport
       mesmo estando offset de 52px do topo */
    transform: translateY(calc(-100% - 52px));
}

/* =============================================
   PERFIL DO AN?NCIO ? LAYOUT DOIS COLUNAS PREMIUM
   ============================================= */

.perfil-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding-bottom: 60px;
}

/* BOT?O VOLTAR */
.perfil-back-btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    margin-bottom: 20px;
    border-radius: 999px;
    border: 1px solid rgba(255, 0, 127, 0.42);
    background: rgba(255, 0, 127, 0.08);
    color: #ff007f;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.perfil-back-btn:hover {
    background: rgba(255, 0, 127, 0.18);
    border-color: #ff007f;
    transform: translateX(-3px);
}

/* GRID DOIS COLUNAS: 60% imagem | 40% sidebar */
.perfil-layout {
    display: grid;
    grid-template-columns: 60fr 40fr;
    gap: 24px;
    align-items: start;
}

/* ?? COLUNA ESQUERDA: IMAGEM ?? */
.perfil-image-col { position: relative; }

/* Wrapper da imagem principal */
.perfil-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 10px;
}

/* IMAGEM MONUMENTAL ? 900px no desktop */
.perfil-main-img {
    width: 100%;
    height: 900px;          /* 3? a altura de um card da montra */
    object-fit: cover;
    object-position: top;   /* foco no rosto/corpo */
    display: block;
    transition: transform 0.42s ease;
}
.perfil-img-wrap:hover .perfil-main-img { transform: scale(1.02); }

/* Badges sobrepostos top-left da imagem */
.perfil-img-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

/* GALERIA DE MINIATURAS */
.perfil-gallery {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 0 6px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 0, 127, 0.4) transparent;
}

.perfil-gallery-thumb {
    -webkit-appearance: none;
    appearance: none;
    flex-shrink: 0;
    width: 80px;
    height: 104px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.1);
    cursor: pointer;
    padding: 0;
    background: #111;
    transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.perfil-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}
.perfil-gallery-thumb:hover,
.perfil-gallery-thumb.active {
    border-color: #ff007f;
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(255, 0, 127, 0.5);
}

/* ══ NOME ÚNICO: mobile-name (antes da foto) vs desktop-name (sidebar) ══ */
/* Mobile: mostra o bloco da coluna esquerda, oculta o da sidebar */
.perfil-mobile-name  { display: block; margin-bottom: 16px; }
.perfil-desktop-name { display: none;  }
/* Desktop: oculta o bloco da coluna esq, mostra o da sidebar */
@media (min-width: 769px) {
    .perfil-mobile-name  { display: none;  }
    .perfil-desktop-name { display: block; margin-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,0.08); padding-bottom: 14px; }
}

/* Badges do hero header */
.perfil-hero-badges { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 8px; }

/* ══ COLUNA DIREITA: sidebar — sticky limpo sem scroll interno ════ */
.perfil-sidebar {
    position: sticky;
    top: 70px;   /* apenas abaixo do header fixo (~60px) + folga */
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 14px;
    /* sem max-height nem overflow-y — o scroll da página é suficiente */
}

/* Nome e metadados */
.perfil-sidebar-header {
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 14px;
}

.perfil-name {
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin: 0 0 5px;
    letter-spacing: -0.01em;
}

.perfil-subtitle {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    line-height: 1.4;
}

.perfil-status-badges { display: flex; gap: 8px; flex-wrap: wrap; }

/* Pre?o em neon */
.perfil-sidebar-price {
    font-size: 26px;
    font-weight: 900;
    color: #ff007f;
    text-shadow: 0 0 14px rgba(255,0,127,0.5);
    line-height: 1.1;
}
.perfil-sidebar-price small {
    font-size: 11px;
    font-weight: 500;
    color: #6b7280;
    text-shadow: none;
    margin-left: 4px;
}

/* WHATSAPP ? BOT?O GRANDE E VERDE (CTA PRINCIPAL) */
.perfil-wa-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(34,197,94,0.42);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.perfil-wa-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(34,197,94,0.58);
}
.perfil-wa-big i         { font-size: 26px; }
.perfil-wa-big-label     { font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; }
.perfil-wa-big-number    { font-size: 12px; opacity: 0.85; font-variant-numeric: tabular-nums; }

/* ══ TELEFONE HERO — número grande/verde no topo da sidebar ══════ */
.perfil-phone-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    width: 100%;
    padding: 20px 24px;
    margin-bottom: 12px;
    background: #25D366;
    border: 2px solid rgba(37,211,102,0.55);
    border-radius: 18px;
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    box-shadow: 0 6px 28px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: phone-pulse-hero 2.4s ease-in-out infinite;
}
.perfil-phone-hero:hover {
    transform: translateY(-3px) scale(1.01);
    background: #1ebe57;
    box-shadow: 0 12px 40px rgba(37,211,102,0.70);
    color: #fff;
    animation: none;
}
@keyframes phone-pulse-hero {
    0%, 100% { box-shadow: 0 6px 28px rgba(37,211,102,0.55), 0 0 0 0 rgba(37,211,102,0.35); }
    50%       { box-shadow: 0 6px 28px rgba(37,211,102,0.55), 0 0 0 10px rgba(37,211,102,0); }
}
.perfil-phone-hero i {
    font-size: 26px;
    flex-shrink: 0;
}
.perfil-phone-hero-number {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.07em;
    font-variant-numeric: tabular-nums;
}

/* ── Sem telefone — aviso para a modelo completar perfil ──────── */
.perfil-phone-missing {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: #6b7280;
    font-size: 13px;
}
.perfil-phone-missing i { font-size: 16px; opacity: 0.6; flex-shrink: 0; }

/* ── Linha de contactos secundários (WhatsApp compact + SMS) ────── */
.perfil-contacts-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    margin-bottom: 16px;
}
.perfil-wa-compact {
    flex-direction: row !important;
    gap: 8px !important;
    padding: 12px 16px !important;
    justify-content: center;
}
.perfil-wa-compact i { font-size: 20px !important; }

/* TELEFONE + SMS — botões secundários (mantidos para compatibilidade) */
.perfil-secondary-contacts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* ══ FICHA TÉCNICA na coluna esquerda (abaixo da descrição) ══════ */
.perfil-ficha-col {
    margin-top: 28px;
    padding: 20px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.perfil-phone-btn,
.perfil-sms-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 13px 8px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.perfil-phone-btn i,
.perfil-sms-btn i { font-size: 20px; margin-bottom: 2px; }

.perfil-phone-btn {
    background: rgba(255,0,127,0.1);
    border: 1px solid rgba(255,0,127,0.38);
    color: #ff007f;
}
.perfil-phone-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(255,0,127,0.3); }

.perfil-sms-btn {
    background: rgba(96,165,250,0.1);
    border: 1px solid rgba(96,165,250,0.38);
    color: #60a5fa;
}
.perfil-sms-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(96,165,250,0.3); }

/* SEC??ES DA SIDEBAR */
.perfil-sidebar-section {
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 16px 18px;
}

.perfil-sidebar-section-title {
    font-size: 10px;
    font-weight: 800;
    color: #ff007f;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* TABELA DE DADOS */
.perfil-info-grid { display: flex; flex-direction: column; }

.perfil-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.perfil-info-row:last-child  { border-bottom: none; padding-bottom: 0; }
.perfil-info-row:first-child { padding-top: 0; }

.perfil-info-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 10px;
    font-weight: 600;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
}
.perfil-info-label i { width: 13px; text-align: center; color: #9d00ff; font-size: 10px; }

.perfil-info-value {
    font-size: 12px;
    font-weight: 600;
    color: #e5e7eb;
    text-align: right;
    max-width: 56%;
}

.perfil-price-row .perfil-info-value {
    font-size: 20px;
    font-weight: 900;
    color: #ff007f;
    text-shadow: 0 0 10px rgba(255,0,127,0.5);
}
.perfil-price-row .perfil-info-value small {
    font-size: 10px; opacity: 0.7; font-weight: 400; margin-left: 2px;
}

/* DESCRI??O */
.perfil-description {
    font-size: 13px;
    line-height: 1.7;
    color: #9ca3af;
    margin: 0;
}

/* BOT?ES DE AC??O */
.perfil-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.perfil-action-btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 8px;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    font-size: 20px;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.perfil-action-btn span  { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; }
.perfil-action-btn small { font-size: 9px; opacity: 0.6; }
.perfil-action-btn:hover { transform: translateY(-2px); }

.perfil-action-call { background: rgba(255,0,85,0.13); border-color: rgba(255,0,85,0.42); color: #ff5577; }
.perfil-action-call:hover { box-shadow: 0 6px 20px rgba(255,0,85,0.3); }
.perfil-action-chat { background: rgba(157,0,255,0.13); border-color: rgba(157,0,255,0.42); color: #c084fc; }
.perfil-action-chat:hover { box-shadow: 0 6px 20px rgba(157,0,255,0.3); }
.perfil-action-qr { background: rgba(0,255,136,0.09); border-color: rgba(0,255,136,0.32); color: #00ff88; }
.perfil-action-qr:hover { box-shadow: 0 6px 20px rgba(0,255,136,0.3); }

/* ??? TRUST BADGES ? Premium / Convers?o ??? */
.perfil-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.perfil-trust-btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 20px;
    border: 1.5px solid transparent;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    flex-shrink: 0;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
    line-height: 1;
}
.perfil-trust-btn i  { font-size: 13px; }
.perfil-trust-btn small {
    font-size: 9px;
    font-weight: 500;
    opacity: 0.75;
    margin-left: 2px;
}
.perfil-trust-btn:hover { transform: translateY(-2px); }

/* Live Call ? verde vivo */
.perfil-trust-call {
    background: rgba(34, 197, 94, 0.13);
    border-color: rgba(34, 197, 94, 0.50);
    color: #22c55e;
    box-shadow: 0 2px 12px rgba(34, 197, 94, 0.18);
}
.perfil-trust-call:hover { box-shadow: 0 6px 22px rgba(34, 197, 94, 0.38); }

/* Chat ? violeta */
.perfil-trust-chat {
    background: rgba(157, 0, 255, 0.13);
    border-color: rgba(157, 0, 255, 0.45);
    color: #c084fc;
    box-shadow: 0 2px 12px rgba(157, 0, 255, 0.16);
}
.perfil-trust-chat:hover { box-shadow: 0 6px 22px rgba(157, 0, 255, 0.34); }

/* Validar Selo ? dourado/teal */
.perfil-trust-qr {
    background: rgba(0, 255, 136, 0.09);
    border-color: rgba(0, 255, 136, 0.42);
    color: #00ff88;
    box-shadow: 0 2px 12px rgba(0, 255, 136, 0.14);
}
.perfil-trust-qr:hover { box-shadow: 0 6px 22px rgba(0, 255, 136, 0.30); }

/* ══ MOBILE: stack vertical ══════════════════════════════════════ */
@media (max-width: 768px) {
    .perfil-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .perfil-main-img {
        height: 80vh;
        max-height: 640px;
    }
    .perfil-sidebar {
        position: static; /* sem sticky em mobile — scroll normal */
        align-self: auto;
    }
    .perfil-name { font-size: 26px; }
    .perfil-secondary-contacts { grid-template-columns: 1fr 1fr; }
    .perfil-actions { grid-template-columns: repeat(3, 1fr); }
}

/* ??? Cursor "pointer" nos cards da montra ??? */
.ad-card { cursor: pointer; }
.ad-card .ad-card-footer,
.ad-card .ad-icon-btn,
.ad-card .ad-btn-wa-main,
.ad-card .ad-card-phone { cursor: default; }
.ad-card .ad-icon-btn,
.ad-card .ad-btn-wa-main { cursor: pointer; }

/* BOTAO CRIPTO ? Pacotes da Loja de Creditos */

.crypto-pay-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 11px 16px;
    border-radius: 10px;
    border: 1px solid rgba(99, 255, 190, 0.35);
    background: linear-gradient(135deg, rgba(0, 180, 120, 0.10), rgba(0, 100, 255, 0.08));
    color: #63ffbe;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.03em;
    cursor: pointer;
    -webkit-transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}
.crypto-pay-btn:hover {
    border-color: rgba(99, 255, 190, 0.70);
    background: linear-gradient(135deg, rgba(0, 180, 120, 0.20), rgba(0, 100, 255, 0.15));
    box-shadow: 0 0 18px rgba(99, 255, 190, 0.20);
}
.crypto-pay-btn i { font-size: 12px; color: #63ffbe; }

.crypto-pay-tag {
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    background: rgba(99, 255, 190, 0.15);
    border: 1px solid rgba(99, 255, 190, 0.30);
    border-radius: 20px;
    padding: 2px 8px;
    color: #63ffbe;
}

/* MODAL DE CHECKOUT CRIPTO */

.crypto-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9500;
    background: rgba(0, 0, 0, 0.88);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.crypto-modal-overlay.open { display: flex; }

.crypto-modal-box {
    background: linear-gradient(155deg, #061812 0%, #050f0a 50%, #080808 100%);
    border: 1px solid rgba(99, 255, 190, 0.25);
    border-radius: 24px;
    width: 100%;
    max-width: 420px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    box-shadow: 0 0 80px rgba(99, 255, 190, 0.10), 0 32px 80px rgba(0, 0, 0, 0.85);
    -webkit-animation: cryptoPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation: cryptoPop 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    max-height: 92vh;
    overflow-y: auto;
}
@-webkit-keyframes cryptoPop {
    from { opacity: 0; -webkit-transform: scale(0.90) translateY(16px); transform: scale(0.90) translateY(16px); }
    to   { opacity: 1; -webkit-transform: scale(1) translateY(0); transform: scale(1) translateY(0); }
}
@keyframes cryptoPop {
    from { opacity: 0; transform: scale(0.90) translateY(16px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.crypto-modal-header {
    display: flex;
    align-items: center;
    gap: 14px;
}
.crypto-modal-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #00b478, #0057ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(99, 255, 190, 0.30);
}
.crypto-modal-title {
    font-size: 18px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 2px;
}
.crypto-modal-sub {
    font-size: 11px;
    color: rgba(99, 255, 190, 0.55);
    margin: 0;
}
.crypto-modal-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    -webkit-transition: color 0.15s;
    transition: color 0.15s;
}
.crypto-modal-close:hover { color: #fff; }

.crypto-amount-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    background: rgba(99, 255, 190, 0.05);
    border: 1px solid rgba(99, 255, 190, 0.15);
    border-radius: 14px;
    padding: 16px;
}
.crypto-amount-label {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: rgba(255, 255, 255, 0.35);
}
.crypto-amount-value {
    font-size: 34px;
    font-weight: 900;
    color: #63ffbe;
    text-shadow: 0 0 24px rgba(99, 255, 190, 0.50);
    font-family: monospace;
    letter-spacing: -0.02em;
}
.crypto-amount-credits {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.40);
}

.crypto-qr-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.crypto-qr-border {
    padding: 12px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 0 30px rgba(99, 255, 190, 0.20);
    display: inline-block;
}
#crypto-qrcode canvas,
#crypto-qrcode img { display: block; border-radius: 6px; }
.crypto-qr-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    text-align: center;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.crypto-address-wrap { display: flex; flex-direction: column; gap: 8px; }
.crypto-address-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.40);
    display: flex;
    align-items: center;
    gap: 6px;
}
.crypto-address-label i { color: #63ffbe; }
.crypto-address-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.50);
    border: 1px solid rgba(99, 255, 190, 0.20);
    border-radius: 10px;
    padding: 10px 14px;
}
.crypto-address-text {
    flex: 1;
    font-family: monospace;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    word-break: break-all;
    line-height: 1.55;
}
.crypto-copy-btn {
    background: rgba(99, 255, 190, 0.10);
    border: 1px solid rgba(99, 255, 190, 0.25);
    color: #63ffbe;
    border-radius: 8px;
    padding: 7px 10px;
    cursor: pointer;
    font-size: 14px;
    flex-shrink: 0;
    -webkit-transition: background 0.15s, box-shadow 0.15s;
    transition: background 0.15s, box-shadow 0.15s;
}
.crypto-copy-btn:hover {
    background: rgba(99, 255, 190, 0.22);
    box-shadow: 0 0 12px rgba(99, 255, 190, 0.25);
}

/* Aviso de rede — base */
.crypto-network-warn {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 100, 0, 0.10);
    border: 1.5px solid rgba(255, 120, 0, 0.45);
    border-radius: 10px;
    padding: 14px 16px;
    font-size: 11.5px;
    color: rgba(255, 200, 100, 0.85);
    line-height: 1.6;
}
/* Variante crítica — BEP-20 */
.crypto-network-warn--critical {
    background: rgba(220, 60, 0, 0.13);
    border-color: rgba(255, 80, 0, 0.60);
    box-shadow: 0 0 20px rgba(255, 80, 0, 0.14);
}
.crypto-warn-icon {
    font-size: 1.3rem;
    color: #ff6b00;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 0 6px rgba(255, 100, 0, 0.55));
}
.crypto-warn-body {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.crypto-warn-title {
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    color: #ff8c00;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 2px;
}
.crypto-warn-text {
    margin: 0;
    font-size: 0.77rem;
    color: rgba(255, 210, 140, 0.88);
    line-height: 1.6;
}
.crypto-warn-text strong {
    color: #ffb347;
    font-weight: 700;
}

.crypto-confirm-btn {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #00b478, #0057ff, #00b478);
    background-size: 200% auto;
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    box-shadow: 0 0 28px rgba(99, 255, 190, 0.30), 0 8px 20px rgba(0, 0, 0, 0.50);
    -webkit-animation: gradShift 3s linear infinite;
    animation: gradShift 3s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    -webkit-transition: -webkit-transform 0.18s ease, box-shadow 0.18s ease;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.crypto-confirm-btn:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(99, 255, 190, 0.45), 0 12px 28px rgba(0,0,0,0.55);
}

/* LOJA DE DESTAQUES � Bloco Above-the-Fold (Dashboard) */

.sf-atf-block {
    border-radius: 20px;
    border: 1px solid rgba(255,140,0,0.32);
    background: linear-gradient(150deg, rgba(255,140,0,0.07) 0%, rgba(255,0,127,0.04) 60%, rgba(0,0,0,0) 100%);
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255,140,0,0.08);
}

/* Header da montra */
.sf-atf-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 20px 14px;
    border-bottom: 1px solid rgba(255,140,0,0.12);
}
.sf-atf-header-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.sf-atf-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #ff8c00, #ff007f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 22px rgba(255,140,0,0.45), 0 4px 12px rgba(0,0,0,0.40);
}
.sf-atf-title {
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 3px;
    text-shadow: 0 0 28px rgba(255,140,0,0.35);
    letter-spacing: -0.01em;
}
.sf-atf-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.40);
    margin: 0;
    line-height: 1.4;
}
.sf-atf-sub strong { color: rgba(255,193,7,0.80); }

.sf-atf-badge {
    background: linear-gradient(135deg, #ff8c00, #ff007f);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.06em;
    padding: 5px 12px;
    border-radius: 20px;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(255,140,0,0.40);
    white-space: nowrap;
}

/* Grelha de mini-cart�es */
.sf-atf-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 14px 16px;
}

@media (min-width: 480px) {
    .sf-atf-grid { grid-template-columns: repeat(4, 1fr); }
}

.sf-atf-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 10px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    -webkit-transition: border-color 0.2s ease, background 0.2s ease, -webkit-transform 0.2s ease, box-shadow 0.2s ease;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    text-align: center;
    position: relative;
}
.sf-atf-card:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

.sf-atf-card--vip  { border-color: rgba(255,193,7,0.25); }
.sf-atf-card--vip:hover  { border-color: rgba(255,193,7,0.60); background: rgba(255,193,7,0.07); box-shadow: 0 8px 24px rgba(255,193,7,0.14); }
.sf-atf-card--neon { border-color: rgba(168,85,247,0.25); }
.sf-atf-card--neon:hover { border-color: rgba(168,85,247,0.60); background: rgba(168,85,247,0.07); box-shadow: 0 8px 24px rgba(168,85,247,0.14); }
.sf-atf-card--bump { border-color: rgba(99,255,190,0.22); }
.sf-atf-card--bump:hover { border-color: rgba(99,255,190,0.55); background: rgba(99,255,190,0.06); box-shadow: 0 8px 24px rgba(99,255,190,0.12); }
.sf-atf-card--topo { border-color: rgba(56,189,248,0.22); }
.sf-atf-card--topo:hover { border-color: rgba(56,189,248,0.55); background: rgba(56,189,248,0.06); box-shadow: 0 8px 24px rgba(56,189,248,0.12); }

.sf-atf-card-emoji { font-size: 28px; line-height: 1; }

.sf-atf-card-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    align-items: center;
}
.sf-atf-card-name {
    font-size: 12px;
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    line-height: 1.2;
}
.sf-atf-card-dur {
    font-size: 10px;
    color: rgba(255,255,255,0.30);
    font-weight: 600;
}

.sf-atf-card-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    margin-top: 4px;
    width: 100%;
}

/* Pre�o riscado � agressivo, vermelho vivo, imposs�vel de ignorar */
/* Pre�o riscado � vermelho vivo, imposs�vel de ignorar.
   !important para vencer qualquer heran�a de cor do bot�o pai (.sf-atf-card). */
.sf-atf-old,
del.sf-atf-old {
    font-size: 15px !important;
    font-weight: 900 !important;
    color: #ff2222 !important;
    opacity: 1 !important;
    text-decoration: line-through !important;
    text-decoration-color: #ff2222 !important;
    text-decoration-thickness: 2.5px !important;
    text-shadow: 0 0 10px rgba(255,34,34,0.55) !important;
    line-height: 1.25;
    display: block;
    text-align: center;
    -webkit-text-fill-color: #ff2222;  /* for�a em WebKit/Safari */
}

/* Label "Concorr�ncia:" inline dentro do del */
.sf-atf-comp-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.80;
}

/* Nosso pre�o � verde-neon dominante, chocante vs vermelho acima */
.sf-atf-new {
    font-size: 22px;
    font-weight: 900;
    color: #00ffcc;
    text-shadow: 0 0 18px rgba(0,255,204,0.65), 0 0 36px rgba(0,255,204,0.25);
    line-height: 1;
    display: block;
    text-align: center;
}

/* CTA de fundo */
.sf-atf-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border: none;
    border-top: 1px solid rgba(255,140,0,0.14);
    background: rgba(255,140,0,0.06);
    color: #ffb347;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    -webkit-transition: background 0.2s ease, color 0.2s ease;
    transition: background 0.2s ease, color 0.2s ease;
}
.sf-atf-cta:hover {
    background: rgba(255,140,0,0.14);
    color: #ffc87a;
}

/* LOJA DE DESTAQUES � Card de entrada no Dashboard (legado � mantido por compatibilidade) */

.sf-entry-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: linear-gradient(135deg, rgba(255,140,0,0.08) 0%, rgba(255,0,127,0.05) 100%);
    border: 1px solid rgba(255,140,0,0.28);
    border-radius: 16px;
    padding: 16px 18px;
    flex-wrap: wrap;
}
.sf-entry-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}
.sf-entry-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, #ff8c00, #ff007f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 18px rgba(255,140,0,0.35);
}
.sf-entry-title {
    font-size: 14px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 2px;
}
.sf-entry-sub {
    font-size: 11px;
    color: rgba(255,255,255,0.42);
    line-height: 1.45;
}
.sf-entry-sub strong { color: rgba(255,193,7,0.80); }

.sf-entry-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255,140,0,0.45);
    background: rgba(255,140,0,0.12);
    color: #ffb347;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    white-space: nowrap;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.sf-entry-btn:hover {
    background: rgba(255,140,0,0.22);
    border-color: rgba(255,140,0,0.75);
    box-shadow: 0 0 14px rgba(255,140,0,0.22);
}

/* MODAL LOJA DE DESTAQUES */

.sf-overlay {
    position: fixed;
    inset: 0;
    z-index: 10100;
    background: rgba(0,0,0,0.88);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}
.sf-overlay.open { display: flex; }

.sf-box {
    background: linear-gradient(155deg, #120a00 0%, #0a0800 50%, #0d0d0d 100%);
    border: 1px solid rgba(255,140,0,0.28);
    border-radius: 24px;
    width: 100%;
    max-width: 640px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 0 80px rgba(255,140,0,0.10), 0 32px 80px rgba(0,0,0,0.85);
    -webkit-animation: authPop 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
    animation: authPop 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
    margin: auto;
    overflow: hidden;
}

.sf-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 20px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.sf-header-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    background: linear-gradient(135deg, #ff8c00, #ff007f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(255,140,0,0.35);
}
.sf-title {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 3px;
}
.sf-subtitle { font-size: 11px; color: rgba(255,255,255,0.36); margin: 0; }
.sf-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255,255,255,0.30);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    -webkit-transition: color 0.15s;
    transition: color 0.15s;
    flex-shrink: 0;
}
.sf-close:hover { color: #fff; }

/* Barra de saldo */
.sf-balance-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255,193,7,0.05);
    border-bottom: 1px solid rgba(255,193,7,0.10);
    font-size: 12px;
    color: rgba(255,255,255,0.45);
}
.sf-balance-bar i { color: #ffc107; font-size: 13px; }
.sf-balance-bar strong { color: #ffc107; font-size: 14px; }
.sf-topup-link {
    margin-left: auto;
    background: none;
    border: 1px solid rgba(99,255,190,0.30);
    border-radius: 8px;
    color: #63ffbe;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    cursor: pointer;
    -webkit-transition: all 0.15s ease;
    transition: all 0.15s ease;
}
.sf-topup-link:hover { background: rgba(99,255,190,0.08); border-color: rgba(99,255,190,0.60); }

/* Grelha de produtos */
.sf-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 12px;
    padding: 16px 20px;
}

.sf-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.02);
    position: relative;
    -webkit-transition: border-color 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.sf-card:hover {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

/* Variantes de cor por produto */
.sf-card--vip   { border-color: rgba(255,193,7,0.22); background: linear-gradient(135deg,rgba(255,193,7,0.06),rgba(255,140,0,0.03)); }
.sf-card--vip:hover   { border-color: rgba(255,193,7,0.50); box-shadow: 0 8px 28px rgba(255,193,7,0.12); }
.sf-card--neon  { border-color: rgba(168,85,247,0.22); background: linear-gradient(135deg,rgba(168,85,247,0.06),rgba(255,0,127,0.03)); }
.sf-card--neon:hover  { border-color: rgba(168,85,247,0.50); box-shadow: 0 8px 28px rgba(168,85,247,0.12); }
.sf-card--bump  { border-color: rgba(99,255,190,0.20); background: linear-gradient(135deg,rgba(99,255,190,0.05),rgba(0,100,255,0.03)); }
.sf-card--bump:hover  { border-color: rgba(99,255,190,0.48); box-shadow: 0 8px 28px rgba(99,255,190,0.11); }
.sf-card--topo  { border-color: rgba(56,189,248,0.22); background: linear-gradient(135deg,rgba(56,189,248,0.05),rgba(59,130,246,0.03)); }
.sf-card--topo:hover  { border-color: rgba(56,189,248,0.50); box-shadow: 0 8px 28px rgba(56,189,248,0.11); }
.sf-card--combo-day  { border-color: rgba(255,107,0,0.28); background: linear-gradient(135deg,rgba(255,107,0,0.07),rgba(255,153,0,0.04)); }
.sf-card--combo-day:hover  { border-color: rgba(255,107,0,0.55); box-shadow: 0 8px 28px rgba(255,107,0,0.14); }
.sf-card--combo-max  { border-color: rgba(124,0,255,0.30); background: linear-gradient(135deg,rgba(124,0,255,0.08),rgba(255,45,120,0.05)); }
.sf-card--combo-max:hover  { border-color: rgba(124,0,255,0.60); box-shadow: 0 8px 28px rgba(124,0,255,0.18); }

.sf-card-badge {
    position: absolute;
    top: -1px;
    right: 14px;
    background: #ffc107;
    color: #000;
    font-size: 9px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 3px 9px;
    border-radius: 0 0 8px 8px;
}
.sf-card-icon { font-size: 26px; line-height: 1; }
.sf-card-name {
    font-size: 15px;
    font-weight: 900;
    color: #fff;
    margin: 0;
}
.sf-card-duration {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.32);
    margin: -6px 0 0;
}
.sf-card-benefit {
    font-size: 12px;
    line-height: 1.55;
    color: rgba(255,255,255,0.50);
    margin: 0;
    flex: 1;
}

/* Pricing block */
.sf-card-pricing {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 10px 12px;
    background: rgba(0,0,0,0.30);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
}
.sf-price-old {
    font-size: 11px;
    color: rgba(255,80,80,0.55);
    text-decoration: line-through;
}
.sf-price-our {
    display: flex;
    align-items: baseline;
    gap: 7px;
}
.sf-price-eur {
    font-size: 22px;
    font-weight: 900;
    color: #00ffcc;
    text-shadow: 0 0 14px rgba(0,255,204,0.38);
}
.sf-price-crd {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,193,7,0.75);
}
.sf-price-saving {
    font-size: 10px;
    font-weight: 700;
    color: rgba(99,255,190,0.65);
    letter-spacing: 0.03em;
}

/* Bot�es de compra */
.sf-buy-btn {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    -webkit-transition: -webkit-transform 0.18s ease, box-shadow 0.18s ease;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.sf-buy-btn:hover { -webkit-transform: scale(1.03); transform: scale(1.03); }

.sf-buy-btn--vip  { background: linear-gradient(90deg,#ffd700,#ffaa00); color:#000; box-shadow:0 0 20px rgba(255,193,7,0.30); }
.sf-buy-btn--neon { background: linear-gradient(90deg,#a855f7,#ff007f); color:#fff; box-shadow:0 0 20px rgba(168,85,247,0.28); }
.sf-buy-btn--bump { background: linear-gradient(90deg,#00b478,#0057ff); color:#fff; box-shadow:0 0 20px rgba(99,255,190,0.24); }
.sf-buy-btn--topo      { background: linear-gradient(90deg,#38bdf8,#3b82f6); color:#fff; box-shadow:0 0 20px rgba(56,189,248,0.25); }
.sf-buy-btn--combo-day { background: linear-gradient(90deg,#ff6b00,#ff9900); color:#fff; box-shadow:0 0 20px rgba(255,107,0,0.30); }
.sf-buy-btn--combo-max { background: linear-gradient(90deg,#7c00ff,#ff2d78); color:#fff; box-shadow:0 0 20px rgba(124,0,255,0.30); }

.sf-footnote {
    font-size: 11px;
    color: rgba(255,255,255,0.22);
    text-align: center;
    padding: 12px 20px 18px;
    border-top: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-wrap: wrap;
}
.sf-footnote i { color: rgba(168,85,247,0.55); }

/* SELETOR DE IDIOMA ? Header */

.lang-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.70);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 0.05em;
    -webkit-transition: all 0.18s ease;
    transition: all 0.18s ease;
    white-space: nowrap;
}
.lang-btn:hover {
    border-color: rgba(255,255,255,0.28);
    color: #fff;
    background: rgba(255,255,255,0.09);
}

.lang-chevron {
    font-size: 9px;
    opacity: 0.55;
    -webkit-transition: -webkit-transform 0.20s ease;
    transition: transform 0.20s ease;
}
.lang-selector.open .lang-chevron {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 170px;
    background: #111118;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 14px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.75), 0 0 0 1px rgba(255,255,255,0.04);
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(-6px) scale(0.97);
    transform: translateY(-6px) scale(0.97);
    -webkit-transition: opacity 0.18s ease, -webkit-transform 0.18s ease;
    transition: opacity 0.18s ease, transform 0.18s ease;
}
.lang-selector.open .lang-menu {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0) scale(1);
    transform: translateY(0) scale(1);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 9px 12px;
    border-radius: 9px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    -webkit-transition: background 0.15s ease, color 0.15s ease;
    transition: background 0.15s ease, color 0.15s ease;
}
.lang-option:hover {
    background: rgba(255,255,255,0.07);
    color: #fff;
}
.lang-option--active {
    color: #ff007f;
    background: rgba(255,0,127,0.08);
}
.lang-flag { font-size: 15px; line-height: 1; flex-shrink: 0; }

/* LINK RECUPERA��O DE PASSWORD */

.auth-recover-row {
    display: flex;
    justify-content: flex-end;
    margin-top: -6px;
}
.auth-recover-btn {
    background: none;
    border: none;
    color: rgba(255,255,255,0.30);
    font-size: 11px;
    cursor: pointer;
    padding: 2px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    -webkit-transition: color 0.15s ease;
    transition: color 0.15s ease;
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-color: transparent;
}
.auth-recover-btn:hover {
    color: rgba(255,0,127,0.75);
    text-decoration-color: rgba(255,0,127,0.40);
}
.auth-recover-btn i { font-size: 10px; }

/* LABEL DE SEC��O NO FAQ */

.hpm-section-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(168,85,247,0.65);
    padding: 6px 4px 2px;
    border-bottom: 1px solid rgba(168,85,247,0.12);
    margin-top: 6px;
}
.hpm-section-label i { font-size: 12px; }

/* BOTAO PREMIUM & AJUDA NO HEADER */

.help-premium-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, 0.50);
    background: linear-gradient(135deg, rgba(168,85,247,0.12), rgba(255,0,127,0.08));
    color: #c084fc;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.help-premium-btn:hover {
    border-color: rgba(168, 85, 247, 0.85);
    color: #d8b4fe;
    box-shadow: 0 0 16px rgba(168,85,247,0.25);
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}
.help-premium-btn i { font-size: 11px; }

/* MODAL CENTRO DE AJUDA & PREMIUM */

.hpm-overlay {
    position: fixed;
    inset: 0;
    z-index: 10300;
    background: rgba(0,0,0,0.88);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding: 16px;
    overflow-y: auto;
}
.hpm-overlay.open { display: flex; }

.hpm-box {
    background: linear-gradient(155deg, #0d0820 0%, #080510 55%, #0a0a0a 100%);
    border: 1px solid rgba(168,85,247,0.28);
    border-radius: 24px;
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 0;
    box-shadow: 0 0 80px rgba(168,85,247,0.12), 0 32px 80px rgba(0,0,0,0.85);
    -webkit-animation: authPop 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
    animation: authPop 0.35s cubic-bezier(0.34,1.56,0.64,1) both;
    margin: auto;
    overflow: hidden;
}

/* Header do modal */
.hpm-header {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 22px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hpm-header-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, #7c3aed, #ff007f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 22px rgba(168,85,247,0.40);
}
.hpm-title {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 3px;
}
.hpm-title-accent {
    background: linear-gradient(90deg, #a855f7, #ff007f);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hpm-subtitle { font-size: 11px; color: rgba(255,255,255,0.35); margin: 0; }
.hpm-close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255,255,255,0.30);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    -webkit-transition: color 0.15s;
    transition: color 0.15s;
    flex-shrink: 0;
}
.hpm-close:hover { color: #fff; }

/* Abas */
.hpm-tabs {
    display: flex;
    background: rgba(255,255,255,0.03);
    padding: 6px;
    gap: 4px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.hpm-tab {
    flex: 1;
    padding: 9px 12px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.38);
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    -webkit-transition: all 0.18s ease;
    transition: all 0.18s ease;
}
.hpm-tab.active {
    background: rgba(168,85,247,0.16);
    color: #c084fc;
    box-shadow: 0 0 12px rgba(168,85,247,0.14);
}

/* Painel de conte�do */
.hpm-panel {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 68vh;
    overflow-y: auto;
}
.hpm-panel::-webkit-scrollbar { width: 4px; }
.hpm-panel::-webkit-scrollbar-track { background: transparent; }
.hpm-panel::-webkit-scrollbar-thumb { background: rgba(168,85,247,0.35); border-radius: 4px; }

/* ══════════════════════════════════════════════
   ACCORDION FAQ v2 — Profissional / A11Y / Lazy
   ══════════════════════════════════════════════ */

/* Container — semântica de lista para SR e SEO */
.hpm-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Item — layout containment para melhor performance de repaint */
.hpm-acc-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    overflow: hidden;
    contain: layout style;
    -webkit-transition: border-color 0.22s ease, box-shadow 0.22s ease;
    transition: border-color 0.22s ease, box-shadow 0.22s ease;
}
/* Focus ring visível quando navegação por teclado (Tab) */
.hpm-acc-item:focus-within {
    box-shadow: 0 0 0 2px rgba(168,85,247,0.4);
}
.hpm-acc-item.open {
    border-color: rgba(168,85,247,0.40);
    box-shadow: 0 4px 20px rgba(168,85,247,0.08);
}

/* Botão trigger */
.hpm-acc-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    background: rgba(255,255,255,0.03);
    border: none;
    color: rgba(255,255,255,0.85);
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    -webkit-transition: background 0.18s ease, color 0.18s ease;
    transition: background 0.18s ease, color 0.18s ease;
}
.hpm-acc-trigger:hover { background: rgba(168,85,247,0.08); }
/* Ring visível apenas para utilizadores de teclado, não para rato */
.hpm-acc-trigger:focus { outline: none; }
.hpm-acc-trigger:focus-visible {
    outline: 2px solid rgba(168,85,247,0.65);
    outline-offset: -2px;
}
.hpm-acc-item.open .hpm-acc-trigger {
    background: rgba(168,85,247,0.10);
    color: #d8b4fe;
}

/* Ícone chevron — rotação via CSS, sem JS */
.hpm-acc-icon {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    flex-shrink: 0;
    pointer-events: none;
    -webkit-transition: -webkit-transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s ease;
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), color 0.22s ease;
}
.hpm-acc-item.open .hpm-acc-icon {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    color: #c084fc;
}

/* Body — max-height definido por JS para animação precisa */
.hpm-acc-body {
    max-height: 0;
    overflow: hidden;
    padding: 0 16px;
    font-size: 13px;
    line-height: 1.65;
    color: rgba(255,255,255,0.58);
    opacity: 0;
    -webkit-transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                        padding 0.38s ease,
                        opacity 0.28s ease 0.04s;
    transition: max-height 0.38s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.38s ease,
                opacity 0.28s ease 0.04s;
}
.hpm-acc-item.open .hpm-acc-body {
    /* max-height definido dinamicamente por JS (_accOpen) */
    padding: 12px 16px 18px;
    opacity: 1;
}

/* Conteúdo interno do body */
.hpm-acc-body p { margin: 0 0 8px; }
.hpm-acc-body p:last-child { margin-bottom: 0; }
.hpm-acc-body strong { color: rgba(255,255,255,0.85); }
.hpm-acc-body code {
    background: rgba(168,85,247,0.15);
    border: 1px solid rgba(168,85,247,0.25);
    border-radius: 5px;
    padding: 1px 6px;
    font-size: 12px;
    color: #c084fc;
}
.hpm-acc-body ul {
    padding-left: 18px;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    list-style: disc;
}
.hpm-acc-body ul li { color: rgba(255,255,255,0.60); }
.hpm-acc-body ul li strong { color: #c084fc; }

/* ?? PLANOS PREMIUM ?? */
.hpm-plan-card {
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border: 1px solid rgba(255,255,255,0.08);
}
.hpm-plan--vip {
    background: linear-gradient(135deg, rgba(255,193,7,0.06), rgba(255,140,0,0.04));
    border-color: rgba(255,193,7,0.22);
}
.hpm-plan--crypto {
    background: linear-gradient(135deg, rgba(99,255,190,0.05), rgba(0,100,255,0.04));
    border-color: rgba(99,255,190,0.18);
}

.hpm-plan-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: #ffc107;
    background: rgba(255,193,7,0.12);
    border: 1px solid rgba(255,193,7,0.25);
    border-radius: 20px;
    padding: 3px 10px;
    align-self: flex-start;
}
.hpm-plan-badge--crypto {
    color: #63ffbe;
    background: rgba(99,255,190,0.10);
    border-color: rgba(99,255,190,0.22);
}

.hpm-plan-name {
    font-size: 17px;
    font-weight: 900;
    color: #fff;
    margin: 0;
}
.hpm-plan-duration {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.40);
}
.hpm-plan-desc {
    font-size: 13px;
    line-height: 1.60;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.hpm-plan-desc strong { color: rgba(255,255,255,0.85); }

.hpm-plan-pricing {
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.hpm-plan-old {
    font-size: 12px;
    color: rgba(255,80,80,0.55);
    text-decoration: line-through;
}
.hpm-plan-price {
    font-size: 24px;
    font-weight: 900;
    color: #00ffcc;
    text-shadow: 0 0 18px rgba(0,255,204,0.40);
}
.hpm-plan-price--crypto { color: #63ffbe; text-shadow: 0 0 18px rgba(99,255,190,0.35); }
.hpm-plan-crd {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
}

.hpm-plan-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 7px;
}
.hpm-plan-perks li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    color: rgba(255,255,255,0.65);
}
.hpm-plan-perks li i { width: 14px; text-align: center; color: #ffc107; flex-shrink: 0; }
.hpm-plan--crypto .hpm-plan-perks li i { color: #63ffbe; }

.hpm-plan-cta {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 13px;
    border: none;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    -webkit-transition: -webkit-transform 0.18s ease, box-shadow 0.18s ease;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.hpm-plan-cta--vip {
    background: linear-gradient(90deg, #ffd700, #ffaa00);
    color: #000;
    box-shadow: 0 0 24px rgba(255,193,7,0.35);
}
.hpm-plan-cta--vip:hover { -webkit-transform: scale(1.02); transform: scale(1.02); box-shadow: 0 0 32px rgba(255,193,7,0.50); }
.hpm-plan-cta--soon {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.10);
    color: rgba(255,255,255,0.30);
    cursor: not-allowed;
}

.hpm-eco-note {
    font-size: 11px;
    color: rgba(255,255,255,0.28);
    text-align: center;
    line-height: 1.55;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    margin-top: 2px;
}
.hpm-eco-note i { color: rgba(168,85,247,0.65); margin-right: 4px; }
.hpm-eco-note strong { color: rgba(99,255,190,0.70); }

/* BOTAO AUTH NO HEADER */

.auth-header-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 0, 127, 0.35);
    background: rgba(255, 0, 127, 0.08);
    color: rgba(255, 255, 255, 0.75);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    white-space: nowrap;
}
.auth-header-btn:hover {
    border-color: rgba(255, 0, 127, 0.70);
    color: #ff007f;
    background: rgba(255, 0, 127, 0.14);
}
.auth-header-btn.logged-in {
    border-color: rgba(99, 255, 190, 0.45);
    background: rgba(99, 255, 190, 0.08);
    color: #63ffbe;
}
.auth-header-btn.logged-in:hover {
    border-color: rgba(99, 255, 190, 0.75);
    background: rgba(99, 255, 190, 0.15);
}

/* BOTAO VIP PROMO NO DASHBOARD */

.vip-promo-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 193, 7, 0.45);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.10), rgba(255, 140, 0, 0.08));
    color: #ffc107;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}
.vip-promo-btn:hover {
    border-color: rgba(255, 193, 7, 0.80);
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.22);
    -webkit-transform: scale(1.03);
    transform: scale(1.03);
}
.vip-promo-discount {
    font-size: 10px;
    background: #ffc107;
    color: #000;
    border-radius: 10px;
    padding: 2px 7px;
    font-weight: 900;
    letter-spacing: 0.05em;
}
.vip-promo-btn.vip-active {
    border-color: rgba(255, 193, 7, 0.80);
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.20), rgba(255, 140, 0, 0.15));
    cursor: default;
}

/* MODAL DE AUTENTICACAO */

.auth-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10500;
    background: rgba(0, 0, 0, 0.90);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
    /* Garante que compositing layers residuais do backdrop-filter não interceptam cliques */
    pointer-events: none;
}
.auth-modal-overlay.open {
    display: flex;
    pointer-events: auto;
}

.auth-modal-box {
    position: relative;
    background: linear-gradient(155deg, #120820 0%, #0a060f 60%, #0d0d0d 100%);
    border: 1px solid rgba(255, 0, 127, 0.28);
    border-radius: 26px;
    padding: 30px 26px 26px;
    width: 100%;
    max-width: 390px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    box-shadow: 0 0 80px rgba(255, 0, 127, 0.12), 0 32px 80px rgba(0,0,0,0.85);
    -webkit-animation: authPop 0.36s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation: authPop 0.36s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    max-height: 94vh;
    overflow-y: auto;
}
@-webkit-keyframes authPop {
    from { opacity: 0; -webkit-transform: scale(0.88) translateY(18px); transform: scale(0.88) translateY(18px); }
    to   { opacity: 1; -webkit-transform: scale(1) translateY(0); transform: scale(1) translateY(0); }
}
@keyframes authPop {
    from { opacity: 0; transform: scale(0.88) translateY(18px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

.auth-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.30);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    -webkit-transition: color 0.15s;
    transition: color 0.15s;
}
.auth-modal-close:hover { color: #fff; }

.auth-modal-hero { text-align: center; }
.auth-modal-gem {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #7c3aed, #ff007f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #fff;
    margin: 0 auto 12px;
    box-shadow: 0 0 28px rgba(255, 0, 127, 0.38);
}
.auth-modal-title {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    margin: 0 0 4px;
}
.auth-x {
    background: linear-gradient(90deg, #ff007f, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.auth-modal-sub { font-size: 12px; color: rgba(255,255,255,0.38); margin: 0; }

/* Abas */
.auth-tabs {
    display: flex;
    background: rgba(255,255,255,0.04);
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
}
.auth-tab {
    flex: 1;
    padding: 9px;
    border-radius: 9px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,0.40);
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    -webkit-transition: all 0.18s ease;
    transition: all 0.18s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.auth-tab.active {
    background: rgba(255, 0, 127, 0.18);
    color: #ff007f;
    box-shadow: 0 0 12px rgba(255, 0, 127, 0.15);
}

/* Formul�rio */
.auth-form { display: flex; flex-direction: column; gap: 14px; }

.auth-field { display: flex; flex-direction: column; gap: 6px; }

.auth-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.48);
}
.auth-optional {
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    font-size: 10px;
    color: rgba(255,255,255,0.25);
}

.auth-input {
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    padding: 11px 14px;
    font-size: 14px;
    color: #fff;
    outline: none;
    -webkit-transition: border-color 0.18s ease, box-shadow 0.18s ease;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
    width: 100%;
    box-sizing: border-box;
}
.auth-input:focus {
    border-color: rgba(255, 0, 127, 0.55);
    box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.10);
}
.auth-input::-webkit-input-placeholder { color: rgba(255,255,255,0.20); }
.auth-input::placeholder { color: rgba(255,255,255,0.20); }
.auth-input--mono { font-family: monospace; letter-spacing: 0.06em; text-transform: uppercase; }

.auth-submit-btn {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(90deg, #ff007f, #a855f7);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 0 24px rgba(255,0,127,0.35), 0 6px 18px rgba(0,0,0,0.45);
    -webkit-transition: -webkit-transform 0.18s ease, box-shadow 0.18s ease;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    margin-top: 4px;
}
.auth-submit-btn:hover { -webkit-transform: scale(1.02); transform: scale(1.02); }
.auth-submit-btn--register {
    background: linear-gradient(90deg, #7c3aed, #ff007f);
}

.auth-invite-hint {
    margin: 0.3rem 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.42);
    line-height: 1.45;
}

.auth-switch-hint {
    font-size: 12px;
    text-align: center;
    color: rgba(255,255,255,0.30);
    margin: 0;
}
.auth-link-btn {
    background: none;
    border: none;
    color: #ff007f;
    font-size: inherit;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* MODAL VIP UPGRADE */

.vip-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10200;
    background: rgba(0, 0, 0, 0.90);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.vip-modal-overlay.open { display: flex; }

.vip-modal-box {
    position: relative;
    background: linear-gradient(155deg, #1a1400 0%, #120e00 50%, #0d0d0d 100%);
    border: 1px solid rgba(255, 193, 7, 0.35);
    border-radius: 26px;
    padding: 32px 26px 26px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    box-shadow: 0 0 80px rgba(255, 193, 7, 0.12), 0 32px 80px rgba(0,0,0,0.85);
    -webkit-animation: authPop 0.36s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation: authPop 0.36s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    max-height: 94vh;
    overflow-y: auto;
    text-align: center;
}

.vip-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.30);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    -webkit-transition: color 0.15s;
    transition: color 0.15s;
}
.vip-modal-close:hover { color: #fff; }

.vip-modal-crown {
    font-size: 44px;
    line-height: 1;
    color: #ffc107;
    text-shadow: 0 0 30px rgba(255,193,7,0.60);
    -webkit-animation: crownBounce 2.5s ease-in-out infinite;
    animation: crownBounce 2.5s ease-in-out infinite;
}
@-webkit-keyframes crownBounce {
    0%, 100% { -webkit-transform: translateY(0);   transform: translateY(0);   }
    50%       { -webkit-transform: translateY(-6px); transform: translateY(-6px); }
}
@keyframes crownBounce {
    0%, 100% { transform: translateY(0);   }
    50%       { transform: translateY(-6px); }
}

.vip-modal-title {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin: 0;
}
.vip-gold {
    background: linear-gradient(90deg, #ffd700, #ffaa00, #ffd700);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vip-modal-sub { font-size: 12px; color: rgba(255,255,255,0.38); margin: 0; }

/* Compara��o de pre�os */
.vip-price-comparison {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,193,7,0.06);
    border: 1px solid rgba(255,193,7,0.18);
    border-radius: 16px;
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
}
.vip-competitor-price, .vip-our-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    flex: 1;
}
.vip-comp-label, .vip-our-label {
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
}
.vip-comp-value {
    font-size: 22px;
    font-weight: 900;
    color: rgba(255,80,80,0.65);
    text-decoration: line-through;
}
.vip-divider-arrow {
    color: rgba(255,193,7,0.50);
    font-size: 16px;
    flex-shrink: 0;
}
.vip-our-value {
    font-size: 28px;
    font-weight: 900;
    color: #00ffcc;
    text-shadow: 0 0 20px rgba(0,255,204,0.50);
}
.vip-our-crd {
    font-size: 10px;
    color: rgba(255,255,255,0.30);
}

/* Benef�cios */
.vip-perks-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 9px;
    text-align: left;
}
.vip-perks-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.70);
}
.vip-perks-list li i { color: #ffc107; width: 16px; flex-shrink: 0; }

/* Saldo */
.vip-balance-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 10px 14px;
}
.vip-bal-label { font-size: 12px; color: rgba(255,255,255,0.40); }
.vip-bal-value { font-size: 15px; font-weight: 800; color: #ffc107; }

/* Bot�o Activar VIP */
.vip-activate-btn {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #ffd700, #ffaa00, #ffd700);
    background-size: 200% auto;
    color: #000;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
    box-shadow: 0 0 32px rgba(255,193,7,0.40), 0 8px 22px rgba(0,0,0,0.50);
    -webkit-animation: gradShift 3s linear infinite;
    animation: gradShift 3s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    -webkit-transition: -webkit-transform 0.18s ease;
    transition: transform 0.18s ease;
}
.vip-activate-btn:hover { -webkit-transform: scale(1.02); transform: scale(1.02); }
.vip-footnote {
    font-size: 11px;
    color: rgba(255,255,255,0.25);
    margin: -6px 0 0;
    text-align: center;
}

/* MODAL DE BOAS-VINDAS - Primeira Visita + Campo de Convite */

.welcome-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 1;
    transition: opacity 0.35s ease;
}
.welcome-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.welcome-box {
    background: linear-gradient(155deg, #120820 0%, #0a060f 60%, #0d0d0d 100%);
    border: 1px solid rgba(255, 0, 127, 0.30);
    border-radius: 28px;
    padding: 32px 28px;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: 0 0 80px rgba(255, 0, 127, 0.12), 0 32px 80px rgba(0, 0, 0, 0.8);
    -webkit-animation: welcomePop 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation: welcomePop 0.38s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@-webkit-keyframes welcomePop {
    from { opacity: 0; -webkit-transform: scale(0.88) translateY(20px); transform: scale(0.88) translateY(20px); }
    to   { opacity: 1; -webkit-transform: scale(1) translateY(0);       transform: scale(1) translateY(0); }
}
@keyframes welcomePop {
    from { opacity: 0; transform: scale(0.88) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}

/* Hero */
.welcome-hero { text-align: center; }

.welcome-gem {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: linear-gradient(135deg, #7c3aed, #ff007f);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    margin: 0 auto 14px;
    box-shadow: 0 0 32px rgba(255, 0, 127, 0.40);
}

.welcome-title {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 0 0 6px;
}
.welcome-x {
    background: linear-gradient(90deg, #ff007f, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.welcome-sub {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.42);
    margin: 0;
}

/* Benef?cios */
.welcome-perks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.welcome-perks li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.70);
}
.welcome-perks li i {
    width: 18px;
    text-align: center;
    color: #ff007f;
    font-size: 13px;
    flex-shrink: 0;
}

/* Campo de convite */
.welcome-invite-wrap {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
}

.welcome-invite-label {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    display: flex;
    align-items: center;
    gap: 6px;
}
.welcome-invite-label i { color: #ff007f; }
.welcome-invite-opt {
    font-weight: 400;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.28);
    text-transform: none;
    letter-spacing: 0;
}

.welcome-invite-field {
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 0, 127, 0.22);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.welcome-invite-field:focus-within {
    border-color: rgba(255, 0, 127, 0.60);
    box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.10);
}

.welcome-invite-prefix {
    padding: 0 10px;
    font-size: 12px;
    font-weight: 800;
    color: #ff007f;
    font-family: monospace;
    border-right: 1px solid rgba(255, 0, 127, 0.18);
    line-height: 40px;
    flex-shrink: 0;
}

.welcome-invite-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 10px 12px;
    font-size: 13px;
    color: #fff;
    font-family: monospace;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}
.welcome-invite-input::-webkit-input-placeholder { color: rgba(255,255,255,0.22); text-transform: none; font-family: inherit; }
.welcome-invite-input::placeholder               { color: rgba(255,255,255,0.22); text-transform: none; }

.welcome-invite-hint {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.30);
    line-height: 1.55;
    margin: 0;
}
.welcome-invite-hint strong { color: rgba(255, 195, 0, 0.75); }

/* Bot?o entrar */
.welcome-enter-btn {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 14px;
    background: linear-gradient(90deg, #ff007f, #a855f7, #ff007f);
    background-size: 200% auto;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.40), 0 8px 24px rgba(0,0,0,0.5);
    -webkit-animation: gradShift 3s linear infinite;
    animation: gradShift 3s linear infinite;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: -webkit-transform 0.18s ease, box-shadow 0.18s ease;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    transition: transform 0.18s ease, box-shadow 0.18s ease, -webkit-transform 0.18s ease;
}
.welcome-enter-btn:hover {
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 0, 127, 0.55), 0 12px 28px rgba(0,0,0,0.55);
}
@-webkit-keyframes gradShift {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}
@keyframes gradShift {
    0%   { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* Nota legal */
.welcome-legal {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.20);
    text-align: center;
    line-height: 1.5;
    margin: -8px 0 0;
}
.welcome-legal-link {
    color: rgba(255, 0, 127, 0.55);
    text-decoration: none;
}
.welcome-legal-link:hover { color: #ff007f; }

/* ??? TOPBAR DO PERFIL ? Voltar + bot?o DEV ??? */
.perfil-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.meet-dev-btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 999px;
    border: 1px dashed rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.04);
    color: #6b7280;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    transition: border-color 0.18s ease, color 0.18s ease, background 0.18s ease;
}
.meet-dev-btn:hover { border-color: rgba(255,0,127,0.45); color: #ff007f; background: rgba(255,0,127,0.07); }
.meet-dev-btn i { font-size: 12px; }

/* ??? MODAL GERADOR QR DE ENCONTRO ??? */
.meet-qr-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 9992;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.meet-qr-overlay.active { opacity: 1; pointer-events: all; }

.meet-qr-box {
    background: linear-gradient(160deg, #130a1a 0%, #0a0a0a 100%);
    border: 1px solid rgba(255,0,127,0.40);
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 0 60px rgba(255,0,127,0.14), 0 24px 60px rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    transform: translateY(16px);
    transition: transform 0.26s ease;
}
.meet-qr-overlay.active .meet-qr-box { transform: translateY(0); }

.meet-qr-header { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.meet-qr-title {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 800; color: #ff007f;
    text-transform: uppercase; letter-spacing: 0.06em;
}

.meet-qr-dev-badge {
    font-size: 9px; font-weight: 900; padding: 2px 7px; border-radius: 999px;
    background: rgba(255,165,0,0.18); border: 1px solid rgba(255,165,0,0.45); color: #fb923c;
    letter-spacing: 0.1em;
}

.meet-qr-close {
    -webkit-appearance: none; appearance: none;
    width: 30px; height: 30px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.05);
    color: #9ca3af; font-size: 13px; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.15s ease;
}
.meet-qr-close:hover { background: rgba(255,255,255,0.12); color: #fff; }

.meet-qr-desc { font-size: 12px; color: rgba(255,255,255,0.5); text-align: center; line-height: 1.55; margin: 0; }
.meet-qr-desc strong { color: #ff007f; }

.meet-qr-img-wrap {
    position: relative; border-radius: 14px; overflow: hidden;
    border: 1.5px solid rgba(255,0,127,0.30); background: #0d0d0d;
}
.meet-qr-img { width: 200px; height: 200px; display: block; transition: opacity 0.4s ease, filter 0.4s ease; }

.meet-qr-img-expired-overlay {
    display: none; position: absolute; inset: 0;
    background: rgba(0,0,0,0.72);
    flex-direction: column; align-items: center; justify-content: center; gap: 8px;
    color: #ef4444; font-size: 13px; font-weight: 800;
    text-transform: uppercase; letter-spacing: 0.08em;
}
.meet-qr-img-expired-overlay i { font-size: 28px; }

.meet-qr-countdown-wrap { width: 100%; display: flex; align-items: center; gap: 10px; }
.meet-qr-bar-bg { flex: 1; height: 6px; background: rgba(255,255,255,0.08); border-radius: 999px; overflow: hidden; }
.meet-qr-bar { height: 100%; width: 100%; border-radius: 999px; background: #22c55e; transition: width 0.9s linear, background 0.9s ease; }
.meet-qr-timer { font-size: 13px; font-weight: 800; min-width: 52px; text-align: right; font-variant-numeric: tabular-nums; color: #22c55e; transition: color 0.9s ease; }

.meet-qr-payload-label { font-size: 9px; font-weight: 700; color: #374151; text-transform: uppercase; letter-spacing: 0.1em; margin: 0; align-self: flex-start; }
.meet-qr-payload-text { font-size: 9px; color: #374151; font-family: monospace; word-break: break-all; text-align: center; margin: -8px 0 0; line-height: 1.4; }

.meet-qr-cancel-btn {
    -webkit-appearance: none; appearance: none;
    display: inline-flex; align-items: center; gap: 6px;
    padding: 10px 28px; border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.04);
    color: #9ca3af; font-size: 12px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 0.06em; cursor: pointer; transition: background 0.18s ease;
}
.meet-qr-cancel-btn:hover { background: rgba(255,255,255,0.09); color: #fff; }

/* ??? BARRA DE A??ES DO PERFIL (?? ? ??) ??? */
.perfil-action-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 14px 0 24px;
}

.perfil-act-btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 10px;
    border-radius: 12px;
    border: 1px solid transparent;
    background: rgba(255,255,255,0.04);
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.perfil-act-btn i { font-size: 14px; flex-shrink: 0; }
.perfil-act-btn:hover { transform: translateY(-2px); }

.perfil-act-heart { border-color: rgba(255,60,100,0.3); }
.perfil-act-heart:hover { background: rgba(255,60,100,0.1); color: #ff6b8a; box-shadow: 0 4px 14px rgba(255,60,100,0.22); }

.perfil-act-fav { border-color: rgba(250,200,20,0.3); }
.perfil-act-fav:hover { background: rgba(250,200,20,0.09); color: #fbbf24; box-shadow: 0 4px 14px rgba(250,200,20,0.18); }

.perfil-act-elogio { border-color: rgba(168,85,247,0.3); }
.perfil-act-elogio:hover { background: rgba(168,85,247,0.1); color: #c084fc; box-shadow: 0 4px 14px rgba(168,85,247,0.2); }

/* Ac??o activa (toggle) */
.perfil-act-btn.is-active.perfil-act-heart  { background: rgba(255,60,100,0.15); color: #ff6b8a; border-color: #ff6b8a; }
.perfil-act-btn.is-active.perfil-act-fav    { background: rgba(250,200,20,0.13); color: #fbbf24; border-color: #fbbf24; }
.perfil-act-btn.is-active.perfil-act-elogio { background: rgba(168,85,247,0.13); color: #c084fc; border-color: #c084fc; }

@media (max-width: 480px) {
    .perfil-act-btn span { display: none; }
    .perfil-act-btn { padding: 13px; }
    .perfil-act-btn i { font-size: 18px; }
}

/* ??? BLOCO T?TULO + DESCRI??O (coluna esquerda) ??? */
.perfil-title-block {
    padding: 4px 0 24px;
}

.perfil-main-title {
    font-size: 30px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1.12;
    margin: 0 0 16px;
}

@media (max-width: 768px) {
    .perfil-main-title { font-size: 24px; }
}

.perfil-main-desc {
    font-size: 14px;
    line-height: 1.75;
    color: #9ca3af;
    margin: 0;
    white-space: pre-line;
    /* sem line-clamp ? texto completo */
}

/* ??? SEC??O DE ELOGIOS ??? */
.perfil-elogios {
    margin-top: 44px;
    padding: 28px 32px;
    background: rgba(255,255,255,0.022);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
}

.perfil-elogios-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 17px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 20px;
    letter-spacing: -0.01em;
}
.perfil-elogios-title i { color: #c084fc; }

.perfil-elogios-input-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 16px;
}

.perfil-elogios-textarea {
    width: 100%;
    min-height: 96px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    color: #4b5563;
    font-size: 14px;
    padding: 16px;
    resize: none;
    box-sizing: border-box;
    font-family: inherit;
    line-height: 1.5;
    cursor: not-allowed;
    filter: blur(1.5px);
    pointer-events: none;
    display: block;
}

.perfil-elogios-lock {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0,0,0,0.55);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    border-radius: 14px;
    cursor: pointer;
    border: 1px solid rgba(168,85,247,0.28);
    padding: 16px;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.perfil-elogios-lock:hover { border-color: rgba(168,85,247,0.55); background: rgba(0,0,0,0.65); }

.perfil-elogios-lock i {
    font-size: 24px;
    color: #c084fc;
    text-shadow: 0 0 14px rgba(168,85,247,0.65);
}

.perfil-elogios-lock > span {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    max-width: 240px;
    line-height: 1.4;
}

.perfil-elogios-upgrade {
    -webkit-appearance: none;
    appearance: none;
    padding: 8px 22px;
    border-radius: 999px;
    background: linear-gradient(135deg, #9d00ff, #c084fc);
    border: none;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    cursor: pointer;
    margin-top: 4px;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.perfil-elogios-upgrade:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(157,0,255,0.42); }

.perfil-elogios-empty {
    text-align: center;
    padding: 8px 0 4px;
    color: #4b5563;
    font-size: 13px;
    font-style: italic;
    margin: 0;
}

/* ??? BARRA INFERIOR (Voltar + Meta) ??????????????????????????? */
.perfil-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 32px;
}

/* Grupo direito: n� an�ncio + reportar */
.perfil-footer-meta {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Texto discreto do n� de an�ncio */
.perfil-ad-number {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.04em;
    font-family: 'Orbitron', monospace;
}
.perfil-ad-number span {
    color: rgba(255,255,255,0.38);
}

/* [HOTFIX] Bot�o Reportar Abuso � vis�vel por defeito com borda de aviso */
.perfil-report-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.35);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #f87171;
    cursor: pointer;
    padding: 0.4rem 0.85rem;
    transition: all 0.2s;
    line-height: 1.3;
    white-space: nowrap;
}
.perfil-report-btn:hover {
    background: rgba(239, 68, 68, 0.18);
    border-color: #f87171;
    color: #fca5a5;
    transform: translateY(-1px);
}
.perfil-report-btn i { font-size: 0.7rem; }

/* =============================================
   SCANNER DE FIDELIDADE ? LOYALTY CARD
   ============================================= */

.fid-scanner-wrap {
    margin-bottom: 16px;
}

/* ?rea da c?mara ? grande e cibern?tica */
.fid-reader-area {
    width: 100%;
    max-width: 500px;
    min-height: 200px;
    margin: 0 auto 12px;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(255, 0, 127, 0.55);
    background: #0d0d0d;
    box-shadow: 0 0 24px rgba(255, 0, 127, 0.18), inset 0 0 16px rgba(0,0,0,0.6);
    position: relative;
}

/* Placeholder quando c?mara est? inativa */
.fid-reader-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 36px 20px;
    color: #4b5563;
    text-align: center;
}
.fid-reader-placeholder i  { font-size: 40px; color: rgba(255, 0, 127, 0.35); }
.fid-reader-placeholder span { font-size: 12px; line-height: 1.5; }

/* Sobrescrever estilos internos da lib html5-qrcode dentro da ?rea de fidelidade */
.fid-reader-area #html5-qrcode-button-camera-permission,
.fid-reader-area #html5-qrcode-button-camera-start,
.fid-reader-area #html5-qrcode-button-camera-stop {
    background: rgba(255, 0, 127, 0.12) !important;
    border: 1px solid rgba(255, 0, 127, 0.4) !important;
    color: #ff007f !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    margin: 8px auto !important;
    display: block !important;
}
.fid-reader-area select {
    background: #1a1a1a !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #e5e7eb !important;
    border-radius: 6px !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
}

/* Bot?es de controlo do scanner */
.fid-scanner-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.fid-start-btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px solid rgba(255, 0, 127, 0.55);
    background: rgba(255, 0, 127, 0.10);
    color: #ff007f;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    box-shadow: 0 2px 14px rgba(255, 0, 127, 0.18);
}
.fid-start-btn:hover {
    background: rgba(255, 0, 127, 0.20);
    box-shadow: 0 6px 22px rgba(255, 0, 127, 0.35);
    transform: translateY(-2px);
}

.fid-simulate-btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 16px;
    border-radius: 12px;
    border: 1.5px dashed rgba(255, 255, 255, 0.20);
    background: rgba(255,255,255,0.04);
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background 0.18s ease, color 0.18s ease;
}
.fid-simulate-btn:hover { background: rgba(255,255,255,0.09); color: #9ca3af; }

/* Barra de progresso */
.fid-progress-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    padding: 0 2px;
}

.fid-progress-bar {
    flex: 1;
    height: 8px;
    background: rgba(255,255,255,0.07);
    border-radius: 999px;
    overflow: hidden;
}

.fid-progress-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, #ff007f, #9d00ff);
    transition: width 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
}

.fid-progress-label {
    font-size: 11px;
    font-weight: 700;
    color: #6b7280;
    white-space: nowrap;
    min-width: 80px;
    text-align: right;
}

/* =============================================
   MODAL RECOMPENSA FIDELIDADE ? DOURADO
   ============================================= */

.fid-reward-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 9995;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.fid-reward-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.fid-reward-box {
    position: relative;
    background: linear-gradient(160deg, #1c1500 0%, #0d0900 100%);
    border: 2px solid rgba(251, 191, 36, 0.55);
    border-radius: 28px;
    padding: 36px 28px 28px;
    width: 100%;
    max-width: 380px;
    text-align: center;
    box-shadow: 0 0 80px rgba(251, 191, 36, 0.22), 0 32px 80px rgba(0,0,0,0.8);
    overflow: hidden;
    transform: scale(0.85);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.fid-reward-overlay.active .fid-reward-box { transform: scale(1); }

.fid-reward-trophy {
    font-size: 64px;
    line-height: 1;
    -webkit-animation: fidTrophyBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation: fidTrophyBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
    display: block;
}
@-webkit-keyframes fidTrophyBounce {
    0%   { -webkit-transform: scale(0.2) rotate(-20deg); transform: scale(0.2) rotate(-20deg); opacity: 0; }
    100% { -webkit-transform: scale(1) rotate(0deg); transform: scale(1) rotate(0deg); opacity: 1; }
}
@keyframes fidTrophyBounce {
    0%   { transform: scale(0.2) rotate(-20deg); opacity: 0; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.fid-reward-title {
    font-size: 22px;
    font-weight: 900;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.fid-reward-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin: 0;
}
.fid-reward-sub strong { color: #fbbf24; }

.fid-reward-code-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.07);
    border: 1px solid rgba(251, 191, 36, 0.30);
    border-radius: 14px;
    padding: 16px 20px;
    width: 100%;
    box-sizing: border-box;
}

.fid-reward-code-label {
    font-size: 10px;
    font-weight: 700;
    color: rgba(251, 191, 36, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.fid-reward-code {
    font-size: 20px;
    font-weight: 900;
    color: #fbbf24;
    letter-spacing: 0.12em;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 0 12px rgba(251, 191, 36, 0.5);
}

.fid-reward-copy-btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 16px;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.45);
    background: rgba(251, 191, 36, 0.10);
    color: #fbbf24;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease;
}
.fid-reward-copy-btn:hover { background: rgba(251, 191, 36, 0.20); }

.fid-reward-close-btn {
    -webkit-appearance: none;
    appearance: none;
    padding: 12px 36px;
    border-radius: 999px;
    border: 1px solid rgba(251, 191, 36, 0.40);
    background: rgba(251, 191, 36, 0.10);
    color: #fbbf24;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.fid-reward-close-btn:hover {
    background: rgba(251, 191, 36, 0.20);
    box-shadow: 0 6px 22px rgba(251, 191, 36, 0.30);
    transform: translateY(-2px);
}

/* CONFETTI */
.fid-confetti-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
    border-radius: 28px;
}

.fid-confetti-piece {
    position: absolute;
    top: -12px;
    -webkit-animation: fidConfettiFall linear forwards;
    animation: fidConfettiFall linear forwards;
}
@-webkit-keyframes fidConfettiFall {
    0%   { -webkit-transform: translateY(-10px) rotate(0deg); transform: translateY(-10px) rotate(0deg); opacity: 1; }
    80%  { opacity: 1; }
    100% { -webkit-transform: translateY(520px) rotate(720deg); transform: translateY(520px) rotate(720deg); opacity: 0; }
}
@keyframes fidConfettiFall {
    0%   { transform: translateY(-10px) rotate(0deg); opacity: 1; }
    80%  { opacity: 1; }
    100% { transform: translateY(520px) rotate(720deg); opacity: 0; }
}

/* =============================================
   QR SCANNER ANTI-BURLA ? MODAL + SUCCESS
   ============================================= */

/* ?? OVERLAY base comum ?? */
.qr-scanner-overlay,
.qr-success-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: 9990;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s ease;
}
.qr-scanner-overlay.active,
.qr-success-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* ?? CAIXA DO SCANNER ?? */
.qr-scanner-box {
    background: linear-gradient(160deg, #141414 0%, #0d0d0d 100%);
    border: 1px solid rgba(0, 255, 136, 0.28);
    border-radius: 24px;
    padding: 24px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 60px rgba(0, 255, 136, 0.10), 0 24px 60px rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    gap: 16px;
    transform: translateY(20px);
    transition: transform 0.28s ease;
}
.qr-scanner-overlay.active .qr-scanner-box {
    transform: translateY(0);
}

.qr-scanner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.qr-scanner-title {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 15px;
    font-weight: 800;
    color: #00ff88;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.qr-scanner-title i { font-size: 16px; }

.qr-scanner-close-btn {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: #9ca3af;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.qr-scanner-close-btn:hover { background: rgba(255,255,255,0.12); color: #fff; }

.qr-scanner-instruction {
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    display: flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.5;
    margin: 0;
}
.qr-scanner-instruction i { color: #00ff88; margin-top: 1px; flex-shrink: 0; }

/* ?rea onde a c?mara renderiza */
.qr-reader-wrap {
    border-radius: 14px;
    overflow: hidden;
    background: #0a0a0a;
    min-height: 120px;
    border: 1px solid rgba(0, 255, 136, 0.15);
}
/* Sobrescrever estilos da lib html5-qrcode */
.qr-reader-wrap #html5-qrcode-button-camera-permission,
.qr-reader-wrap #html5-qrcode-button-camera-start,
.qr-reader-wrap #html5-qrcode-button-camera-stop {
    background: rgba(0, 255, 136, 0.12) !important;
    border: 1px solid rgba(0, 255, 136, 0.4) !important;
    color: #00ff88 !important;
    border-radius: 8px !important;
    padding: 8px 16px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    margin: 8px auto !important;
    display: block !important;
}
.qr-reader-wrap select {
    background: #1a1a1a !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #e5e7eb !important;
    border-radius: 6px !important;
    padding: 6px 10px !important;
    font-size: 12px !important;
}
.qr-reader-wrap img { border-radius: 10px; }

/* Bot?es de ac??o do scanner */
.qr-scanner-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.qr-simulate-btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1.5px dashed rgba(0, 255, 136, 0.45);
    background: rgba(0, 255, 136, 0.07);
    color: #00ff88;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease, transform 0.18s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.qr-simulate-btn:hover { background: rgba(0, 255, 136, 0.14); transform: translateY(-1px); }

.qr-cancel-btn {
    -webkit-appearance: none;
    appearance: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 11px 14px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.04);
    color: #9ca3af;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.18s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.qr-cancel-btn:hover { background: rgba(255,255,255,0.09); color: #fff; }

/* ?? MODAL DE SUCESSO ?? */
.qr-success-box {
    background: linear-gradient(160deg, #0d1f14 0%, #080d0a 100%);
    border: 1px solid rgba(0, 255, 136, 0.40);
    border-radius: 28px;
    padding: 36px 28px 28px;
    width: 100%;
    max-width: 360px;
    text-align: center;
    box-shadow: 0 0 80px rgba(0, 255, 136, 0.18), 0 32px 80px rgba(0,0,0,0.8);
    transform: scale(0.88);
    transition: transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.qr-success-overlay.active .qr-success-box {
    transform: scale(1);
}

/* Anel pulsante + ?cone checkmark */
.qr-success-icon-wrap {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4px;
}
.qr-success-ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid rgba(0, 255, 136, 0.5);
    -webkit-animation: qrSuccessRing 1.4s ease-out infinite;
    animation: qrSuccessRing 1.4s ease-out infinite;
}
@-webkit-keyframes qrSuccessRing {
    0%   { -webkit-transform: scale(1); transform: scale(1); opacity: 0.8; }
    100% { -webkit-transform: scale(1.7); transform: scale(1.7); opacity: 0; }
}
@keyframes qrSuccessRing {
    0%   { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.7); opacity: 0; }
}
.qr-success-icon {
    font-size: 52px;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.7), 0 0 40px rgba(0, 255, 136, 0.3);
    -webkit-animation: qrSuccessIconPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    animation: qrSuccessIconPop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    -webkit-animation-delay: 0.12s;
    animation-delay: 0.12s;
}
@-webkit-keyframes qrSuccessIconPop {
    0%   { -webkit-transform: scale(0.3); transform: scale(0.3); opacity: 0; }
    100% { -webkit-transform: scale(1);   transform: scale(1);   opacity: 1; }
}
@keyframes qrSuccessIconPop {
    0%   { transform: scale(0.3); opacity: 0; }
    100% { transform: scale(1);   opacity: 1; }
}

.qr-success-title {
    font-size: 20px;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 0 0 14px rgba(0, 255, 136, 0.35);
}
.qr-success-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    line-height: 1.55;
    margin: 0;
}
.qr-success-sub strong { color: #00ff88; }

.qr-success-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}
.qr-success-badges span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(0, 255, 136, 0.10);
    border: 1px solid rgba(0, 255, 136, 0.30);
    color: #00ff88;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.qr-success-close-btn {
    -webkit-appearance: none;
    appearance: none;
    padding: 12px 36px;
    border-radius: 999px;
    border: 1px solid rgba(0, 255, 136, 0.45);
    background: rgba(0, 255, 136, 0.10);
    color: #00ff88;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.qr-success-close-btn:hover {
    background: rgba(0, 255, 136, 0.20);
    box-shadow: 0 6px 22px rgba(0, 255, 136, 0.3);
    transform: translateY(-2px);
}

/* ?? CARD ANTI-BURLA ? "Bloco de Confian?a" ?? */
.perfil-antiburla-card {
    background: #1a1a1a;
    border: 1px solid rgba(0, 255, 136, 0.28);
    border-radius: 14px;
    padding: 18px 16px;
    margin-bottom: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    box-shadow: 0 0 22px rgba(0, 255, 136, 0.06);
}

.perfil-antiburla-card-header {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 11px;
    font-weight: 800;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.45);
}
.perfil-antiburla-card-header i { font-size: 13px; }

.perfil-antiburla-qr-img {
    width: 110px;
    height: 110px;
    border-radius: 10px;
    border: 1.5px solid rgba(0, 255, 136, 0.35);
    display: block;
    background: #0d0d0d;
}

.perfil-antiburla-card-label {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.55;
    margin: 0;
    max-width: 200px;
}

/* Hint para visitantes � indica que o QR s� a anunciante pode gerar */
.perfil-antiburla-owner-hint {
    font-size: 11px;
    color: #4b5563;
    font-style: italic;
    margin: 0;
    padding: 8px 12px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.08);
    text-align: center;
    line-height: 1.5;
}

.perfil-antiburla-scan-btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1.5px solid rgba(0, 255, 136, 0.55);
    background: rgba(0, 255, 136, 0.10);
    color: #00ff88;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 255, 136, 0.18);
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.perfil-antiburla-scan-btn:hover {
    background: rgba(0, 255, 136, 0.20);
    box-shadow: 0 6px 22px rgba(0, 255, 136, 0.35);
    transform: translateY(-2px);
}

/* ?? BOT�O GERADOR DE QR DIN�MICO ?? */
.perfil-antiburla-gen-btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 28px;
    border-radius: 999px;
    border: 2px solid #ff007f;
    background: linear-gradient(135deg, rgba(255,0,127,0.18) 0%, rgba(255,0,127,0.06) 100%);
    color: #ff007f;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    cursor: pointer;
    box-shadow: 0 0 24px rgba(255,0,127,0.25), 0 4px 14px rgba(0,0,0,0.40);
    -webkit-transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    transition: background 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    width: 100%;
    max-width: 280px;
}
.perfil-antiburla-gen-btn i {
    font-size: 15px;
    filter: drop-shadow(0 0 6px rgba(255,0,127,0.70));
}
.perfil-antiburla-gen-btn:hover {
    background: linear-gradient(135deg, rgba(255,0,127,0.32) 0%, rgba(255,0,127,0.12) 100%);
    box-shadow: 0 0 38px rgba(255,0,127,0.45), 0 6px 20px rgba(0,0,0,0.45);
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}
.perfil-antiburla-gen-btn:active {
    -webkit-transform: scale(0.97);
    transform: scale(0.97);
}

/* ?? CONTENTOR DO QR GERADO ?? */
.antiburla-qr-container {
    display: none;
    padding: 8px;
    background: #0d0d0d;
    border-radius: 12px;
    border: 2px solid rgba(0,255,136,0.45);
    box-shadow: 0 0 28px rgba(0,255,136,0.18);
    -webkit-animation: antiburla-qr-in 0.28s ease both;
    animation: antiburla-qr-in 0.28s ease both;
}
@-webkit-keyframes antiburla-qr-in {
    from { opacity: 0; -webkit-transform: scale(0.85); transform: scale(0.85); }
    to   { opacity: 1; -webkit-transform: scale(1);    transform: scale(1); }
}
@keyframes antiburla-qr-in {
    from { opacity: 0; -webkit-transform: scale(0.85); transform: scale(0.85); }
    to   { opacity: 1; -webkit-transform: scale(1);    transform: scale(1); }
}

/* ?? TEMPORIZADOR DE CONTAGEM ?? */
.antiburla-timer {
    font-size: 14px;
    font-weight: 900;
    color: #00ff88;
    letter-spacing: 0.06em;
    text-shadow: 0 0 10px rgba(0,255,136,0.60);
    margin: 0;
    -webkit-transition: color 0.3s, text-shadow 0.3s;
    transition: color 0.3s, text-shadow 0.3s;
}

/* Alerta vermelho pulsante nos �ltimos 5 segundos */
.antiburla-timer--warning {
    color: #ff4444;
    text-shadow: 0 0 14px rgba(255,68,68,0.80);
    -webkit-animation: antiburla-pulse 0.6s ease-in-out infinite alternate;
    animation: antiburla-pulse 0.6s ease-in-out infinite alternate;
}
@-webkit-keyframes antiburla-pulse {
    from { opacity: 1; }
    to   { opacity: 0.45; }
}
@keyframes antiburla-pulse {
    from { opacity: 1; }
    to   { opacity: 0.45; }
}

/* ??????????????????????????????????????????????????????????????????????
   MODAL CRIAR AN�NCIO � Design 100% isolado (n�o toca no layout global)
   ?????????????????????????????????????????????????????????????????????? */

/* Overlay */
.create-ad-overlay {
    position: fixed;
    inset: 0;
    z-index: 10500;
    background: rgba(0, 0, 0, 0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1rem 1rem 6rem; /* padding inferior para nav */
    overflow-y: auto;
}

/* Contentor principal */
.ad-form-container {
    background: linear-gradient(145deg, #111118, #0d0d14);
    border: 1px solid rgba(255, 0, 127, 0.25);
    border-radius: 20px;
    width: 100%;
    max-width: 720px;
    margin: auto;
    box-shadow: 0 0 60px rgba(255, 0, 127, 0.15), 0 30px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    animation: adFormSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes adFormSlideIn {
    from { opacity: 0; transform: translateY(-24px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0)    scale(1); }
}

/* Header */
.ad-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.75rem;
    background: linear-gradient(90deg, rgba(255,0,127,0.12), rgba(157,0,255,0.12));
    border-bottom: 1px solid rgba(255, 0, 127, 0.2);
}
.ad-form-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.ad-form-icon  { font-size: 2rem; line-height: 1; }
.ad-form-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}
.ad-form-subtitle {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    margin: 0.15rem 0 0;
}
.ad-form-close {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}
.ad-form-close:hover {
    background: rgba(255, 0, 127, 0.2);
    border-color: var(--neon-pink);
    color: #fff;
}

/* Body */
.ad-form-body { padding: 1.75rem; }

/* Grid 2 colunas (desktop) / 1 coluna (mobile) */
.ad-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.ad-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.ad-field--full { grid-column: 1 / -1; }

/* Labels */
.ad-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.ad-required { color: var(--neon-pink); margin-left: 2px; }

/* Inputs, selects, textarea */
.ad-input,
.ad-select,
.ad-textarea {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 0.9rem;
    font-family: inherit;
    padding: 0.65rem 0.9rem;
    width: 100%;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}
.ad-input:focus,
.ad-select:focus,
.ad-textarea:focus {
    border-color: var(--neon-pink);
    box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.12);
    background: rgba(255, 0, 127, 0.04);
}
.ad-input::placeholder,
.ad-textarea::placeholder { color: rgba(255,255,255,0.22); }

/* Select arrow personalizada */
.ad-select {
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23ff007f' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.85rem center;
    padding-right: 2.5rem;
}
.ad-select option { background: #111; color: #fff; }

.ad-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.6;
}
.ad-char-hint {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.28);
}

/* ?? Separador de sec��o dentro do formul�rio ??????????????????? */
.ad-section-sep {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255, 0, 127, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.5rem 0 0.25rem;
    border-bottom: 1px solid rgba(255, 0, 127, 0.18);
    margin-top: 0.25rem;
}
.ad-section-sep-hint {
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255,255,255,0.28);
    text-transform: none;
    letter-spacing: 0;
    margin-left: auto;
}

/* ── ad-field--half (metade da grelha) ─────────────────────────── */
.ad-field--half { grid-column: span 1; }
@media (max-width: 600px) { .ad-field--half { grid-column: 1 / -1; } }

/* ══════════════════════════════════════════════════════════════════
   TOGGLE SWITCH PREMIUM — Preferências de Contacto
   ══════════════════════════════════════════════════════════════════ */

.ad-toggle-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 14px 16px;
    cursor: pointer;
    transition: border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
    min-height: 72px;
}

.ad-toggle-card:has(input:checked) {
    border-color: rgba(99, 255, 190, 0.35);
    background: rgba(99, 255, 190, 0.04);
    box-shadow: 0 0 0 1px rgba(99, 255, 190, 0.12) inset;
}

.ad-toggle-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.ad-toggle-icon {
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.ad-toggle-icon--call {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.25);
    color: #4ade80;
}

.ad-toggle-icon--credits {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.25);
    color: #fbbf24;
}

.ad-toggle-text { flex: 1; min-width: 0; }

.ad-toggle-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ad-toggle-desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.38);
    margin-top: 2px;
    line-height: 1.4;
}

/* Switch visual */
.ad-toggle-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 26px;
    flex-shrink: 0;
    cursor: pointer;
}

.ad-toggle-input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.ad-toggle-slider {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.ad-toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px; height: 18px;
    left: 3px; top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    transition: transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.ad-toggle-input:checked + .ad-toggle-slider {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.35);
}

.ad-toggle-input:checked + .ad-toggle-slider::before {
    transform: translateX(20px) translateY(-50%);
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.3);
}

/* Cor especial para créditos: dourada */
#toggle-credits-card .ad-toggle-input:checked + .ad-toggle-slider {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.ad-toggle-input:focus-visible + .ad-toggle-slider {
    outline: 2px solid rgba(99, 255, 190, 0.6);
    outline-offset: 2px;
}

/* ══════════════════════════════════════════════════════════════════
   TRUST BADGES — Ad Cards e Perfil
   ══════════════════════════════════════════════════════════════════ */

/* Linha de badges nos ad-cards */
.ad-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

/* Badge base */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.trust-badge:hover {
    transform: translateY(-1px);
}

/* Badge: Live Call — neon verde/ciano */
.trust-badge--livecall {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.14), rgba(16, 185, 129, 0.14));
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.1);
}

.trust-badge--livecall:hover {
    box-shadow: 0 2px 14px rgba(34, 197, 94, 0.25);
}

/* Badge: Aceita Créditos — dourado/premium */
.trust-badge--credits {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.12), rgba(251, 191, 36, 0.12));
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #fbbf24;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.08);
}

.trust-badge--credits:hover {
    box-shadow: 0 2px 14px rgba(255, 215, 0, 0.22);
}

/* Badges no perfil (sidebar) — tamanho maior */
.perfil-trust-service-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.perfil-trust-service-badges .trust-badge {
    padding: 6px 14px;
    font-size: 0.78rem;
}

/* ?? Grid 3 colunas da Ficha T?cnica (2 em tablet, 1 em mobile) ? */
.ad-tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    width: 100%;
}
@media (max-width: 768px) {
    .ad-tech-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
    .ad-tech-grid { grid-template-columns: 1fr; }
}

/* Zona de upload */
.ad-upload-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    border: 2px dashed rgba(255, 0, 127, 0.35);
    border-radius: 12px;
    padding: 2rem 1rem;
    cursor: pointer;
    transition: all 0.25s;
    background: rgba(255, 0, 127, 0.03);
    text-align: center;
}
.ad-upload-zone:hover,
.ad-upload-zone.drag-over {
    border-color: var(--neon-pink);
    background: rgba(255, 0, 127, 0.08);
    box-shadow: 0 0 24px rgba(255, 0, 127, 0.12);
}
.ad-upload-icon  { font-size: 2.2rem; color: var(--neon-pink); opacity: 0.75; }
.ad-upload-text  { font-size: 0.95rem; font-weight: 600; color: #fff; }
.ad-upload-hint  { font-size: 0.72rem; color: rgba(255,255,255,0.32); }

/* Input file oculto (trigger pelo label) */
.ad-upload-input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

/* Grelha de pr�-visualiza��o */
.ad-photo-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.75rem;
}
.ad-thumb {
    position: relative;
    width: 82px;
    height: 82px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 127, 0.3);
    flex-shrink: 0;
}
.ad-thumb img { width: 100%; height: 100%; object-fit: cover; }
.ad-thumb-remove {
    position: absolute;
    top: 3px;
    right: 3px;
    background: rgba(0,0,0,0.72);
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.62rem;
    cursor: pointer;
    transition: background 0.2s;
}
.ad-thumb-remove:hover { background: rgba(255, 0, 127, 0.85); }

/* Footer */
.ad-form-footer {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    padding: 1.25rem 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    background: rgba(0,0,0,0.3);
}
.ad-btn-cancel {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 0.65rem 1.4rem;
    cursor: pointer;
    transition: all 0.2s;
}
.ad-btn-cancel:hover {
    border-color: rgba(255,255,255,0.3);
    color: #fff;
    background: rgba(255,255,255,0.08);
}
.ad-btn-submit {
    background: linear-gradient(135deg, #00c853, #00a846);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.7rem 1.8rem;
    cursor: pointer;
    transition: all 0.25s;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.3);
}
.ad-btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.55);
    background: linear-gradient(135deg, #00e060, #00c853);
}

/* CTA Card no Dashboard */
.create-ad-cta-card {
    display: block;
    width: 100%;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(0,200,83,0.04));
    border: 2px dashed rgba(0, 200, 83, 0.4);
    padding: 1.5rem;
    text-align: center;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
}
.create-ad-cta-card:hover {
    border-color: #00c853;
    background: linear-gradient(135deg, rgba(0,200,83,0.15), rgba(0,200,83,0.06));
    box-shadow: 0 0 30px rgba(0, 200, 83, 0.15);
    transform: translateY(-2px);
}
.create-ad-cta-icon  { font-size: 2.4rem; color: #00c853; margin-bottom: 0.4rem; }
.create-ad-cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #00c853;
    margin-bottom: 0.2rem;
}
.create-ad-cta-sub { font-size: 0.75rem; color: rgba(255,255,255,0.38); }

/* [NAV-FIX] Garante que a bottom nav fica sempre clicável acima de qualquer overlay */
nav.fixed.bottom-0 {
    z-index: 200 !important;
}

/* FAB "+" no nav */
.nav-create-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00c853, #00a846);
    border: none;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    margin-top: -20px;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.5), 0 4px 14px rgba(0,0,0,0.5);
    color: #fff;
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
}
.nav-create-btn:hover {
    transform: scale(1.12) translateY(-4px);
    box-shadow: 0 0 35px rgba(0, 200, 83, 0.75);
}
.nav-create-btn i { font-size: 1.3rem; }

/* Responsivo � 1 coluna em mobile */
@media (max-width: 640px) {
    .ad-form-grid            { grid-template-columns: 1fr; }
    .ad-form-body            { padding: 1.25rem; }
    .ad-form-header          { padding: 1.25rem; gap: 0.75rem; }
    .ad-form-footer          { padding: 1rem 1.25rem; flex-direction: column-reverse; gap: 0.5rem; }
    .ad-btn-cancel,
    .ad-btn-submit           { width: 100%; text-align: center; }
    .ad-form-title           { font-size: 1rem; }
}

/* ??????????????????????????????????????????????????????????????????????
   #INFO-MODAL � Smart Modal Unificado (Legal, Ajuda, Institucional)
   Substitui o #legal-modal inline. Design premium para leitura longa.
   ?????????????????????????????????????????????????????????????????????? */

.info-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 10800;
    background: rgba(0, 0, 0, 0.92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 1.5rem 1rem 2rem;
    overflow-y: auto;
}

.info-modal-box {
    background: linear-gradient(160deg, #0f0f18, #0a0a12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 760px;
    margin: auto;
    box-shadow: 0 0 80px rgba(0, 0, 0, 0.9), 0 0 30px rgba(157, 0, 255, 0.08);
    overflow: hidden;
    animation: infoModalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes infoModalIn {
    from { opacity: 0; transform: translateY(-20px) scale(0.98); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Cabe�alho */
.info-modal-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.5rem 1.75rem 1.25rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.025);
}
.info-modal-title-wrap { flex: 1; }
.info-modal-category {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neon-pink);
    margin-bottom: 0.3rem;
    opacity: 0.8;
}
.info-modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}
.info-modal-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 1.1rem;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.2s;
}
.info-modal-close:hover {
    background: rgba(255, 0, 127, 0.2);
    border-color: var(--neon-pink);
    color: #fff;
}

/* Corpo com scroll � textos longos */
.info-modal-body {
    padding: 1.75rem;
    max-height: 66vh;
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 0, 127, 0.3) transparent;
}
.info-modal-body::-webkit-scrollbar       { width: 5px; }
.info-modal-body::-webkit-scrollbar-track  { background: transparent; }
.info-modal-body::-webkit-scrollbar-thumb  { background: rgba(255, 0, 127, 0.35); border-radius: 3px; }

/* Tipografia do conte�do */
.info-modal-body h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--neon-pink);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 1.5rem 0 0.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 1px solid rgba(255, 0, 127, 0.15);
}
.info-modal-body h3:first-child { margin-top: 0; }
.info-modal-body p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    margin: 0 0 0.85rem;
}
.info-modal-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0.85rem;
}
.info-modal-body ul li {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    padding: 0.2rem 0 0.2rem 1.2rem;
    position: relative;
}
.info-modal-body ul li::before {
    content: '�';
    position: absolute;
    left: 0;
    color: var(--neon-pink);
    font-weight: 700;
}
.info-modal-body strong {
    color: #fff;
    font-weight: 600;
}
.info-modal-body .im-warning {
    background: rgba(239, 68, 68, 0.08);
    border-left: 3px solid #ef4444;
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    font-size: 0.82rem;
    color: #fca5a5;
    line-height: 1.6;
}
.info-modal-body .im-highlight {
    background: rgba(157, 0, 255, 0.08);
    border-left: 3px solid #9d00ff;
    border-radius: 0 8px 8px 0;
    padding: 0.75rem 1rem;
    margin: 1rem 0;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
}

/* Rodap� do modal */
.info-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.25);
    gap: 0.75rem;
    flex-wrap: wrap;
}
.info-modal-updated {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.22);
}
.info-modal-close-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.55rem 1.4rem;
    cursor: pointer;
    transition: all 0.2s;
}
.info-modal-close-btn:hover {
    border-color: var(--neon-pink);
    color: #fff;
    background: rgba(255, 0, 127, 0.1);
}

/* ══════════════════════════════════════════════════════════════════════
   FORMULÁRIO DE CONTACTO — dentro do #info-modal (.im-form-*)
   Isolado: não afecta nenhum outro layout do site.
   ══════════════════════════════════════════════════════════════════════ */
.im-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.2rem;
}
.im-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
}
.im-form-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}
.im-form-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.im-form-optional {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.35);
    text-transform: none;
}
.im-form-input,
.im-form-select,
.im-form-textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.88rem;
    padding: 0.6rem 0.85rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    -webkit-appearance: none;
    appearance: none;
}
.im-form-input:focus,
.im-form-select:focus,
.im-form-textarea:focus {
    border-color: var(--neon-pink);
    box-shadow: 0 0 0 3px rgba(255, 0, 127, 0.12);
    background: rgba(255, 255, 255, 0.07);
}
.im-form-input::placeholder,
.im-form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}
.im-form-select option {
    background: #1a1a2e;
    color: #fff;
}
.im-form-textarea {
    resize: vertical;
    min-height: 110px;
    line-height: 1.55;
}
.im-form-check {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}
.im-form-check-label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    cursor: pointer;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.45;
}
.im-form-checkbox {
    margin-top: 2px;
    accent-color: var(--neon-pink);
    width: 15px;
    height: 15px;
    flex-shrink: 0;
    cursor: pointer;
}
.im-form-link {
    background: none;
    border: none;
    color: var(--neon-pink);
    font-size: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.im-form-link:hover { color: #ff69b4; }
.im-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--neon-pink) 0%, #a855f7 100%);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 18px rgba(255, 0, 127, 0.28);
    align-self: flex-start;
    letter-spacing: 0.02em;
}
.im-form-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 0, 127, 0.4);
}
@media (max-width: 540px) {
    .im-form-row { grid-template-columns: 1fr; }
    .im-form-submit { align-self: stretch; width: 100%; }
}

/* Responsivo */
@media (max-width: 640px) {
    .info-modal-body   { padding: 1.25rem; max-height: 58vh; }
    .info-modal-header { padding: 1.25rem; }
    .info-modal-footer { padding: 0.85rem 1.25rem; }
    .info-modal-title  { font-size: 1rem; }
}

/* ══════════════════════════════════════════════════════════════════════
   COOKIE BANNER — RGPD / ePrivacy
   Fixo no rodapé, z-index 12000 (acima de todos os modais).
   ══════════════════════════════════════════════════════════════════════ */
#cookie-banner {
    position: fixed;
    bottom: 70px; /* fica acima da bottom nav (≈68px) para não bloquear cliques */
    left: 0;
    width: 100%;
    z-index: 12000;
    background: rgba(10, 10, 10, 0.97);
    border-top: 1px solid rgba(255, 0, 127, 0.25);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                opacity  0.4s ease;
    opacity: 1;
}
#cookie-banner.cookie-banner--hidden {
    transform: translateY(110%);
    opacity: 0;
    pointer-events: none;
}
.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.9rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cookie-banner__icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.cookie-banner__text {
    flex: 1;
    font-size: 0.83rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.55;
    min-width: 200px;
}
.cookie-banner__text strong {
    color: #fff;
}
.cookie-banner__link {
    background: none;
    border: none;
    color: var(--neon-pink, #ff007f);
    font-size: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-weight: 600;
}
.cookie-banner__link:hover { color: #ff69b4; }
.cookie-banner__actions {
    display: flex;
    gap: 0.6rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.cookie-banner__btn {
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 0.55rem 1.1rem;
    transition: opacity 0.2s, transform 0.15s;
    white-space: nowrap;
}
.cookie-banner__btn:hover {
    opacity: 0.88;
    transform: translateY(-1px);
}
.cookie-banner__btn--accept {
    background: linear-gradient(135deg, #00c853 0%, #00897b 100%);
    color: #fff;
    box-shadow: 0 3px 12px rgba(0, 200, 83, 0.3);
}
.cookie-banner__btn--essential {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.75);
}
.cookie-banner__btn--essential:hover {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}
@media (max-width: 600px) {
    .cookie-banner__inner  { padding: 0.75rem 1rem; gap: 0.75rem; }
    .cookie-banner__actions { width: 100%; justify-content: flex-end; }
}

/* ????????????????????????????????????????????????????????????????????
   LIGHTBOX GALLERY � Galeria Imersiva de Ecr� Inteiro
   ???????????????????????????????????????????????????????????????????? */

.lb-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    -webkit-animation: lb-fade-in 0.22s ease both;
    animation: lb-fade-in 0.22s ease both;
}
@-webkit-keyframes lb-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes lb-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ?? Imagem central ?? */
.lb-img-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    padding: 0 8px;
}

.lb-img {
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    display: block;
    margin: auto;
    box-shadow: 0 24px 90px rgba(0, 0, 0, 0.80);
    -webkit-transition: opacity 0.15s ease;
    transition: opacity 0.15s ease;
}

/* ?? Bot�o fechar ?? */
.lb-close {
    position: fixed;
    top: 14px;
    right: 14px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.72);
    color: rgba(255, 255, 255, 0.80);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    -webkit-transition: background 0.18s, border-color 0.18s, color 0.18s, -webkit-transform 0.18s;
    transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.lb-close:hover {
    background: rgba(255, 0, 127, 0.28);
    border-color: #ff007f;
    color: #ff007f;
    -webkit-transform: scale(1.12) rotate(90deg);
    transform: scale(1.12) rotate(90deg);
}

/* ?? Setas de navega��o ?? */
.lb-nav {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.14);
    background: rgba(0, 0, 0, 0.58);
    color: rgba(255, 255, 255, 0.75);
    font-size: 22px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    margin: 0 10px;
    -webkit-transition: background 0.18s, border-color 0.18s, color 0.18s, -webkit-transform 0.18s;
    transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.lb-nav:hover {
    background: rgba(255, 0, 127, 0.22);
    border-color: #ff007f;
    color: #ff007f;
    -webkit-transform: scale(1.14);
    transform: scale(1.14);
}
.lb-nav:active {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
}

/* ?? Contador (ex: "2 / 5") ?? */
.lb-counter {
    position: fixed;
    bottom: 18px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.10em;
    color: rgba(255, 255, 255, 0.50);
    pointer-events: none;
    z-index: 10001;
    text-transform: uppercase;
}

/* ?? Mobile: setas um pouco menores ?? */
@media (max-width: 480px) {
    .lb-nav { width: 46px; height: 46px; font-size: 18px; margin: 0 5px; }
    .lb-img  { max-width: 95vw; max-height: 85vh; }
}

/* Hero image click�vel � indica que abre o lightbox */
.perfil-img-wrap { cursor: zoom-in; }

/* QR CODE PREMIUM */
.qr-premium-btn {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 255, 136, 0.05));
    border: 2px solid #00ff88;
    border-radius: 12px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #00ff88;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.2);
    animation: qrPulse 3s ease-in-out infinite;
}

.qr-premium-btn:hover {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(0, 255, 136, 0.1));
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    transform: scale(1.1);
    animation: none;
}

@keyframes qrPulse {
    0%, 100% { box-shadow: 0 0 10px rgba(0, 255, 136, 0.2); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 136, 0.5); }
}

/* Modal QR Code */
.qr-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    /* [M-04 FIX] Prefixo webkit adicionado ? blur funciona agora em Safari/iOS */
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    /* [M-03 FIX] z-index 1100 ? abaixo do video-modal (1200) mas acima do resto.
       Hierarquia: qr-modal(1100) < video-modal(1200) < modais premium(9500+) */
    z-index: 1100;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.qr-modal.active {
    opacity: 1;
    visibility: visible;
}

.qr-modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 2px solid #00ff88;
    border-radius: 16px;
    padding: 24px;
    max-width: 400px;
    width: 90%;
    max-height: 80vh;
    overflow: visible;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.qr-modal.active .qr-modal-content {
    transform: scale(1) translateY(0);
}

.qr-code-display {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    position: relative;
}

.qr-container {
    position: relative;
    overflow: hidden;
}

/* SMARTPHONE SCANNER PREMIUM */
.smartphone-scanner {
    position: relative;
    width: 280px;
    height: 70vh;
    max-height: 500px;
    margin: 0 auto;
}

.smartphone-frame {
    position: relative;
    margin: auto;
    background: linear-gradient(135deg, #1a1a1a, #0f0f0f);
    border-radius: 30px;
    border: 8px solid #333;
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
    z-index: 1;
    pointer-events: none;
}

.smartphone-screen {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    z-index: 3;
}

.smartphone-speaker {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 6px;
    background: #333;
    border-radius: 3px;
}

.smartphone-camera {
    position: absolute;
    top: 12px;
    right: 30px;
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
}

.qr-scanner-container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #0a0a0a, #000);
}

.scanner-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(0,0,0,0.8);
    border-bottom: 1px solid #333;
}

.scanner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
}

.scanner-dot.red { background: #ff5f57; }
.scanner-dot.yellow { background: #ffbd2e; }
.scanner-dot.green { background: #28ca42; }

.scanner-title {
    color: #00ff88;
    font-size: 12px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
}

.qr-display-area {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 20px;
}

.qr-code-image {
    width: 180px;
    height: 180px;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
}

/* SCANNER LASER ATIVO */
.scanner-laser,
.scanner-laser-active {
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    right: 20px !important;
    height: 4px !important;
    background: linear-gradient(90deg, transparent, #00ff00, #00ff88, #00ff00, transparent) !important;
    box-shadow: 0 0 20px #00ff00, 0 0 40px #00ff00, 0 0 60px #00ff00 !important;
    animation: laserScan 2s linear infinite !important;
    -webkit-animation: laserScan 2s linear infinite !important;
    pointer-events: none !important;
    z-index: 999 !important;
    display: block !important;
    /* ACELERA??O DE HARDWARE PARA ANIMA??O FLUIDA */
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;

/* ===========================================
   ESTILOS PARA FILTROS AVAN?ADOS
   =========================================== */

/* CHECKBOXES PERSONALIZADOS */
.filter-body-checkbox,
.filter-services-checkbox {
    accent-color: #ff0080;
    transform: scale(1.1);
    margin-right: 8px;
}

.filter-body-checkbox:checked,
.filter-services-checkbox:checked {
    background-color: #ff0080;
    border-color: #ff0080;
}

/* EMPTY STATE */
.empty-state {
    animation: fadeIn 0.3s ease-in-out;
}

.empty-results {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(156, 163, 175, 0.1));
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* CONTADOR DE RESULTADOS ANIMADO */
#filter-results {
    transition: all 0.3s ease;
    font-weight: 500;
}

#filter-results .text-neon-pink {
    color: #ff0080;
    text-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

/* FADE IN ANIMATION */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================================
   AD BADGES SYSTEM - PROVA SOCIAL
   =========================================== */

/* Container de badges sobrepostos na imagem */
.ad-badges {
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

/* Badge base styling */
.ad-badges span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

/* Badge VERIFICADO */
.badge-verified {
    background: linear-gradient(135deg, rgba(255, 0, 128, 0.9), rgba(255, 0, 128, 0.7));
    color: white;
    border-color: rgba(255, 0, 128, 0.5);
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

/* Badge NOVO */
.badge-new {
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.9), rgba(0, 255, 136, 0.7));
    color: white;
    border-color: rgba(0, 255, 136, 0.5);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* Badge PREMIUM */
.badge-premium {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 215, 0, 0.7));
    color: #000;
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Badge icon styling */
.ad-badges svg {
    width: 12px !important;
    height: 12px !important;
}

/* ===========================================
   SERVICE TAGS - VISUAL PILLS
   =========================================== */

.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

/* Service tag variations */
.service-tag.incall {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.1));
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.3);
}

.service-tag.outcall {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    color: #3b82f6;
    border-color: rgba(59, 130, 246, 0.3);
}

.service-tag.massage {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
}

.service-tag.couple {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.1));
    color: #ec4899;
    border-color: rgba(236, 72, 153, 0.3);
}

.service-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ===========================================
   FOOTER INSTITUCIONAL
   =========================================== */

footer {
    background: linear-gradient(135deg, #0a0a0a 0%, #050505 100%);
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-pink), transparent);
    opacity: 0.5;
}

footer h3 {
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

footer a {
    transition: all 0.3s ease;
    position: relative;
}

footer a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

footer a:hover::after {
    width: 100%;
}

/* Social icons */
footer .fab {
    font-size: 18px;
    transition: all 0.3s ease;
}

footer .fab:hover {
    transform: scale(1.2);
}

/* SSL indicator */
footer .fa-lock {
    color: #22c55e;
    animation: sslPulse 3s ease-in-out infinite;
}

@keyframes sslPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes badgeGlow {
    0% { box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }
    100% { box-shadow: 0 0 15px rgba(0, 0, 0, 0.5); }
}

/* ===========================================
   LEGAL MODALS - MODAIS JUR?DICOS
   =========================================== */

/* Overlay do modal */
.legal-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: all 0.3s ease;
}

/* Classe hidden para ocultar */
.legal-modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Conte?do do modal */
.legal-modal-content {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border: 2px solid var(--neon-purple);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(157, 0, 255, 0.3);
    animation: modalGlow 0.3s ease-out;
}

/* Cabe?alho do modal */
.legal-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-modal-header h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--neon-purple);
    margin: 0;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.legal-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Corpo do modal com scroll */
.legal-modal-body {
    padding: 24px;
    max-height: calc(80vh - 160px);
    overflow-y: auto;
}

.legal-modal-body::-webkit-scrollbar {
    width: 6px;
}

.legal-modal-body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.legal-modal-body::-webkit-scrollbar-thumb {
    background: var(--neon-purple);
    border-radius: 3px;
}

.legal-modal-body::-webkit-scrollbar-thumb:hover {
    background: var(--neon-pink);
}

/* Estilos de texto no modal */
.legal-modal-body strong {
    color: var(--neon-pink);
    font-weight: 600;
}

.legal-modal-body p {
    margin-bottom: 16px;
    line-height: 1.6;
}

.legal-modal-body ul {
    margin-left: 20px;
    margin-bottom: 16px;
}

.legal-modal-body li {
    margin-bottom: 8px;
    list-style-type: disc;
    color: #ccc;
}

/* Rodap? do modal */
.legal-modal-footer {
    padding: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: flex-end;
}

.legal-modal-footer .cyber-btn-apply {
    background: linear-gradient(135deg, var(--neon-purple) 0%, var(--neon-pink) 100%);
    border: 1px solid var(--neon-purple);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.legal-modal-footer .cyber-btn-apply:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
}

/* Anima??o do modal */
@keyframes modalGlow {
    0% {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Responsividade */
@media (max-width: 768px) {
    .legal-modal-content {
        max-width: 95vw;
        margin: 20px;
    }

    .legal-modal-header,
    .legal-modal-body,
    .legal-modal-footer {
        padding: 16px;
    }

    .legal-modal-body {
        max-height: calc(80vh - 120px);
    }

    .legal-modal-header h2 {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .legal-modal-overlay {
        padding: 10px;
    }

    .legal-modal-content {
        max-width: 100vw;
        margin: 10px;
    }

    .legal-modal-body {
        font-size: 14px;
    }
}

/* ===========================================
   SAFE MODE - PRIVACY PROTECTION
   =========================================== */

/* Safe Mode ativado globalmente */
[data-safe-mode="true"] .ad-card-image {
    filter: blur(15px) !important;
    transition: filter 0.3s ease !important;
    will-change: filter;
}

/* Hover remove blur apenas da imagem espec?fica */
[data-safe-mode="true"] .ad-card:hover .ad-card-image {
    filter: blur(0px) !important;
}

/* Toggle switch styling */
#safe-mode-toggle {
    background-color: #4b5563;
    transition: background-color 0.2s ease;
}

#safe-mode-toggle.bg-neon-pink {
    background-color: #ff0080;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.5);
}

#safe-mode-indicator {
    transition: transform 0.2s ease;
}

/* ===========================================
   ADVANCED SEARCH STYLING
   =========================================== */

/* Input de telefone */
#filter-phone {
    background: linear-gradient(135deg, #1f2937, #374151);
    border: 2px solid #4b5563;
    transition: all 0.3s ease;
}

#filter-phone:focus {
    border-color: #ff0080;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.3);
}

/* Checkboxes de localiza??o */
.filter-location-checkbox {
    accent-color: #ff0080;
    transform: scale(1.1);
    margin-right: 8px;
}

.filter-location-checkbox:checked {
    background-color: #ff0080;
    border-color: #ff0080;
}

/* Responsividade melhorada */
@media (max-width: 640px) {
    #safe-mode-toggle + span {
        display: none;
    }
}
}

@keyframes activeLaserScan {
    0% { top: 20px; opacity: 0; transform: scaleY(0.5); }
    5% { opacity: 1; transform: scaleY(1); }
    95% { opacity: 1; transform: scaleY(1); }
    100% { top: calc(100% - 43px); opacity: 0; transform: scaleY(0.5); }
}

@-webkit-keyframes activeLaserScan {
    0% { top: 20px; opacity: 0; transform: scaleY(0.5); }
    5% { opacity: 1; transform: scaleY(1); }
    95% { opacity: 1; transform: scaleY(1); }
    100% { top: calc(100% - 43px); opacity: 0; transform: scaleY(0.5); }
}

@keyframes laserScan {
    0% { top: 20px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% - 43px); opacity: 0; }
}

@-webkit-keyframes laserScan {
    0% { top: 20px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: calc(100% - 43px); opacity: 0; }
}

.scanner-footer {
    padding: 15px 20px;
    background: rgba(0,0,0,0.8);
    border-top: 1px solid #333;
}

.scanner-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #00ff88;
    font-size: 14px;
    font-weight: bold;
}

.status-text {
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* TEXTO ANTI-BURLA PREMIUM */
.anti-burla-notice {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(0,200,83,0.1), rgba(0,255,136,0.05));
    border: 2px solid #00ff88;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.notice-icon {
    font-size: 40px;
    color: #00ff88;
    text-shadow: 0 0 15px #00ff88;
}

.notice-text h3 {
    color: #00ff88;
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 5px 0;
    font-family: 'Orbitron', sans-serif;
}

.notice-text p {
    color: #00ff88;
    font-size: 14px;
    margin: 0 0 10px 0;
    opacity: 0.9;
}

.security-code {
    background: rgba(0,0,0,0.5);
    color: #00ff88;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: 'Orbitron', monospace;
    font-size: 12px;
    border: 1px solid #00ff88;
    display: inline-block;
}

/* Anti-Burla Cyberpunk */
.security-box {
    background: linear-gradient(135deg, rgba(0,200,83,0.2) 0%, rgba(0,200,83,0.1) 100%);
    color: #00ff88;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 255, 136, 0.3);
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.2);
}

.dynamic-code {
    font-family: 'Orbitron', monospace;
    background: rgba(0,0,0,0.8);
    color: #00ff88;
    padding: 15px 30px;
    border-radius: 12px;
    border: 2px dashed #00ff88;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    letter-spacing: 5px;
    text-shadow: 0 0 10px #00ff88;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.2);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

/* Buttons Neon */
.btn-neon {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--glow-pink);
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-neon:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.6);
}

.btn-neon:active {
    transform: translateY(0);
}

.btn-outline-neon {
    background: transparent;
    border: 2px solid var(--neon-pink);
    color: var(--neon-pink);
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-outline-neon:hover {
    background: rgba(255, 0, 127, 0.1);
    box-shadow: var(--glow-pink);
}

/* Credit Store Cards */
.credit-package {
    background: linear-gradient(135deg, #151515 0%, #1f0f1f 100%);
    border: 1px solid rgba(255, 0, 127, 0.3);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.credit-package.popular {
    border-color: var(--neon-pink);
    box-shadow: 0 0 30px rgba(255, 0, 127, 0.3);
}

.credit-package.popular::before {
    content: 'POPULAR';
    position: absolute;
    top: 10px;
    right: -30px;
    background: var(--neon-pink);
    color: white;
    padding: 4px 40px;
    font-size: 10px;
    font-weight: bold;
    transform: rotate(45deg);
    font-family: 'Orbitron', sans-serif;
}

/* Live Call Button */
.btn-live {
    background: linear-gradient(135deg, #ff0055, #ff5500);
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 15px rgba(255, 0, 85, 0.5);
    animation: pulse-live 2s infinite;
    transition: all 0.3s;
}

@keyframes pulse-live {
    0%, 100% { box-shadow: 0 0 15px rgba(255, 0, 85, 0.5); }
    50% { box-shadow: 0 0 25px rgba(255, 0, 85, 0.8); }
}

.btn-live:hover {
    transform: scale(1.05);
}

.btn-live:disabled {
    background: #333;
    animation: none;
    box-shadow: none;
    cursor: not-allowed;
}

/* Video Call Modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.9);
    /* [M-04 FIX] Prefixo webkit ? blur funciona em Safari/iOS */
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    /* [M-03 FIX] Elevado para 1200 ? fica acima de .qr-modal (1100)
       para o video-modal nunca ficar tapado pelo QR se ambos abrirem. */
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.video-modal {
    background: linear-gradient(135deg, #151515, #1a0a1a);
    border: 2px solid var(--neon-pink);
    border-radius: 20px;
    width: 100%;
    max-width: 400px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 0, 127, 0.3);
}

.video-screen {
    aspect-ratio: 3/4;
    background: linear-gradient(135deg, #1a1a2e, #0f0f1a);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-screen::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect width="100" height="100" fill="none" stroke="rgba(255,0,127,0.1)" stroke-width="0.5"/></svg>');
    background-size: 20px 20px;
    opacity: 0.3;
}

.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--neon-pink);
    box-shadow: 0 0 10px var(--neon-pink);
    animation: scan 3s linear infinite;
    opacity: 0.5;
}

@keyframes scan {
    0% { top: 0%; }
    100% { top: 100%; }
}

/* Credit Badge */
.credit-badge {
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.2), rgba(157, 0, 255, 0.2));
    border: 1px solid rgba(255, 0, 127, 0.5);
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'Orbitron', sans-serif;
    font-weight: bold;
    color: var(--neon-pink);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--glow-pink);
}

/* Partner Online Styles */
.online-partner {
    position: relative;
    animation: partnerGlow 2s ease-in-out infinite alternate;
}

.online-partner::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ff007f, #9d00ff, #ff007f);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(4px);
}

@keyframes partnerGlow {
    0% { box-shadow: 0 0 5px rgba(255, 0, 127, 0.3); }
    100% { box-shadow: 0 0 20px rgba(255, 0, 127, 0.6), 0 0 30px rgba(157, 0, 255, 0.4); }
}

/* WhatsApp Button Styles */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.btn-whatsapp:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.6);
}

.visit-counter {
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.8), rgba(255, 0, 127, 0.8));
    border: 1px solid rgba(157, 0, 255, 0.5);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    display: inline-block;
    margin-left: 8px;
}

/* Chat Styles - Cyberpunk Bubbles */
.chat-bubble {
    max-width: 70%;
    padding: 12px 16px;
    border-radius: 18px;
    position: relative;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 1.4;
}

.chat-bubble.user {
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.8), rgba(157, 0, 255, 0.6));
    color: white;
    margin-left: auto;
    border: 1px solid rgba(157, 0, 255, 0.5);
    box-shadow: 0 0 15px rgba(157, 0, 255, 0.4);
}

.chat-bubble.user::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -8px;
    width: 0;
    height: 0;
    border-left: 8px solid rgba(157, 0, 255, 0.8);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.chat-bubble.partner {
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.8), rgba(255, 0, 127, 0.6));
    color: white;
    margin-right: auto;
    border: 1px solid rgba(255, 0, 127, 0.5);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
}

.chat-bubble.partner::after {
    content: '';
    position: absolute;
    top: 15px;
    left: -8px;
    width: 0;
    height: 0;
    border-right: 8px solid rgba(255, 0, 127, 0.8);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.chat-bubble.system {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.8), rgba(0, 200, 83, 0.6));
    color: white;
    margin: 0 auto;
    border: 1px solid rgba(0, 200, 83, 0.5);
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.4);
    text-align: center;
    max-width: 80%;
}

.chat-timestamp {
    font-size: 10px;
    opacity: 0.7;
    margin-top: 4px;
}

.chat-notification {
    animation: chatGlow 1s ease-in-out infinite alternate;
}

@keyframes chatGlow {
    0% {
        box-shadow: 0 0 10px rgba(255, 0, 127, 0.5);
        transform: scale(1);
    }
    100% {
        box-shadow: 0 0 20px rgba(255, 0, 127, 0.8);
        transform: scale(1.05);
    }
}

/* [S-04 FIX] .minimal-search-btn + variantes removidas ? nenhum elemento no HTML usa
   esta classe. O bot?o de pesquisa usa .search-toggle-btn (definida abaixo). */

        /* Overlay de Pesquisa - Por Cima dos An?ncios */
        .search-overlay-full {
            position: fixed;
            top: 140px; /* Abaixo das barras de faturamento e header */
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0,0,0,0.8);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            z-index: 95;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 40px;
        }

.search-overlay-full.active {
    opacity: 1;
    visibility: visible;
}

.search-overlay-content {
    background: linear-gradient(135deg, rgba(10,10,10,0.95) 0%, rgba(21,21,21,0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.8);
    min-width: 320px;
    max-width: 90vw;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.search-overlay-full.active .search-overlay-content {
    transform: translateY(0);
}

.search-submit-btn {
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    color: white;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 10px 16px;
    font-weight: bold;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.3);
}

.search-submit-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.6);
    border-color: var(--neon-pink);
}

/* Loyalty Card Stamp Styles */
.stamp-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 0, 127, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, rgba(10,10,10,0.8), rgba(21,21,21,0.8));
    position: relative;
    overflow: hidden;
}

.stamp-circle::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255, 0, 127, 0.1), transparent);
    transition: transform 0.5s ease;
    transform: rotate(0deg);
}

.stamp-circle:hover {
    border-color: rgba(255, 0, 127, 0.8);
    box-shadow: 0 0 15px rgba(255, 0, 127, 0.4);
    transform: scale(1.05);
}

.stamp-circle:hover::before {
    transform: rotate(180deg);
}

.stamp-circle.filled {
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.8), rgba(157, 0, 255, 0.8));
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.6), inset 0 0 20px rgba(255, 0, 127, 0.3);
    animation: stampPulse 2s ease-in-out infinite;
}

.stamp-circle.filled::after {
    content: '?';
    color: white;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

@keyframes stampPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 127, 0.6), inset 0 0 20px rgba(255, 0, 127, 0.3); }
    50% { box-shadow: 0 0 30px rgba(255, 0, 127, 0.9), inset 0 0 30px rgba(255, 0, 127, 0.5); }
}

.stamp-number {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: bold;
}

/* Utils */
.hidden { display: none !important; }

/* Header: Desktop mostra botões (≥768px), Mobile mostra hambúrguer (<768px) */
.header-controls-desktop {
    display: none !important;
}
@media (min-width: 768px) {
    .header-controls-desktop {
        display: flex !important;
    }
}
.header-controls-mobile {
    display: flex !important;
}
@media (min-width: 768px) {
    .header-controls-mobile {
        display: none !important;
    }
}
/* [M-06 FIX] .section consolidada: a defini??o parcial (transition apenas) que
   existia no topo do ficheiro foi removida. Esta ? agora a ?nica defini??o. */
.section {
    display: none;
    transition: margin-top 0.4s ease;
    animation: fadeIn 0.4s ease-out;
}
.section.active { display: block; }

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); filter: blur(10px); }
    to { opacity: 1; transform: translateY(0); filter: none; }
}

.text-neon-pink { color: var(--neon-pink); }
.text-neon-purple { color: var(--neon-purple); }
.bg-neon-pink { background-color: var(--neon-pink); }

.toast {
    position: fixed;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: linear-gradient(135deg, #151515, #1a1a1a);
    border: 1px solid var(--neon-pink);
    color: white;
    padding: 16px 32px;
    border-radius: 30px;
    opacity: 0;
    pointer-events: none; /* invisível = nunca bloqueia cliques na nav */
    transition: all 0.3s;
    /* [A-03 FIX] Elevado para 11000 — acima do lightbox (9999), auth (10500),
       welcome (10000) e store modals. Toasts sempre visíveis ao utilizador. */
    z-index: 11000;
    font-family: 'Orbitron', sans-serif;
    box-shadow: var(--glow-pink);
    text-align: center;
    max-width: 90%;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto; /* visível = aceita cliques normalmente */
}

/* Scrollbar Cyberpunk */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #0a0a0a;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--neon-pink), var(--neon-purple));
    border-radius: 4px;
}

/* Inputs */
input, select {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-family: 'Rajdhani', sans-serif;
    font-size: 16px;
    transition: all 0.3s;
}

input:focus, select:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 10px rgba(255, 0, 127, 0.3);
}

input::placeholder {
    color: rgba(255,255,255,0.3);
}

        /* [M-05/S-07 FIX] BARRA DE PESQUISA PROFISSIONAL ? bloco can?nico ?nico.
           As 9+ defini??es fragmentadas (com gap sem unidade, opacity/transform duplicados,
           e .show duplicado) foram consolidadas aqui. */
        .search-professional-bar {
            -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 20px rgba(0,0,0,0.8);
            border-bottom: 1px solid rgba(255,255,255,0.1);
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.4s ease;
        }
        .search-professional-bar.show {
            opacity: 1;
            transform: translateY(0);
        }
        @media (max-width: 768px) {
            .search-professional-bar {
                padding: 1rem 0.75rem;
                /* Limitar altura ao espaço disponível entre a top-bar e o fundo do ecrã,
                   e permitir scroll interno para que o botão Aplicar fique acessível. */
                max-height: calc(100dvh - 52px);
                max-height: calc(100vh - 52px); /* fallback para browsers sem dvh */
                overflow-y: auto;
                -webkit-overflow-scrolling: touch;
            }
            /* Padding-bottom extra para o scroll poder empurrar o botão Aplicar
               acima da bottom nav (≈68px) com folga extra de ~40px. */
            .search-professional-bar .max-w-7xl {
                padding-bottom: 110px;
            }
            .search-professional-bar .grid {
                grid-template-columns: 1fr;
                gap: 0.5rem; /* [M-05 FIX] era "gap: 2 !important" (unidade em falta) */
            }
        }
        @media (max-width: 640px) {
            .search-professional-bar .grid {
                grid-template-columns: 1fr;
            }
        }

        .cyber-select {
            background: rgba(26, 26, 26, 0.8) !important;
            border: 1px solid rgba(255, 0, 127, 0.3) !important;
            color: white !important;
            font-family: 'Rajdhani', sans-serif !important;
            font-size: 14px !important;
            transition: all 0.3s ease !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
        }

        .cyber-select:focus {
            border-color: var(--neon-pink) !important;
            box-shadow: 0 0 10px rgba(255, 0, 127, 0.5) !important;
            background: rgba(26, 26, 26, 0.9) !important;
        }

        .cyber-select option {
            background: #1a1a1a !important;
            color: white !important;
            padding: 8px !important;
        }

        .cyber-input {
            background: rgba(26, 26, 26, 0.8) !important;
            border: 1px solid rgba(0, 200, 83, 0.3) !important;
            color: white !important;
            font-family: 'Rajdhani', sans-serif !important;
            font-size: 14px !important;
            transition: all 0.3s ease !important;
            backdrop-filter: blur(10px) !important;
            -webkit-backdrop-filter: blur(10px) !important;
        }

        .cyber-input:focus {
            border-color: #00ff88 !important;
            box-shadow: 0 0 10px rgba(0, 255, 136, 0.5) !important;
            background: rgba(26, 26, 26, 0.9) !important;
        }

        .cyber-btn-filter {
            background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple)) !important;
            color: white !important;
            font-family: 'Orbitron', sans-serif !important;
            font-weight: 700 !important;
            font-size: 14px !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            transition: all 0.3s ease !important;
            border: 2px solid transparent !important;
            box-shadow: 0 0 15px rgba(255, 0, 127, 0.4) !important;
        }

        .cyber-btn-filter:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 0 25px rgba(255, 0, 127, 0.8) !important;
            border-color: rgba(255, 0, 127, 0.6) !important;
        }

        .cyber-btn-filter:active {
            transform: translateY(0) !important;
        }

        /* [M-05 FIX] Bloco duplicado removido ? consolidado no bloco can?nico acima. */
        @media (max-width: 768px) {
            .cyber-select,
            .cyber-input,
            .cyber-btn-filter {
                font-size: 13px !important;
                padding: 0.5rem !important;
            }
        }

        .filter-select {
            background: #1a1a1a !important;
            border: 1px solid #374151 !important;
            border-radius: 6px !important;
            color: #f3f4f6 !important;
            font-family: 'Rajdhani', sans-serif !important;
            font-size: 13px !important;
            padding: 8px 10px !important;
            transition: all 0.3s ease !important;
            min-height: 36px !important;
            cursor: pointer !important;
        }

        .filter-select:hover {
            border-color: #4b5563 !important;
            background: #202020 !important;
        }

        .filter-select:focus {
            outline: none !important;
            border-color: #10b981 !important;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
            background: #202020 !important;
        }

        .filter-select option {
            background: #1a1a1a !important;
            color: #f3f4f6 !important;
            padding: 8px !important;
        }

        .cyber-btn-apply {
            background: linear-gradient(135deg, #ec4899, #8b5cf6, #ec4899) !important;
            background-size: 200% 200% !important;
            animation: gradientShift 3s ease infinite !important;
            color: white !important;
            font-family: 'Orbitron', sans-serif !important;
            font-weight: 700 !important;
            font-size: 14px !important;
            text-transform: uppercase !important;
            letter-spacing: 1px !important;
            transition: all 0.3s ease !important;
            border: 2px solid rgba(236, 72, 153, 0.5) !important;
            box-shadow: 0 0 20px rgba(236, 72, 153, 0.3) !important;
        }

        .cyber-btn-apply:hover {
            transform: translateY(-2px) scale(1.02) !important;
            box-shadow: 0 0 30px rgba(236, 72, 153, 0.6) !important;
            border-color: rgba(236, 72, 153, 0.8) !important;
        }

        .cyber-btn-clear {
            background: #374151 !important;
            color: #d1d5db !important;
            font-family: 'Rajdhani', sans-serif !important;
            font-weight: 600 !important;
            font-size: 13px !important;
            transition: all 0.3s ease !important;
            border: 1px solid #4b5563 !important;
        }

        .cyber-btn-clear:hover {
            background: #4b5563 !important;
            color: white !important;
            transform: translateY(-1px) !important;
        }

        @keyframes gradientShift {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        /* [M-05 FIX] Blocos duplicados de .search-professional-bar removidos.
           Layout responsivo consolidado no bloco can?nico acima.
           Regras dos componentes internos mantidas abaixo. */
        @media (max-width: 768px) {
            .filter-select {
                font-size: 12px !important;
                padding: 6px 8px !important;
                min-height: 32px !important;
            }

            .cyber-btn-apply,
            .cyber-btn-clear {
                font-size: 12px !important;
                padding: 0.5rem 1rem !important;
            }
        }

        @media (max-width: 640px) {
            .filter-select {
                font-size: 14px !important;
                padding: 10px 12px !important;
            }
        }

        /* BOT?O DE TOGGLE DA PESQUISA */
        .search-toggle-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 2px solid rgba(236, 72, 153, 0.3);
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
        }

        .search-toggle-btn:hover {
            background: rgba(236, 72, 153, 0.1);
            border-color: rgba(236, 72, 153, 0.6);
            transform: scale(1.1);
        }

        .search-toggle-btn:active {
            transform: scale(0.95);
        }

        /* BOT?O FLUTUANTE TIDIO */
        .tidio-float-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    background: linear-gradient(135deg, #ff007f, #9d00ff);
    color: white;
    padding: 12px 16px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 12px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 0, 127, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    z-index: 95;
    transition: all 0.3s ease;
    animation: tidioPulse 3s ease-in-out infinite;
}

.tidio-float-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(255, 0, 127, 0.6);
}

@keyframes tidioPulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 0, 127, 0.4);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 0, 127, 0.7);
        transform: scale(1.02);
    }
}

/* --------------------------------------------------------------
   ROADMAP & TOKENOMICS VIEW
   -------------------------------------------------------------- */

/* Bot?o nav Roadmap ? glow roxo quando activo */
.nav-roadmap-btn.text-neon-pink,
nav button.nav-roadmap-btn.font-bold {
    color: #a855f7 !important;
    text-shadow: 0 0 8px rgba(168,85,247,0.6);
}

/* -- Wrapper geral -- */
.roadmap-wrapper {
    max-width: 700px;
    margin: 0 auto;
    padding: 24px 16px 100px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* -- Hero -- */
.roadmap-hero {
    position: relative;
    text-align: center;
    padding: 48px 16px 40px;
    overflow: hidden;
}

.roadmap-hero-glow {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168,85,247,0.18) 0%, transparent 70%);
    pointer-events: none;
}

.roadmap-gem-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: linear-gradient(135deg, #7c3aed, #a855f7, #c084fc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #fff;
    box-shadow: 0 0 40px rgba(168,85,247,0.45), 0 8px 32px rgba(0,0,0,0.5);
}
.roadmap-gem-icon i { text-shadow: 0 0 12px rgba(255,255,255,0.5); }

.roadmap-main-title {
    font-size: clamp(26px, 7vw, 40px);
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.roadmap-title-accent {
    background: linear-gradient(90deg, #a855f7, #ec4899, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.roadmap-main-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.45);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

/* -- Intro Card -- */
.roadmap-intro-card {
    background: linear-gradient(135deg, rgba(124,58,237,0.12) 0%, rgba(168,85,247,0.06) 100%);
    border: 1px solid rgba(168,85,247,0.28);
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.roadmap-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(168,85,247,0.18);
    border: 1px solid rgba(168,85,247,0.40);
    color: #c084fc;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 5px 14px;
    border-radius: 999px;
    align-self: flex-start;
}

.roadmap-intro-text {
    font-size: 14px;
    color: rgba(255,255,255,0.72);
    line-height: 1.7;
    margin: 0;
}
.roadmap-intro-text strong { color: #e9d5ff; }

.roadmap-intro-stats {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 8px;
    padding-top: 4px;
}

.roadmap-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }

.roadmap-stat-value {
    font-size: 26px;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.roadmap-stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.40);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.roadmap-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(168,85,247,0.22);
    border-radius: 1px;
}

/* -- Section Label -- */
.roadmap-section-label {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 800;
    color: rgba(255,255,255,0.30);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* -- Timeline -- */
.roadmap-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.roadmap-connector {
    width: 2px;
    height: 32px;
    margin-left: 27px;
    background: linear-gradient(to bottom, rgba(168,85,247,0.45), rgba(168,85,247,0.08));
}

/* -- Milestone row -- */
.roadmap-milestone {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.roadmap-milestone-dot {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    border: 2px solid rgba(168,85,247,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    box-shadow: 0 0 24px rgba(168,85,247,0.35);
    position: relative;
    z-index: 1;
}

.rm-dot-future {
    background: linear-gradient(135deg, #1e1b2e, #2d1f5e);
    border-color: rgba(168,85,247,0.22);
    box-shadow: none;
    color: rgba(255,255,255,0.35);
}

.rm-dot-gold {
    background: linear-gradient(135deg, #1a1400, #3d2e00);
    border-color: rgba(251,191,36,0.30);
    color: rgba(251,191,36,0.40);
    box-shadow: 0 0 16px rgba(251,191,36,0.08);
}

/* -- Milestone card -- */
.roadmap-milestone-card {
    flex: 1;
    background: linear-gradient(135deg, rgba(124,58,237,0.14) 0%, rgba(17,17,17,0.95) 100%);
    border: 1px solid rgba(168,85,247,0.30);
    border-radius: 18px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.rm-card-future {
    background: rgba(15,10,30,0.7);
    border-color: rgba(168,85,247,0.10);
}

.rm-card-gold {
    background: linear-gradient(135deg, rgba(120,80,0,0.12) 0%, rgba(17,17,17,0.95) 100%);
    border-color: rgba(251,191,36,0.18);
}

.roadmap-milestone-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 6px;
}

.rm-phase-badge {
    font-size: 10px;
    font-weight: 800;
    padding: 3px 12px;
    border-radius: 999px;
    letter-spacing: 0.04em;
}

.rm-badge-active { background: rgba(34,197,94,0.18); border: 1px solid rgba(34,197,94,0.40); color: #86efac; }
.rm-badge-soon   { background: rgba(168,85,247,0.14); border: 1px solid rgba(168,85,247,0.30); color: #c084fc; }
.rm-badge-gold   { background: rgba(251,191,36,0.12); border: 1px solid rgba(251,191,36,0.28); color: #fde68a; }

.rm-phase-label {
    font-size: 10px;
    font-weight: 900;
    color: rgba(255,255,255,0.20);
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.rm-phase-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.3;
}

/* -- Checklist items -- */
.rm-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rm-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 13px;
    line-height: 1.5;
}

.rm-done    { color: rgba(255,255,255,0.80); }
.rm-done i  { color: #22c55e; font-size: 13px; flex-shrink: 0; margin-top: 2px; }

.rm-pending    { color: rgba(255,255,255,0.50); }
.rm-pending i  { color: #a855f7; font-size: 12px; flex-shrink: 0; margin-top: 2px; }

.rm-future    { color: rgba(255,255,255,0.28); }
.rm-future i  { color: rgba(168,85,247,0.35); font-size: 12px; flex-shrink: 0; margin-top: 2px; }

.rm-future-gold    { color: rgba(255,255,255,0.28); }
.rm-future-gold i  { color: rgba(251,191,36,0.35); font-size: 12px; flex-shrink: 0; margin-top: 2px; }

/* -- Progress bar (Fase 1) -- */
/* ?? SVG Bull Chart ?? */
.rm-bull-wrap {
    width: 100%;
    padding: 8px 0 0;
    overflow: visible;
}

.rm-bull-chart {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

/* Pulse animado no N? 1 (posi??o actual) */
.rm-node-pulse {
    -webkit-animation: rmPulse 2.2s ease-in-out infinite;
    animation: rmPulse 2.2s ease-in-out infinite;
    transform-origin: 38px 188px;
}

@-webkit-keyframes rmPulse {
    0%, 100% { r: 14; opacity: 0.12; }
    50%       { r: 20; opacity: 0.06; }
}
@keyframes rmPulse {
    0%, 100% { r: 14; opacity: 0.12; }
    50%       { r: 20; opacity: 0.06; }
}

/* Fontes do SVG herdam a fonte do documento */
.rm-bull-chart text {
    font-family: inherit;
    letter-spacing: 0.02em;
}

/* -- Locked overlay (fases futuras) -- */
.rm-locked-overlay {
    position: absolute;
    inset: 0;
    background: rgba(5,3,15,0.62);
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: rgba(168,85,247,0.60);
    font-size: 13px;
    font-weight: 700;
}
.rm-locked-overlay i { font-size: 22px; }

.rm-locked-gold {
    color: rgba(251,191,36,0.55);
    flex-direction: column;
    align-items: center;
    padding: 20px;
    gap: 14px;
}

/* Bloco de Vesting dentro do overlay da Fase 3 */
.rm-vesting-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    max-width: 340px;
}

.rm-vesting-title {
    font-size: 13px;
    font-weight: 800;
    color: #fde68a;
    display: block;
    line-height: 1.4;
}

.rm-vesting-text {
    font-size: 12px;
    line-height: 1.65;
    color: rgba(253,230,138,0.72);
    margin: 0;
}
.rm-vesting-text strong { color: #fde68a; }

.rm-vesting-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(251,191,36,0.12);
    border: 1px solid rgba(251,191,36,0.30);
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* -- HODL CTA Card -- */
.roadmap-hodl-card {
    position: relative;
    background: linear-gradient(135deg, rgba(120,53,196,0.22) 0%, rgba(236,72,153,0.10) 50%, rgba(17,17,17,0.95) 100%);
    border: 1px solid rgba(168,85,247,0.40);
    border-radius: 24px;
    padding: 32px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    overflow: hidden;
}

.roadmap-hodl-glow {
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236,72,153,0.14) 0%, transparent 70%);
    pointer-events: none;
}

.roadmap-hodl-icon {
    font-size: 48px;
    line-height: 1;
    -webkit-filter: drop-shadow(0 0 14px rgba(168,85,247,0.7));
    filter: drop-shadow(0 0 14px rgba(168,85,247,0.7));
}

.roadmap-hodl-title {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    line-height: 1.25;
    margin: 0;
}

.roadmap-hodl-text {
    font-size: 14px;
    color: rgba(255,255,255,0.62);
    line-height: 1.7;
    max-width: 480px;
    margin: 0;
}
.roadmap-hodl-text strong { color: #e9d5ff; }

.roadmap-hodl-highlight {
    background: linear-gradient(90deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
}

.roadmap-hodl-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.rm-tag {
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgba(168,85,247,0.14);
    border: 1px solid rgba(168,85,247,0.28);
    color: #c084fc;
    white-space: nowrap;
}

.roadmap-hodl-btn {
    -webkit-appearance: none;
    appearance: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 999px;
    border: none;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    color: #fff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 0 30px rgba(168,85,247,0.40), 0 8px 24px rgba(0,0,0,0.5);
    transition: -webkit-transform 0.18s ease, box-shadow 0.18s ease;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    transition: transform 0.18s ease, box-shadow 0.18s ease, -webkit-transform 0.18s ease;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}
.roadmap-hodl-btn:hover {
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
    box-shadow: 0 0 40px rgba(168,85,247,0.55), 0 12px 28px rgba(0,0,0,0.55);
}

/* -- Disclaimer -- */
.roadmap-disclaimer {
    font-size: 10px;
    color: rgba(255,255,255,0.18);
    line-height: 1.6;
    text-align: center;
    padding: 0 8px;
    margin: 0;
}

/* ?? PLAYBOOK ? Grelha de Ganhos ?? */
.playbook-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}

/* Card base */
.playbook-card {
    position: relative;
    background: rgba(10, 8, 20, 0.85);
    border: 1px solid rgba(168, 85, 247, 0.22);
    border-radius: 20px;
    padding: 22px 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, -webkit-transform 0.22s ease;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, -webkit-transform 0.22s ease;
}

/* Pseudo-elemento de brilho no hover */
.playbook-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.playbook-card:hover {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
}

/* ?? Card Live Cam (roxo-rosa) ?? */
.playbook-card--cam {
    border-color: rgba(236, 72, 153, 0.30);
    background: linear-gradient(145deg, rgba(120, 30, 80, 0.18) 0%, rgba(10,8,20,0.90) 100%);
}
.playbook-card--cam::before {
    background: radial-gradient(ellipse at top left, rgba(236,72,153,0.14), transparent 65%);
}
.playbook-card--cam:hover {
    border-color: rgba(236, 72, 153, 0.70);
    box-shadow: 0 0 28px rgba(236, 72, 153, 0.20), 0 8px 24px rgba(0,0,0,0.5);
}
.playbook-card--cam:hover::before { opacity: 1; }
.playbook-card--cam .playbook-hl-value { color: #f472b6; }
.playbook-card--cam .playbook-card-badge {
    background: rgba(236,72,153,0.14);
    border-color: rgba(236,72,153,0.35);
    color: #f9a8d4;
}

/* ?? Card Referidos (ciano) ?? */
.playbook-card--ref {
    border-color: rgba(34, 211, 238, 0.28);
    background: linear-gradient(145deg, rgba(10, 60, 80, 0.18) 0%, rgba(10,8,20,0.90) 100%);
}
.playbook-card--ref::before {
    background: radial-gradient(ellipse at top left, rgba(34,211,238,0.12), transparent 65%);
}
.playbook-card--ref:hover {
    border-color: rgba(34, 211, 238, 0.65);
    box-shadow: 0 0 28px rgba(34, 211, 238, 0.18), 0 8px 24px rgba(0,0,0,0.5);
}
.playbook-card--ref:hover::before { opacity: 1; }
.playbook-card--ref .playbook-hl-value { color: #22d3ee; }
.playbook-card--ref .playbook-card-badge {
    background: rgba(34,211,238,0.12);
    border-color: rgba(34,211,238,0.32);
    color: #67e8f9;
}

/* ?? Card Anti-Burla (verde) ?? */
.playbook-card--shield {
    border-color: rgba(34, 197, 94, 0.28);
    background: linear-gradient(145deg, rgba(10, 50, 25, 0.18) 0%, rgba(10,8,20,0.90) 100%);
}
.playbook-card--shield::before {
    background: radial-gradient(ellipse at top left, rgba(34,197,94,0.12), transparent 65%);
}
.playbook-card--shield:hover {
    border-color: rgba(34, 197, 94, 0.65);
    box-shadow: 0 0 28px rgba(34, 197, 94, 0.18), 0 8px 24px rgba(0,0,0,0.5);
}
.playbook-card--shield:hover::before { opacity: 1; }
.playbook-card--shield .playbook-hl-value { color: #4ade80; }
.playbook-card--shield .playbook-card-badge {
    background: rgba(34,197,94,0.12);
    border-color: rgba(34,197,94,0.32);
    color: #86efac;
}

/* Elementos internos dos cards */
.playbook-card-icon {
    font-size: 32px;
    line-height: 1;
}

.playbook-card-badge {
    display: inline-flex;
    align-self: flex-start;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    padding: 3px 10px;
    border-radius: 999px;
    border: 1px solid;
}

.playbook-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin: 0;
}
.playbook-card-title span {
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
}

.playbook-card-text {
    font-size: 12px;
    color: rgba(255,255,255,0.60);
    line-height: 1.65;
    margin: 0;
    flex: 1;
}
.playbook-card-text strong { color: rgba(255,255,255,0.90); }

/* Destaque num?rico no fundo do card */
.playbook-card-highlight {
    display: flex;
    align-items: baseline;
    gap: 6px;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 10px;
    margin-top: auto;
}

.playbook-hl-value {
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.playbook-hl-label {
    font-size: 10px;
    color: rgba(255,255,255,0.40);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Mobile: 1 coluna abaixo de 480px */
@media (max-width: 480px) {
    .playbook-grid { grid-template-columns: 1fr; }
    .playbook-card-icon { font-size: 26px; }
    .playbook-hl-value  { font-size: 18px; }
}

/* ?? TRANSPAR?NCIA ? Painel de Divis?o Econ?mica ?? */
.transp-panel {
    background: linear-gradient(140deg, rgba(20,12,40,0.95) 0%, rgba(8,8,16,0.98) 100%);
    border: 1px solid rgba(168,85,247,0.22);
    border-radius: 22px;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

/* Cabe?alho */
.transp-header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.transp-header-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #7c3aed, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    box-shadow: 0 0 18px rgba(168,85,247,0.35);
}

.transp-title {
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin: 0 0 5px;
    line-height: 1.25;
}

.transp-subtitle {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.55;
    margin: 0;
}

/* Blocos */
.transp-blocks {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.transp-block {
    border-radius: 14px;
    padding: 16px 18px 14px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border: 1px solid;
}

.transp-block--total {
    background: rgba(255,255,255,0.03);
    border-color: rgba(255,255,255,0.08);
}
.transp-block--plat {
    background: rgba(236,72,153,0.06);
    border-color: rgba(236,72,153,0.20);
}
.transp-block--pool {
    background: rgba(168,85,247,0.07);
    border-color: rgba(168,85,247,0.22);
}

/* Linha percentagem + corpo */
.transp-block-pct {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.transp-pct-num {
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.35);
    font-variant-numeric: tabular-nums;
}
.transp-pct--pink   { color: #f472b6; text-shadow: 0 0 16px rgba(244,114,182,0.45); }
.transp-pct--purple { color: #c084fc; text-shadow: 0 0 16px rgba(192,132,252,0.45); }

.transp-pct-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: rgba(255,255,255,0.30);
}

.transp-block-body { display: flex; flex-direction: column; gap: 6px; }

.transp-block-label {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}
.transp-block-icon { font-size: 15px; }

.transp-block-text {
    font-size: 12px;
    color: rgba(255,255,255,0.52);
    line-height: 1.65;
    margin: 0;
}
.transp-block-text strong { color: rgba(255,255,255,0.80); }

/* Mini barra proporcional */
.transp-bar-wrap {
    height: 4px;
    background: rgba(255,255,255,0.06);
    border-radius: 999px;
    overflow: hidden;
}
.transp-bar {
    height: 100%;
    border-radius: 999px;
    transition: width 1.2s ease-in-out;
}
.transp-bar--total { background: rgba(255,255,255,0.18); }
.transp-bar--plat  { background: linear-gradient(90deg, #ec4899, #f472b6); box-shadow: 0 0 8px rgba(236,72,153,0.50); }
.transp-bar--pool  { background: linear-gradient(90deg, #7c3aed, #a855f7); box-shadow: 0 0 8px rgba(168,85,247,0.50); }

/* Nota de rodap? */
.transp-footnote {
    font-size: 10px;
    color: rgba(255,255,255,0.22);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.5;
    margin: 0;
    padding-top: 4px;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.transp-footnote i { color: rgba(168,85,247,0.45); font-size: 10px; flex-shrink: 0; }

/* -- Responsive -- */
@media (max-width: 480px) {
    .roadmap-milestone-dot { width: 44px; height: 44px; font-size: 16px; }
    .roadmap-connector { margin-left: 21px; }
    .roadmap-intro-stats { gap: 4px; }
    .roadmap-stat-value { font-size: 20px; }
    .roadmap-hodl-btn { padding: 13px 24px; font-size: 13px; }
}

/* -- Menu Hambúrguer Mobile (Premium) -- */
.mobile-hamburger-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 0, 127, 0.4);
    border-radius: 12px;
    color: var(--neon-pink);
    cursor: pointer;
    transition: all 0.3s;
}

.mobile-hamburger-btn:hover {
    background: rgba(255, 0, 127, 0.15);
    box-shadow: 0 0 20px rgba(255, 0, 127, 0.3);
}

.mobile-header-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, #0a0a0a 0%, #151515 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    z-index: 100;
    max-height: 70vh;
    overflow-y: auto;
}

.mobile-header-menu.open {
    display: block;
    animation: mobileMenuSlide 0.25s ease-out;
}

@keyframes mobileMenuSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-header-menu-inner {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.mobile-menu-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    text-align: left;
    width: 100%;
}

.mobile-menu-item:hover {
    background: rgba(255, 0, 127, 0.1);
    border-color: rgba(255, 0, 127, 0.3);
}

.mobile-menu-item i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

/* Acordeão de idiomas no menu mobile */
.mobile-lang-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-lang-toggle {
    cursor: pointer;
    justify-content: space-between;
}

.mobile-lang-toggle .mobile-lang-chevron {
    transition: transform 0.2s ease;
    font-size: 0.75rem;
    opacity: 0.7;
}

.mobile-lang-toggle .mobile-lang-chevron.rotated {
    transform: rotate(180deg);
}

/* Gaveta de idiomas no menu mobile: FECHADA por defeito (acordeão) */
#idioma-dropdown-content.idioma-dropdown-content {
    display: none !important;
    flex-direction: column;
    gap: 0.25rem;
    padding-left: 0.5rem;
    border-left: 2px solid rgba(255, 0, 127, 0.3);
    margin-left: 2rem;
}

#idioma-dropdown-content.idioma-dropdown-content.open {
    display: flex !important;
}

.mobile-lang-opt {
    padding-left: 2rem;
    font-size: 0.95rem;
}

.mobile-menu-badge {
    margin-left: auto;
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 999px;
}

.mobile-menu-badge.off {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

.mobile-menu-badge.on {
    background: rgba(255, 0, 127, 0.3);
    color: var(--neon-pink);
}

/* ══════════════════════════════════════════════════════════════════
   PURCHASE MODAL — Confirmação de Compra Premium
   ══════════════════════════════════════════════════════════════════ */

.pm-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99990;
    background: rgba(0, 0, 0, 0.88);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: pm-fade-in 0.22s ease;
}

@keyframes pm-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.pm-box {
    position: relative;
    background: linear-gradient(155deg, #1a1a1a 0%, #0f0f0f 100%);
    border: 1px solid rgba(255, 0, 127, 0.22);
    border-radius: 22px;
    padding: 32px 26px 26px;
    width: 100%;
    max-width: 400px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.04) inset,
        0 0 50px rgba(255, 0, 127, 0.12),
        0 30px 70px rgba(0, 0, 0, 0.85);
    animation: pm-slide-up 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Linha decorativa no topo da caixa */
.pm-box::before {
    content: '';
    position: absolute;
    top: 0; left: 28px; right: 28px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--neon-pink, #ff007f), var(--neon-purple, #9d00ff), transparent);
    border-radius: 0 0 4px 4px;
}

@keyframes pm-slide-up {
    from { opacity: 0; transform: translateY(28px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0)    scale(1);    }
}

/* Botão de fecho */
.pm-close-btn {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 9px;
    color: rgba(255, 255, 255, 0.45);
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.18s ease;
}
.pm-close-btn:hover {
    background: rgba(255, 0, 127, 0.14);
    border-color: rgba(255, 0, 127, 0.35);
    color: #fff;
    transform: scale(1.05);
}

/* Header: ícone + título + descrição */
.pm-header {
    text-align: center;
    margin-bottom: 22px;
}
.pm-icon-wrap {
    width: 60px; height: 60px;
    margin: 0 auto 14px;
    background: linear-gradient(135deg, rgba(255, 0, 127, 0.12), rgba(157, 0, 255, 0.12));
    border: 1px solid rgba(255, 0, 127, 0.18);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 16px rgba(255, 0, 127, 0.1);
}
.pm-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    letter-spacing: 0.04em;
    line-height: 1.3;
}
.pm-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.42);
    margin: 0;
    line-height: 1.55;
    padding: 0 8px;
}

/* Painel de saldo */
.pm-balance-panel {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}
.pm-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pm-row-label {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.42);
    display: flex;
    align-items: center;
    gap: 7px;
}
.pm-row-label i {
    font-size: 11px;
    width: 14px;
    text-align: center;
    opacity: 0.7;
}
.pm-row-val {
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    letter-spacing: 0.02em;
}
.pm-row-val--balance { color: rgba(255, 255, 255, 0.82); }
.pm-row-val--cost    { color: var(--neon-pink, #ff007f); }
.pm-row-val--after   { color: #63ffbe; }
.pm-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
    margin: 2px 0;
}

/* Área de ações */
.pm-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pm-btn {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: all 0.22s ease;
    -webkit-tap-highlight-color: transparent;
    font-family: 'Rajdhani', 'Orbitron', sans-serif;
}

/* Botão confirmar — gradiente neon */
.pm-btn--confirm {
    background: linear-gradient(135deg, var(--neon-pink, #ff007f) 0%, var(--neon-purple, #9d00ff) 100%);
    color: #fff;
    box-shadow: 0 4px 22px rgba(255, 0, 127, 0.28);
}
.pm-btn--confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 0, 127, 0.48);
    filter: brightness(1.08);
}
.pm-btn--confirm:active { transform: translateY(0); filter: brightness(0.96); }

/* Botão cancelar */
.pm-btn--cancel {
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.pm-btn--cancel:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

/* Botão comprar mais créditos */
.pm-btn--buy-more {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.12), rgba(0, 180, 255, 0.12));
    color: #63ffbe;
    border: 1px solid rgba(99, 255, 190, 0.28);
}
.pm-btn--buy-more:hover {
    background: linear-gradient(135deg, rgba(0, 200, 150, 0.22), rgba(0, 180, 255, 0.22));
    box-shadow: 0 4px 18px rgba(99, 255, 190, 0.15);
    transform: translateY(-1px);
}

/* Aviso de saldo insuficiente */
.pm-insufficient {
    background: rgba(239, 68, 68, 0.07);
    border: 1px solid rgba(239, 68, 68, 0.22);
    border-radius: 11px;
    padding: 13px 16px;
    color: #fca5a5;
    font-size: 0.82rem;
    text-align: center;
    line-height: 1.55;
}
.pm-insufficient i { color: #ef4444; margin-right: 5px; }
.pm-insufficient strong { color: #f87171; font-weight: 700; }

/* Estado de loading */
.pm-loading {
    text-align: center;
    padding: 22px 20px;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.88rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
}
.pm-loading i { color: var(--neon-pink, #ff007f); font-size: 20px; }

/* Animação de sucesso */
.pm-success-anim {
    text-align: center;
    padding: 28px 20px;
    animation: pm-success-pop 0.42s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pm-success-anim i {
    font-size: 52px;
    color: #63ffbe;
    text-shadow: 0 0 24px rgba(99, 255, 190, 0.65), 0 0 8px rgba(99, 255, 190, 0.3);
}
@keyframes pm-success-pop {
    from { transform: scale(0.4); opacity: 0; }
    to   { transform: scale(1);   opacity: 1; }
}

/* Estado de erro */
.pm-error-msg {
    background: rgba(239, 68, 68, 0.07);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 11px;
    padding: 13px 16px;
    color: #fca5a5;
    font-size: 0.82rem;
    text-align: center;
    margin-bottom: 10px;
}

/* Responsivo: mobile pequeno */
@media (max-width: 420px) {
    .pm-box { padding: 26px 18px 20px; border-radius: 18px; }
    .pm-title { font-size: 0.92rem; }
    .pm-btn { font-size: 0.82rem; padding: 13px 16px; }
}

/* -- Tidio: evita sobreposição com barra de navegação no mobile -- */
@media (max-width: 768px) {
    #tidio-chat-iframe {
        bottom: 85px !important;
    }
    #tidio-chat {
        bottom: 85px !important;
    }
}

/* ══════════════════════════════════════════════════════════════════
   SELO AZUL — Trust Badge de Identidade Verificada (Premium)
   ══════════════════════════════════════════════════════════════════ */

/* ── Badge inline nos ad cards e perfil ─────────────────────────── */
.trust-badge--verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    white-space: nowrap;
    text-transform: uppercase;
    /* Glassmorphism azul neon */
    background: linear-gradient(135deg,
        rgba(0, 100, 255, 0.18) 0%,
        rgba(0, 210, 255, 0.12) 100%);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 180, 255, 0.45);
    color: #7dd6ff;
    box-shadow:
        0 0 0 1px rgba(0, 180, 255, 0.08) inset,
        0 0 14px rgba(0, 150, 255, 0.18),
        0 2px 8px rgba(0, 0, 0, 0.25);
    transition: all 0.22s ease;
    position: relative;
    overflow: hidden;
}

/* Brilho interno animado */
.trust-badge--verified::before {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 60%; height: 200%;
    background: linear-gradient(105deg,
        transparent 40%,
        rgba(255, 255, 255, 0.18) 50%,
        transparent 60%);
    animation: badge-shine 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes badge-shine {
    0%   { left: -60%; }
    60%  { left: 120%; }
    100% { left: 120%; }
}

.trust-badge--verified:hover {
    border-color: rgba(0, 200, 255, 0.7);
    color: #b3eaff;
    box-shadow:
        0 0 0 1px rgba(0, 200, 255, 0.15) inset,
        0 0 22px rgba(0, 180, 255, 0.38),
        0 4px 16px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.trust-badge--verified i {
    font-size: 12px;
    color: #3db8ff;
    filter: drop-shadow(0 0 5px rgba(0, 180, 255, 0.8));
    animation: shield-pulse 2.8s ease-in-out infinite;
}

@keyframes shield-pulse {
    0%, 100% { filter: drop-shadow(0 0 4px rgba(0, 180, 255, 0.6)); }
    50%       { filter: drop-shadow(0 0 10px rgba(0, 210, 255, 1));  }
}

/* ── Versão maior no perfil sidebar ─────────────────────────────── */
.perfil-trust-service-badges .trust-badge--verified {
    padding: 8px 16px;
    font-size: 0.8rem;
    letter-spacing: 0.07em;
}

/* ── Overlay sobre a imagem do card ─────────────────────────────── */
.ad-badge-verified-overlay {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(135deg,
        rgba(0, 60, 160, 0.75) 0%,
        rgba(0, 160, 255, 0.7) 100%);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(100, 210, 255, 0.55);
    color: #e0f5ff;
    box-shadow:
        0 0 12px rgba(0, 150, 255, 0.45),
        0 2px 6px rgba(0, 0, 0, 0.4);
    animation: overlay-badge-appear 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes overlay-badge-appear {
    from { opacity: 0; transform: scale(0.7); }
    to   { opacity: 1; transform: scale(1); }
}

.ad-badge-verified-overlay i {
    font-size: 11px;
    color: #60d4ff;
    filter: drop-shadow(0 0 5px rgba(0, 200, 255, 0.9));
}

/* ── Borda neon azul subtil no card verificado ───────────────────── */
.ad-card.is-verified {
    border-color: rgba(0, 150, 255, 0.22) !important;
    box-shadow:
        0 0 0 1px rgba(0, 150, 255, 0.1) inset,
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(0, 120, 255, 0.06);
}

/* ── Card de Verificação no Painel Parceira ─────────────────────── */
.id-verify-card {
    border: 1px solid rgba(0, 150, 255, 0.15) !important;
    background: linear-gradient(145deg, rgba(0, 40, 80, 0.3), rgba(0, 0, 0, 0.2)) !important;
}

.id-verify-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.id-verify-icon-wrap {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, rgba(0, 120, 255, 0.18), rgba(0, 200, 255, 0.12));
    border: 1px solid rgba(0, 150, 255, 0.3);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    color: #60c8ff;
    flex-shrink: 0;
}

.id-verify-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.id-verify-badge-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 24px;
    background: rgba(0, 150, 255, 0.06);
    border: 1px solid rgba(0, 150, 255, 0.18);
    border-radius: 14px;
    width: 100%;
}

.id-verify-badge-icon {
    font-size: 2.4rem;
    color: #60c8ff;
    text-shadow: 0 0 20px rgba(0, 180, 255, 0.6);
    animation: verify-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes verify-glow-pulse {
    0%, 100% { text-shadow: 0 0 14px rgba(0, 180, 255, 0.5); }
    50%       { text-shadow: 0 0 28px rgba(0, 180, 255, 0.9), 0 0 50px rgba(0, 180, 255, 0.3); }
}

.id-verify-badge-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #60c8ff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.id-verify-perks {
    list-style: none;
    padding: 0; margin: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.id-verify-perks li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.id-verify-perks li i {
    color: #60c8ff;
    width: 14px;
    text-align: center;
    font-size: 11px;
}

.id-verify-btn-start {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0066cc, #0099ff);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: all 0.22s ease;
    box-shadow: 0 4px 18px rgba(0, 120, 255, 0.3);
}

.id-verify-btn-start:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(0, 120, 255, 0.5);
    filter: brightness(1.08);
}

.id-verify-approved-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, rgba(0, 120, 255, 0.12), rgba(0, 200, 255, 0.08));
    border: 1px solid rgba(0, 150, 255, 0.35);
    border-radius: 14px;
    color: #60c8ff;
    font-weight: 700;
    font-size: 1rem;
    width: 100%;
    justify-content: center;
}

.id-verify-approved-badge i { font-size: 1.4rem; }

.id-verify-review-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(255, 200, 0, 0.07);
    border: 1px solid rgba(255, 200, 0, 0.25);
    border-radius: 14px;
    color: #ffc107;
    font-weight: 700;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
}

/* ── Modal de Verificação Facial ─────────────────────────────────── */
.verify-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99995;
    background: rgba(0, 0, 0, 0.92);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    align-items: center;
    justify-content: center;
    padding: 16px;
    animation: pm-fade-in 0.22s ease;
}

.verify-modal-overlay.open {
    display: flex;
}

.verify-modal-box {
    position: relative;
    background: linear-gradient(155deg, #0a1628, #080d18);
    border: 1px solid rgba(0, 150, 255, 0.25);
    border-radius: 22px;
    padding: 32px 24px 28px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 0 60px rgba(0, 120, 255, 0.18), 0 30px 70px rgba(0, 0, 0, 0.85);
    animation: pm-slide-up 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.verify-modal-box::before {
    content: '';
    position: absolute;
    top: 0; left: 28px; right: 28px; height: 2px;
    background: linear-gradient(90deg, transparent, #0099ff, #00d4ff, transparent);
    border-radius: 0 0 4px 4px;
}

.verify-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.09);
    border-radius: 9px;
    color: rgba(255,255,255,0.45);
    width: 34px; height: 34px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    font-size: 13px;
    transition: all 0.18s ease;
}

.verify-modal-close:hover {
    background: rgba(0, 120, 255, 0.15);
    border-color: rgba(0, 150, 255, 0.4);
    color: #fff;
}

.verify-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}

.verify-step-icon { font-size: 3rem; line-height: 1; }

.verify-modal-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    letter-spacing: 0.04em;
}

.verify-modal-sub {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
    line-height: 1.6;
}

.verify-instructions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: rgba(0,150,255,0.05);
    border: 1px solid rgba(0,150,255,0.12);
    border-radius: 14px;
    padding: 14px 16px;
}

.verify-instruction-item {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.75);
}

.verify-instruction-item i {
    color: #60c8ff;
    font-size: 14px;
    width: 18px;
    text-align: center;
}

/* Câmara */
.verify-camera-wrap {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    aspect-ratio: 3/4;
    max-height: 340px;
}

.verify-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scaleX(-1); /* espelho */
    display: block;
}

.verify-face-guide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.verify-face-guide svg {
    width: 60%;
    height: 80%;
    opacity: 0.9;
    animation: verify-guide-pulse 2s ease-in-out infinite;
}

@keyframes verify-guide-pulse {
    0%, 100% { opacity: 0.5; }
    50%       { opacity: 1;   }
}

.verify-gesture-hint {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    border: 1px solid rgba(0,150,255,0.35);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.75rem;
    color: #fff;
    white-space: nowrap;
}

/* Botões do modal */
.verify-btn-primary {
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #0066cc, #0099ff);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    transition: all 0.22s ease;
    box-shadow: 0 4px 18px rgba(0,120,255,0.3);
}

.verify-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 26px rgba(0,120,255,0.5);
}

.verify-btn-capture {
    background: linear-gradient(135deg, #cc0044, #ff0066) !important;
    box-shadow: 0 4px 18px rgba(255,0,80,0.35) !important;
}

.verify-btn-capture:hover {
    box-shadow: 0 6px 26px rgba(255,0,80,0.55) !important;
}

.verify-btn-secondary {
    width: 100%;
    padding: 12px 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    color: rgba(255,255,255,0.5);
    font-size: 0.82rem;
    cursor: pointer;
    transition: all 0.18s ease;
}

.verify-btn-secondary:hover {
    background: rgba(255,255,255,0.09);
    color: rgba(255,255,255,0.75);
}

.verify-preview-img {
    width: 100%;
    border-radius: 14px;
    border: 2px solid rgba(0,150,255,0.3);
    object-fit: cover;
    max-height: 280px;
}

.verify-preview-actions {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Loading */
.verify-loading-anim {
    position: relative;
    width: 80px; height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-loading-ring {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(0,150,255,0.15);
    border-top-color: #0099ff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.verify-loading-icon {
    font-size: 28px;
    color: #0099ff;
    text-shadow: 0 0 16px rgba(0,150,255,0.7);
}

/* Resultado aprovado */
.verify-result-approved {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(0,120,255,0.08);
    border: 1px solid rgba(0,150,255,0.3);
    border-radius: 16px;
    width: 100%;
}

.verify-result-approved i {
    font-size: 3.2rem;
    color: #60c8ff;
    text-shadow: 0 0 20px rgba(0,180,255,0.7);
    animation: pm-success-pop 0.5s cubic-bezier(0.34,1.56,0.64,1);
}

.verify-result-review {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255,200,0,0.06);
    border: 1px solid rgba(255,200,0,0.22);
    border-radius: 16px;
    width: 100%;
}

.verify-result-review i { font-size: 2.8rem; color: #ffc107; }

@media (max-width: 420px) {
    .verify-modal-box { padding: 24px 16px 20px; border-radius: 18px; }
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST TOOLTIP — Popover "Selo de Confiança / QR Anti-Burla"
   Desktop : flutua perto do badge com seta
   Mobile  : bottom-sheet fixo acima da bottom nav
   ═══════════════════════════════════════════════════════════════════ */

.trust-tooltip {
    position: fixed;
    z-index: 10500;
    width: 290px;
    background: linear-gradient(145deg,
        rgba(4, 10, 24, 0.97) 0%,
        rgba(0, 15, 40, 0.97) 100%);
    -webkit-backdrop-filter: blur(22px);
    backdrop-filter: blur(22px);
    border: 1px solid rgba(0, 190, 255, 0.32);
    border-radius: 18px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(0, 180, 255, 0.07) inset,
        0 0 50px rgba(0, 140, 255, 0.22),
        0 24px 70px rgba(0, 0, 0, 0.75);
    pointer-events: auto;
    transform-origin: top center;
    /* entrada animada */
    animation: trust-tt-in 0.24s cubic-bezier(0.34, 1.5, 0.64, 1) both;
}

.trust-tooltip[hidden] { display: none !important; }

@keyframes trust-tt-in {
    from { opacity: 0; transform: scale(0.84) translateY(-10px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);     }
}

/* ── Faixa de brilho no topo ──────────────────────────────────── */
.trust-tooltip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 200, 255, 0.7) 40%,
        rgba(80, 230, 255, 0.9) 60%,
        transparent);
    border-radius: 18px 18px 0 0;
}

/* ── Botão fechar (visível apenas em mobile) ──────────────────── */
.trust-tt-close {
    display: none;
    position: absolute;
    top: 12px;
    right: 14px;
    background: rgba(0, 180, 255, 0.1);
    border: 1px solid rgba(0, 180, 255, 0.2);
    border-radius: 50%;
    width: 26px; height: 26px;
    color: rgba(120, 210, 255, 0.7);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.18s ease;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    line-height: 1;
    z-index: 1;
}
.trust-tt-close:hover {
    background: rgba(0, 200, 255, 0.2);
    color: #7dd6ff;
    transform: scale(1.1);
}

/* ── Cabeçalho ────────────────────────────────────────────────── */
.trust-tt-header {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 16px 16px 12px;
    border-bottom: 1px solid rgba(0, 180, 255, 0.1);
}

.trust-tt-icon {
    flex-shrink: 0;
    width: 34px; height: 34px;
    border-radius: 50%;
    background: rgba(0, 170, 255, 0.13);
    border: 1px solid rgba(0, 200, 255, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 14px rgba(0, 160, 255, 0.25);
}

.trust-tt-icon i {
    font-size: 15px;
    color: #3db8ff;
    filter: drop-shadow(0 0 6px rgba(0, 180, 255, 0.9));
    animation: shield-pulse 2.8s ease-in-out infinite;
}

.trust-tt-title {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: #7dd6ff;
    line-height: 1.2;
}

/* ── Corpo de texto ───────────────────────────────────────────── */
.trust-tt-body {
    margin: 0;
    padding: 12px 16px 10px;
    font-size: 0.83rem;
    line-height: 1.58;
    color: #b8dcf5;
}

.trust-tt-body strong {
    color: #e0f4ff;
    font-weight: 700;
}

/* ── Rodapé / marca ───────────────────────────────────────────── */
.trust-tt-footer {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px 13px;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: rgba(0, 180, 255, 0.5);
    border-top: 1px solid rgba(0, 180, 255, 0.07);
}

.trust-tt-footer i {
    font-size: 12px;
    color: rgba(0, 200, 255, 0.65);
}

/* ── Seta triangular (aponta para o badge) ────────────────────── */
.trust-tt-arrow {
    position: absolute;
    top: -8px;
    /* left ajustado dinamicamente por JS */
    left: 50%;
    transform: translateX(-50%);
    width: 16px; height: 9px;
    overflow: visible;
    pointer-events: none;
}

.trust-tt-arrow::before {
    content: '';
    position: absolute;
    top: 2px; left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px; height: 12px;
    background: rgba(4, 10, 24, 0.97);
    border-top: 1px solid rgba(0, 190, 255, 0.32);
    border-left: 1px solid rgba(0, 190, 255, 0.32);
    border-radius: 2px 0 0 0;
}

/* ── Badge "Verificado" nos cards — cursor pointer ────────────── */
.trust-badge--verified {
    cursor: pointer;
}

/* ── Mobile: bottom-sheet ─────────────────────────────────────── */
@media (max-width: 640px) {
    .trust-tooltip {
        position: fixed !important;
        bottom: 74px;    /* acima da bottom nav (~68px + 6px folga) */
        left: 12px;
        right: 12px;
        top: auto !important;
        width: auto;
        border-radius: 20px;
        transform-origin: bottom center;
        animation: trust-tt-mobile-in 0.28s cubic-bezier(0.34, 1.4, 0.64, 1) both;
    }

    @keyframes trust-tt-mobile-in {
        from { opacity: 0; transform: translateY(20px) scale(0.96); }
        to   { opacity: 1; transform: translateY(0)    scale(1);    }
    }

    .trust-tt-close {
        display: flex !important;
    }

    .trust-tt-arrow {
        display: none;
    }

    .trust-tt-header { padding: 14px 42px 10px 16px; }

    .trust-tt-title { font-size: 0.82rem; }

    .trust-tt-body { font-size: 0.86rem; }
}

/* ═══════════════════════════════════════════════════════════════════
   STATUS ONLINE — indicador pulsante "🟢 Online"
   Versão inline (junto ao nome) — usada no perfil e nos cartões
   ═══════════════════════════════════════════════════════════════════ */

.status-online {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.32);
    color: #4ade80;
    padding: 2px 9px 2px 6px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: middle;
    position: relative;
    top: -1px;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.12);
    transition: box-shadow 0.3s ease;
}

.status-online:hover {
    box-shadow: 0 0 16px rgba(34, 197, 94, 0.25);
}

/* Bolinha pulsante */
.status-online-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: online-dot-pulse 1.8s ease-in-out infinite;
}

@keyframes online-dot-pulse {
    0%   { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0.7); }
    60%  { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0   rgba(34, 197, 94, 0); }
}

/* ── Wrapper flex para a linha nome + online pill ─────────────────── */
/* Perfil */
.perfil-name-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.perfil-name-row .perfil-name {
    margin-bottom: 0; /* sobrescreve a margem original da .perfil-name */
}

/* Card — linha nome + pill Online no overlay inferior da foto */
.ad-card-name-online-row {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: nowrap;
    margin-bottom: 3px;
}

/* Variante compacta para os cartões da montra */
.status-online--card {
    font-size: 9px;
    padding: 2px 7px 2px 5px;
    top: 0;
    letter-spacing: 0.06em;
    /* fundo ligeiramente mais opaco para contraste com a foto */
    background: rgba(34, 197, 94, 0.18);
    border-color: rgba(34, 197, 94, 0.5);
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.25), 0 2px 6px rgba(0,0,0,0.35);
    flex-shrink: 0;
}

.status-online--card .status-online-dot {
    width: 6px;
    height: 6px;
}

/* ═══════════════════════════════════════════════════════════════════
   TRUST STATS BLOCK — "Provas de Confiança" na sidebar do perfil
   Grid 2×2 com glassmorphism, ícones neon e micro-estatísticas
   ═══════════════════════════════════════════════════════════════════ */

.trust-stats-block {
    position: relative;
    background: linear-gradient(160deg,
        rgba(255, 255, 255, 0.025) 0%,
        rgba(0, 10, 30, 0.6) 100%);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 20px;
    overflow: hidden;
}

/* Faixa de brilho no topo */
.trust-stats-block::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(0, 200, 255, 0.45) 40%,
        rgba(120, 255, 200, 0.45) 60%,
        transparent 100%);
}

/* Cabeçalho da caixa */
.trust-stats-header {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 9.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 12px;
}

.trust-stats-header i {
    font-size: 11px;
    color: rgba(0, 200, 255, 0.65);
}

/* Grid 2 colunas */
.trust-stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* Cada célula de estatística */
.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: border-color 0.2s ease, background 0.2s ease;
}

/* Estado "ativo" — tem dados reais */
.trust-stat-item.trust-stat--active {
    border-color: rgba(34, 197, 94, 0.2);
    background: rgba(34, 197, 94, 0.04);
}

/* Ícone circular */
.trust-stat-icon {
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
}

/* Cores específicas por tipo */
.trust-stat--verified  .trust-stat-icon { background: rgba(0,190,255,0.1); border-color: rgba(0,190,255,0.25); color: #38bdf8; }
.trust-stat--rating    .trust-stat-icon { background: rgba(251,191,36,0.1); border-color: rgba(251,191,36,0.25); color: #fbbf24; }
.trust-stat--encounters .trust-stat-icon { background: rgba(34,197,94,0.1); border-color: rgba(34,197,94,0.25);  color: #4ade80; }
.trust-stat--last      .trust-stat-icon { background: rgba(34,197,94,0.08); border-color: rgba(34,197,94,0.2);  color: #86efac; }

/* Ícone da bolinha "último enc." — pulsante */
.trust-stat--last .trust-stat-icon i {
    animation: online-dot-pulse 2.2s ease-in-out infinite;
    filter: drop-shadow(0 0 4px rgba(34, 197, 94, 0.6));
}

/* Dados: valor + label */
.trust-stat-data {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
    overflow: hidden;
}

.trust-stat-value {
    font-size: 13px;
    font-weight: 800;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
}

.trust-stat-label {
    font-size: 9.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.32);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* ── Mobile: grid em coluna única abaixo de 480px ─────────────────── */
@media (max-width: 480px) {
    .trust-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .trust-stat-item {
        padding: 9px 8px;
        gap: 8px;
    }

    .trust-stat-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }

    .trust-stat-value { font-size: 12px; }
}

/* ═══════════════════════════════════════════════════════════════════
   .ad-online-overlay — ajuste quando .status-online está no
   ad-card-overlay-badges (canto superior da foto do cartão)
   ═══════════════════════════════════════════════════════════════════ */
.ad-online-overlay {
    /* anula o offset vertical pensado para alinhamento inline com texto */
    top: 0;
    /* sombra ligeiramente mais forte para contraste com a foto */
    box-shadow: 0 0 14px rgba(34, 197, 94, 0.28), 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* ═══════════════════════════════════════════════════════════════════
   CARD MINI TRUST — barra de provas sociais na montra
   Mostra ⭐ Avaliação + 🤝 Encontros de forma compacta no cartão
   ═══════════════════════════════════════════════════════════════════ */

.card-mini-trust {
    display: flex;
    align-items: center;
    gap: 0;
    margin: 8px 0 2px;
    padding: 7px 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* faixa neon subtil no topo */
.card-mini-trust::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(251, 191, 36, 0.35) 35%,
        rgba(74, 222, 128, 0.35) 65%,
        transparent);
}

.card-mini-stat {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
    flex: 1;
    justify-content: center;
}

.card-mini-stat i {
    font-size: 11px;
}

.card-mini-rating i   { color: #fbbf24; filter: drop-shadow(0 0 4px rgba(251,191,36,0.5)); }
.card-mini-encounters i { color: #4ade80; filter: drop-shadow(0 0 4px rgba(74,222,128,0.5)); }

/* Separador central */
.card-mini-sep {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    margin: 0 2px;
}

/* ═══════════════════════════════════════════════════════════════
   A MINHA MONTRA — CARD NO PAINEL PARCEIRA
   ═══════════════════════════════════════════════════════════════ */

.my-montra-card {
    border: 1px solid rgba(157, 0, 255, 0.25);
    background: linear-gradient(135deg, rgba(157, 0, 255, 0.07) 0%, rgba(0,0,0,0.3) 100%);
}

.my-montra-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.my-montra-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, #9d00ff, #ff2d78);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #fff;
    flex-shrink: 0;
    box-shadow: 0 0 16px rgba(157,0,255,0.4);
}

/* Mini-preview wrap */
.my-ad-preview-wrap {
    border-radius: 12px;
    overflow: hidden;
}

.my-ad-preview-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 28px 16px;
    background: rgba(255,255,255,0.04);
    border: 1px dashed rgba(255,255,255,0.12);
    border-radius: 12px;
    color: rgba(255,255,255,0.35);
    font-size: 13px;
}

.my-ad-preview-empty i {
    font-size: 28px;
    color: rgba(255,255,255,0.18);
}

/* Mini-card com foto + info */
.my-ad-preview-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
}

.my-ad-preview-photo {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    background: rgba(255,255,255,0.08) center/cover no-repeat;
    flex-shrink: 0;
    border: 2px solid rgba(157,0,255,0.3);
}

.my-ad-preview-info {
    flex: 1;
    min-width: 0;
}

.my-ad-preview-title {
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 3px;
}

.my-ad-preview-meta {
    font-size: 11px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 5px;
}

.my-ad-preview-status {
    font-size: 11px;
    font-weight: 600;
}

.my-ad-preview-status.active  { color: #4ade80; }
.my-ad-preview-status.expired { color: #f87171; }

/* Botão Editar Perfil */
.btn-edit-ad {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 20px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.03em;
    background: linear-gradient(135deg, #9d00ff 0%, #ff2d78 100%);
    color: #fff;
    transition: opacity 0.2s, transform 0.15s;
    box-shadow: 0 4px 20px rgba(157,0,255,0.35);
}

.btn-edit-ad:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn-edit-ad:active { transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════════
   MODAL EDITAR PERFIL — GALERIA
   ═══════════════════════════════════════════════════════════════ */

/* Grid da galeria — fotos actuais */
.edit-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    min-height: 0;
}

/* Slot de foto individual */
.edit-gallery-slot {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(157,0,255,0.35);
    background: rgba(255,255,255,0.05) center/cover no-repeat;
    flex-shrink: 0;
}

.edit-gallery-slot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Botão de remover foto */
.edit-gallery-remove {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(239,68,68,0.9);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
    transition: background 0.2s, transform 0.15s;
    z-index: 2;
}

.edit-gallery-remove:hover { background: #ef4444; transform: scale(1.1); }

/* Label "Foto principal" */
.edit-gallery-slot::after {
    content: 'Principal';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3px 0;
    text-align: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: rgba(157,0,255,0.75);
    color: #fff;
    pointer-events: none;
}

/* Estado vazio da galeria */
.edit-gallery-empty {
    width: 100%;
    padding: 18px;
    text-align: center;
    color: rgba(255,255,255,0.3);
    font-size: 13px;
    background: rgba(255,255,255,0.03);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Zona upload da galeria — herda .ad-upload-zone mas com variação */
.edit-gallery-upload-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 20px;
    border: 2px dashed rgba(0, 212, 255, 0.3);
    border-radius: 12px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    background: rgba(0,212,255,0.04);
    text-align: center;
    margin-bottom: 10px;
}

.edit-gallery-upload-zone:hover {
    border-color: rgba(0, 212, 255, 0.6);
    background: rgba(0,212,255,0.08);
}

.edit-gallery-upload-zone .ad-upload-icon i {
    font-size: 26px;
    color: rgba(0, 212, 255, 0.7);
}

.edit-gallery-upload-zone .ad-upload-text {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}

.edit-gallery-upload-zone .ad-upload-hint {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
}

/* Preview nova foto — reutiliza .ad-photo-preview */
#edit-photo-preview.ad-photo-preview {
    margin-top: 10px;
}
