/**
 * ============================================================================
 * PULSAR CARD BRANDING - Marca Registrada nos Cards
 * ============================================================================
 * 
 * Versão miniatura do banner principal para marca registrada nos cards
 * Coração pulsante com efeito neon em todas as páginas geográficas
 * 
 * ============================================================================
 */

/* Container da marca no rodapé do card */
.geo-card-brand {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(135deg, 
        rgba(14, 0, 36, 0.98) 0%,
        rgba(142, 45, 226, 0.95) 100%
    );
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(255, 0, 255, 0.5);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 12px;
    z-index: 20;
    overflow: hidden;
}

/* Coração pulsante miniatura */
.geo-card-heart {
    width: 20px;
    height: 20px;
    position: relative;
    animation: miniHeartBeat 1.5s ease-in-out infinite;
}

.geo-card-heart svg {
    width: 100%;
    height: 100%;
    filter: 
        drop-shadow(0 0 8px #ff00ff) 
        drop-shadow(0 0 15px #8E2DE2);
}

/* Logo PULSAR ao lado do coração */
.geo-card-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    background: linear-gradient(135deg, #00e5ff 0%, #ff00ff 50%, #8E2DE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
    animation: pulseGlow 2s ease-in-out infinite;
    margin-left: 8px;
}

/* Mini cidade 3D de fundo (opcional) */
.geo-card-brand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(0, 229, 255, 0.05) 50%, transparent 100%);
    animation: scanLine 3s linear infinite;
    pointer-events: none;
}

/* Efeito de partículas */
.geo-card-brand::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(1px 1px at 20% 50%, rgba(255, 0, 255, 0.3), transparent),
        radial-gradient(1px 1px at 80% 50%, rgba(0, 229, 255, 0.3), transparent);
    background-repeat: no-repeat;
    animation: miniParticles 5s linear infinite;
    opacity: 0.6;
}

/* Animação de pulsação do coração */
@keyframes miniHeartBeat {
    0%, 100% { 
        transform: scale(1); 
    }
    10% { 
        transform: scale(1.15); 
    }
    20% { 
        transform: scale(1); 
    }
    30% { 
        transform: scale(1.15); 
    }
    40% { 
        transform: scale(1); 
    }
}

/* Animação do brilho do logo */
@keyframes pulseGlow {
    0%, 100% { 
        opacity: 0.9; 
    }
    50% { 
        opacity: 1; 
        text-shadow: 
            0 0 10px rgba(255, 0, 255, 0.8),
            0 0 20px rgba(142, 45, 226, 0.6);
    }
}

/* Linha de scan futurística */
@keyframes scanLine {
    0% { 
        transform: translateX(-100%); 
    }
    100% { 
        transform: translateX(100%); 
    }
}

/* Partículas flutuantes */
@keyframes miniParticles {
    0% { 
        transform: translateX(0); 
        opacity: 0.6; 
    }
    100% { 
        transform: translateX(20px); 
        opacity: 0.3; 
    }
}

/* Hover effect no card inteiro aumenta o brilho da marca */
.geo-card:hover .geo-card-brand {
    border-top-color: rgba(255, 0, 255, 0.6);
    box-shadow: 0 -5px 20px rgba(142, 45, 226, 0.3);
}

.geo-card:hover .geo-card-heart svg {
    filter: 
        drop-shadow(0 0 12px #ff00ff) 
        drop-shadow(0 0 25px #8E2DE2)
        drop-shadow(0 0 35px rgba(255, 0, 255, 0.4));
}

.geo-card:hover .geo-card-logo {
    text-shadow: 
        0 0 15px rgba(255, 0, 255, 0.8),
        0 0 30px rgba(142, 45, 226, 0.6);
}

/* Ajuste para cards pequenos (bairros) */
.geo-card-small .geo-card-brand {
    height: 35px;
    padding: 0 10px;
}

.geo-card-small .geo-card-heart {
    width: 18px;
    height: 18px;
}

.geo-card-small .geo-card-logo {
    font-size: 10px;
    letter-spacing: 1.2px;
}

/* Responsivo */
@media (max-width: 768px) {
    .geo-card-brand {
        height: 35px;
        padding: 0 10px;
    }

    .geo-card-heart {
        width: 18px;
        height: 18px;
    }

    .geo-card-logo {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .geo-card-brand {
        height: 30px;
        padding: 0 8px;
    }

    .geo-card-heart {
        width: 16px;
        height: 16px;
    }

    .geo-card-logo {
        font-size: 9px;
        letter-spacing: 1px;
    }
}
