/* =========================================
   MELHORIAS PRIORITÁRIAS - ESTILOS
   ========================================= */

/* 1. BADGES DE VERIFICAÇÃO E PREMIUM */
.badge-verificado {
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.badge-verificado i {
    font-size: 0.85rem;
}

.badge-premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.badge-premium i {
    font-size: 0.85rem;
}

.badge-vip {
    background: linear-gradient(135deg, #9C27B0, #7B1FA2);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(156, 39, 176, 0.4);
}

.badge-vip i {
    font-size: 0.85rem;
}

.badge-destaque {
    background: linear-gradient(135deg, #ff4d4d, #e63939);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(255, 77, 77, 0.4);
    animation: pulse-destaque 2s ease-in-out infinite;
}

@keyframes pulse-destaque {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* 2. STATUS DE DISPONIBILIDADE */
.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-online {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    border: 1px solid #4CAF50;
}

.status-online::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #4CAF50;
    border-radius: 50%;
    animation: pulse-online 1.5s ease-in-out infinite;
}

@keyframes pulse-online {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.status-disponivel {
    background: rgba(33, 150, 243, 0.2);
    color: #2196F3;
    border: 1px solid #2196F3;
}

.status-disponivel::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #2196F3;
    border-radius: 50%;
}

.status-ocupada {
    background: rgba(255, 152, 0, 0.2);
    color: #FF9800;
    border: 1px solid #FF9800;
}

.status-ocupada::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #FF9800;
    border-radius: 50%;
}

.status-offline {
    background: rgba(158, 158, 158, 0.2);
    color: #9E9E9E;
    border: 1px solid #9E9E9E;
}

.status-offline::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #9E9E9E;
    border-radius: 50%;
}

/* 3. CARD DE DESTAQUE */
.card-destaque {
    border: 2px solid #FFD700 !important;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4) !important;
    position: relative;
}

.card-destaque::before {
    content: '⭐ DESTAQUE';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #333;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    z-index: 10;
}

/* 4. LIGHTBOX PARA GALERIA DE FOTOS */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: #ff4d4d;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: #e63939;
    transform: rotate(90deg);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 77, 77, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: #ff4d4d;
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 0.9rem;
}

/* 5. PAINEL DE FILTROS AVANÇADOS */
.filtros-avancados {
    background: #2b2b2b;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.filtros-avancados h5 {
    color: #ff4d4d;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filtros-toggle {
    background: #ff4d4d;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filtros-toggle:hover {
    background: #e63939;
    transform: translateY(-2px);
}

.filtros-content {
    display: none;
    margin-top: 15px;
}

.filtros-content.active {
    display: block;
    animation: slideDown 0.3s ease;
}

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

.filtro-grupo {
    margin-bottom: 15px;
}

.filtro-grupo label {
    color: #fff;
    font-weight: 500;
    margin-bottom: 5px;
    display: block;
    font-size: 0.9rem;
}

.range-slider {
    width: 100%;
}

.range-values {
    display: flex;
    justify-content: space-between;
    color: #aaa;
    font-size: 0.85rem;
    margin-top: 5px;
}

.btn-aplicar-filtros {
    background: linear-gradient(45deg, #ff4d4d, #e63939);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-aplicar-filtros:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
}

.btn-limpar-filtros {
    background: #555;
    color: white;
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
}

.btn-limpar-filtros:hover {
    background: #777;
}

/* 6. RESULTADOS DE ORDENAÇÃO */
.ordenacao-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.ordenacao-select {
    background: #2b2b2b;
    color: white;
    border: 1px solid #444;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 0.9rem;
    cursor: pointer;
}

.resultados-info {
    color: #aaa;
    font-size: 0.9rem;
}

/* 7. MODAL DE PLANOS */
.planos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.plano-card {
    background: #2b2b2b;
    border-radius: 15px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.plano-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 77, 77, 0.3);
}

.plano-card.destaque {
    border-color: #FFD700;
    background: linear-gradient(135deg, #2b2b2b, #3a3a3a);
}

.plano-card.destaque::before {
    content: 'MAIS POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFD700;
    color: #333;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
}

.plano-nome {
    color: #ff4d4d;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.plano-preco {
    font-size: 2.5rem;
    color: white;
    font-weight: 700;
    margin: 20px 0;
}

.plano-preco small {
    font-size: 1rem;
    color: #aaa;
}

.plano-recursos {
    list-style: none;
    padding: 0;
    margin: 20px 0;
    text-align: left;
}

.plano-recursos li {
    color: #ccc;
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plano-recursos li i {
    color: #4CAF50;
}

.btn-assinar {
    background: linear-gradient(45deg, #ff4d4d, #e63939);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-assinar:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 77, 77, 0.4);
}

/* 8. TOOLTIP DE VERIFICAÇÃO */
.verificacao-tooltip {
    position: relative;
    cursor: help;
}

.verificacao-tooltip:hover::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #333;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 0.8rem;
    white-space: nowrap;
    z-index: 1000;
    margin-bottom: 5px;
}

.verificacao-tooltip:hover::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #333;
}

/* 9. RESPONSIVE */
@media (max-width: 768px) {
    .planos-container {
        grid-template-columns: 1fr;
    }
    
    .lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .filtros-avancados {
        padding: 15px;
    }
}

/* 10. ANIMAÇÕES ADICIONAIS */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.loading-shimmer {
    background: linear-gradient(90deg, #2b2b2b 25%, #3a3a3a 50%, #2b2b2b 75%);
    background-size: 1000px 100%;
    animation: shimmer 2s infinite;
}

