@media (min-width: 768px) {
    .content {
        background-color: rgba(255, 255, 255, 0.9);
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
        backdrop-filter: blur(5px);
        border-radius: 20px;
    }

    .bg-iseg {
        background: #608aae;
        background: -webkit-linear-gradient(to right, #608aae, #679bca);
        background: linear-gradient(to right, #608aae, #679bca);
    }
}


.breadcrumb-custom .breadcrumb-item {
    position: relative;
    flex-grow: 1;
    padding: .75rem 3rem;
}

.breadcrumb-custom .breadcrumb-item::before {
    display: none;
}

.breadcrumb-custom .breadcrumb-item::after {
    position: absolute;
    top: 50%;
    right: -25px;
    z-index: 1;
    display: inline-block;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    content: "";
    background-color: var(--bs-tertiary-bg);
    border-top-right-radius: .5rem;
    box-shadow: 1px -1px var(--bs-border-color);
    transform: scale(.707) rotate(45deg);
}

.breadcrumb-custom .breadcrumb-item:first-child {
    padding-left: 1.5rem;
}

.breadcrumb-custom .breadcrumb-item:last-child {
    padding-right: 1.5rem;
}

.breadcrumb-custom .breadcrumb-item:last-child::after {
    display: none;
}

.form-check-question input {
    transform: scale(2);
    -webkit-transform: scale(2);
}

@media (max-width: 768px) {

    .table-impulso td,
    .table-impulso th {
        padding: 0rem;
    }
}


.mb-3 label {
    font-weight: 600;
    color: #333;
}

.btn {
    transition: all 0.3s ease;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.footer {
    text-align: center;
    color: #777;
}

.stepper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media (min-width: 768px) {
    .stepper::before {
        content: "";
        position: absolute;
        top: 29%;
        left: 0;
        right: 0;
        height: 2px;
        background-color: #d5d5d5;
        z-index: -1;
    }
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.step-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
}

.step-text {
    margin-top: 8px;
    font-weight: 500;
    color: #6c757d;
}

.step .step-icon {
    background-color: #6c757d;
}

.step .step-text {
    color: #6c757d;
}

.step.active .step-icon {
    background-color: #007bff;
}

.step.active .step-text {
    color: #007bff;
    font-weight: bold;
}

.step.done .step-icon {
    background-color: #28a745;
}

.step.done .step-text {
    color: #28a745;
}

@media (max-width: 576px) {
    .stepper {
        flex-wrap: wrap;
    }

    .step {
        margin-bottom: 20px;
    }
}

.bg-purple {
    background-color: #840096;
}

.form-check-personal input[type="checkbox"] {
    /* Double-sized Checkboxes */
    -ms-transform: scale(2);
    /* IE */
    -moz-transform: scale(2);
    /* FF */
    -webkit-transform: scale(2);
    /* Safari and Chrome */
    -o-transform: scale(2);
    /* Opera */
    padding: 5px;
}

.form-check-personal {
    margin-bottom: 1.125rem;
}

.form-check-personal .form-check-label {
    font-weight: 600;
    color: #333;
}