/* Ajuste do grupo de botões para mobile */
@media (max-width: 768px) {
    .btn-group-responsive {
        display: flex !important;
        flex-direction: column;
    }
    .btn-group-responsive .btn {
        border-radius: 8px !important;
        margin-bottom: 5px;
        border: 1px solid #0d6efd !important;
    }
}

/* Lista de escolhas moderna (Checkboxes) */
.modern-choice-list > div {
    display: grid;
    grid-template-columns: 1fr; /* 1 coluna no mobile */
    gap: 8px;
}

@media (min-width: 768px) {
    .modern-choice-list > div {
        grid-template-columns: 1fr 1fr; /* 2 colunas no desktop */
    }
}

.modern-choice-list .form-check {
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 15px 15px 15px 45px !important; /* Espaço para o check */
    margin: 0;
    transition: all 0.2s;
    cursor: pointer;
    position: relative;
}

.modern-choice-list .form-check:hover {
    border-color: #0d6efd;
    background: #f8f9ff;
}

.modern-choice-list .form-check-input {
    width: 22px;
    height: 22px;
    margin-left: -35px !important;
    margin-top: 2px;
}

.modern-choice-list .form-check-label {
    font-weight: 500;
    color: #495057;
    width: 100%;
    cursor: pointer;
}

/* Quando marcado */
.modern-choice-list .form-check-input:checked + .form-check-label {
    color: #0d6efd;
    font-weight: 700;
}