/* ExpertFX Smart Review System (WallStreet Logic v3.0)
   Estilos CSS
*/

#efx-review-banner {
    position: fixed;
    bottom: -350px; /* Começa escondido */
    left: 20px;
    right: 20px;
    background: linear-gradient(145deg, #1e293b 0%, #0f172a 100%); /* Navy Premium */
    border-top: 4px solid #10b981; /* Verde ExpertFX */
    border-radius: 12px;
    padding: 25px 20px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.4);
    z-index: 99999;
    display: none; /* Controlado via JS */
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-family: 'Inter', 'Roboto', sans-serif;
    transition: bottom 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Responsividade para Tablet/Desktop (não ficar gigante) */
@media (min-width: 600px) {
    #efx-review-banner {
        left: auto;
        right: 20px;
        width: 350px;
        border-radius: 12px;
    }
}

.efx-review-title {
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 6px;
}

.efx-review-text {
    color: #cbd5e1;
    font-size: 13px;
    margin-bottom: 20px;
    line-height: 1.5;
    max-width: 280px;
}

/* Estrelas Grandes e clicáveis */
.efx-stars-container {
    display: flex;
    gap: 12px;
    margin-bottom: 10px;
}

.efx-star {
    font-size: 32px;
    cursor: pointer;
    color: #475569; /* Apagada */
    transition: transform 0.2s, color 0.2s;
}

/* Efeito Gold ao interagir */
.efx-star.active, .efx-star:hover {
    color: #fbbf24; /* Ouro */
    transform: scale(1.2);
}

.efx-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: transparent;
    border: none;
    color: #64748b;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 5px;
}