/* ============================================
   BANNERS FLUTUANTES - NOTIFICAÇÕES SOCIAIS
   Para usuários Free Plan
   ============================================ */

.banner_flutuante_container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    pointer-events: none;
}

.banner_flutuante {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    padding: 16px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    min-width: 320px;
    margin-bottom: 12px;
    opacity: 0;
    transform: translateX(450px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.banner_flutuante.mostrar {
    opacity: 1;
    transform: translateX(0);
}

.banner_flutuante.esconder {
    opacity: 0;
    transform: translateX(450px);
}

/* Efeito de brilho animado no fundo - removido para estilo mais limpo */
.banner_flutuante::before {
    display: none;
}

@keyframes brilho {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.banner_flutuante_icone {
    display: inline-block;
    font-size: 24px;
    margin-right: 12px;
    vertical-align: middle;
    animation: pulsar 2s infinite;
}

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

.banner_flutuante_conteudo {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

.banner_flutuante_texto {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 12px;
    font-weight: 500;
}

.banner_flutuante_texto strong {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.banner_flutuante_botao {
    display: inline-block;
    background: #2a2a2a;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner_flutuante_botao:hover {
    background: #333333;
    border-color: rgba(16, 185, 129, 0.5);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
    transform: translateY(-1px);
}

.banner_flutuante_fechar {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 2;
}

.banner_flutuante_fechar:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Responsivo para mobile */
@media screen and (max-width: 768px) {
    .banner_flutuante_container {
        bottom: 10px;
        right: 10px;
        left: 10px;
    }
    
    .banner_flutuante {
        max-width: 100%;
        min-width: auto;
        padding: 16px 20px;
    }
    
    .banner_flutuante_texto {
        font-size: 13px;
    }
    
    .banner_flutuante_botao {
        font-size: 12px;
        padding: 7px 14px;
    }
}

/* Efeito de entrada especial */
@keyframes slideInBounce {
    0% {
        transform: translateX(450px);
        opacity: 0;
    }
    60% {
        transform: translateX(-10px);
        opacity: 1;
    }
    80% {
        transform: translateX(5px);
    }
    100% {
        transform: translateX(0);
    }
}

.banner_flutuante.entrada_especial {
    animation: slideInBounce 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

