.fest-comments-container {
    background-color: #0f0f0f;
    border-top: 1px solid #333;
    margin-top: 10px;
    border-radius: 0 0 10px 10px;
    margin-left: -25px; /* Compensa o padding do card da festividade */
    margin-right: -25px;
    margin-bottom: -25px;
    padding: 15px;
}

.fest-comments-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding-bottom: 8px;
    border-bottom: 1px solid #222;
    margin-bottom: 10px;
    transition: background 0.2s;
}

.fest-comments-header:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    padding-left: 5px;
    padding-right: 5px;
}

.fest-comment-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    border-bottom: 1px solid #222;
    padding-bottom: 8px;
    animation: fadeIn 0.3s;
}

.fest-comment-item:last-child {
    border-bottom: none;
}

/* O SEGREDO PARA MOSTRAR SÓ 1 COMENTÁRIO INICIALMENTE: */
.fest-comments-list.collapsed .fest-comment-item:not(:first-child) {
    display: none;
}

.fest-comments-list {
    max-height: 250px;
    overflow-y: auto;
}

/* Scrollbar Bonita */
.fest-comments-list::-webkit-scrollbar { width: 4px; }
.fest-comments-list::-webkit-scrollbar-track { background: #111; }
.fest-comments-list::-webkit-scrollbar-thumb { background: #8B4513; border-radius: 2px; }

.fest-comment-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid #444;
}

/* --- CORREÇÃO RESPONSIVIDADE CELULAR (INPUT E BOTÃO) --- */
@media (max-width: 600px) {
    .fest-comments-container form {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
    }
    .fest-comments-container form .form-control {
        flex: 1 1 auto !important;
        width: 100% !important;
        margin-bottom: 0 !important;
    }
    .fest-comments-container form .btn-submit {
        width: auto !important;
        flex: 0 0 auto !important;
        padding: 0 15px !important;
    }
}