/* Estilos Frontend Premium Ponente */

.ponente-oc-frontend-wrapper {
    margin: 30px 0;
    padding: 20px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.p-oc-title {
    font-size: 1.1em;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    border-left: 5px solid #cc0000;
    /* Vermelho Ponente */
    padding-left: 15px;
}

.p-oc-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    /* Reduzido de 15px para 8px */
    align-items: center;
}

.p-oc-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent !important;
    border: none !important;
    padding: 0;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    min-width: 70px;
    /* Reduzido de 90px para 70px */
    min-height: 50px;
    /* Reduzido de 60px para 50px */
    position: relative;
    box-shadow: none !important;
}

.p-oc-btn img {
    max-width: 85px;
    max-height: 50px;
    height: auto;
    object-fit: contain;
    opacity: 0.5;
    /* Apenas transparência por padrão */
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.05));
    /* Sem grayscale aqui */
    transition: all 0.3s ease;
}

.p-oc-btn:hover img {
    opacity: 1;
    /* Retorna opacidade total no hover */
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.1));
}

.p-oc-btn:hover {
    transform: translateY(-5px) scale(1.05);
}

.p-oc-no-links {
    color: #888;
    font-size: 0.9em;
    font-style: italic;
    display: none;
    /* Oculto agora que mostramos botões bloqueados */
}

/* Botões Bloqueados (Cinza) */
.p-oc-btn.p-oc-blocked {
    filter: grayscale(1);
    opacity: 0.4;
    cursor: not-allowed;
    background: transparent;
    transform: none !important;
    box-shadow: none !important;
}

.p-oc-btn.p-oc-blocked::after {
    display: none;
}

.p-oc-btn.p-oc-blocked img {
    opacity: 0.7;
}

/* Ajustes Mobile */
@media (max-width: 480px) {
    .p-oc-buttons-container {
        justify-content: center;
    }

    .p-oc-btn {
        flex: 1 1 40%;
    }
}