@media (min-width:992px) {
    .page-container {
        max-width: 1140px;
        margin: 0 auto
    }

    .page-sidenav {
        display: block !important
    }
}

.padding {
    padding: 2rem
}

.w-32 {
    width: 32px !important;
    height: 32px !important;
    font-size: .85em
}

.tl-item .avatar {
    z-index: 2
}

.circle {
    border-radius: 500px
}

.gd-warning {
    color: #fff;
    border: none;
    background: #f4c414 linear-gradient(45deg, #f4c414, #f45414)
}

.timeline {
    position: relative;
    padding: 1rem;
    margin: 0;
    border-radius: 0.25rem;
    background-color: #fff;
}

.p-4 {
    padding: 1.5rem !important
}

.block,
.card {
    background: #fff;
    border-width: 0;
    border-radius: .25rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    margin-bottom: 1.5rem
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important
}

.tl-item {
    position: relative;
    padding-bottom: 1.5rem;
    padding-left: 20px;
}

.tl-item>* {
    padding: 10px
}

.tl-item .avatar {
    z-index: 2
}

.tl-item:last-child .tl-dot:after {
    display: none
}

.tl-item.active .tl-dot:before {
    border-color: #448bff;
    box-shadow: 0 0 0 4px rgba(68, 139, 255, .2)
}

.tl-item:last-child .tl-dot:after {
    display: none
}

.tl-item.active .tl-dot:before {
    border-color: #448bff;
    box-shadow: 0 0 0 4px rgba(68, 139, 255, .2)
}

.tl-dot {
    position: absolute;
    left: -11px;
    top: 0;
    /* width: 20px; */
    /* height: 20px; */
    border-radius: 50%;
    background-color: #fff;
    /* border: 2px solid; */
}

.tl-dot:after,
.tl-dot:before {
    content: '';
    position: absolute;
    border-color: inherit;
    border-width: 2px;
    border-style: solid;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%)
}

.tl-dot:after {
    width: 0;
    height: auto;
    top: 25px;
    bottom: -15px;
    border-right-width: 0;
    border-top-width: 0;
    border-bottom-width: 0;
    border-radius: 0
}

tl-item.active .tl-dot:before {
    border-color: #448bff;
    box-shadow: 0 0 0 4px rgba(68, 139, 255, .2)
}

.tl-dot {
    position: relative;
    border-color: rgba(160, 175, 185, .15)
}

.tl-dot:after,
.tl-dot:before {
    content: '';
    position: absolute;
    border-color: inherit;
    border-width: 2px;
    border-style: solid;
    border-radius: 50%;
    width: 10px;
    height: 10px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%)
}

.tl-dot:after {
    width: 0;
    height: auto;
    top: 25px;
    bottom: -15px;
    border-right-width: 0;
    border-top-width: 0;
    border-bottom-width: 0;
    border-radius: 0
}

.tl-content p:last-child {
    margin-bottom: 0
}

.tl-date {
    font-size: .85em;
    margin-top: 2px;
    min-width: 100px
    /* max-width: 100px */
}

.avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1rem;
}

.b-warning {
    border-color: #f4c414!important;
}

.b-primary {
    border-color: #448bff!important;
}

.b-danger {
    border-color: #f54394!important;
}

.b-success {
    border-color: #28a745 !important; /* Verde */
}

.bg-warning-lt {
    background-color: #fff3cd;
    color: #856404;
}

.bg-success-lt {
    background-color: #d4edda;
    color: #155724;
}

.bg-primary-lt {
    background-color: #cce5ff;
    color: #004085;
}

.tl-content {
    background-color: #f8f9fa;
    border-radius: 0.25rem;
}

.step-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.step {
    flex-grow: 1;
    padding: 15px 20px;
    margin: 10px;
    position: relative;
    background-color: #f1f1f1;
    color: #6c757d;
    font-weight: 600;
    border-radius: 8px;
    min-width: 150px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}
.step i {
    font-size: 1.5rem;
    margin-bottom: 5px;
}
.step.completed {
    background: linear-gradient(135deg, #28a745, #218838);
    color: white;
}
.step.current {
    background: linear-gradient(135deg, #ffc107, #ffb300);
    color: #000;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 60px;
    height: 4px;
    background-color: #e9ecef;
    transform: translateY(-50%);
    z-index: 1;
}
.step.completed:not(:last-child)::after {
    background: #28a745;
}
.step span {
    font-size: 0.85rem;
    opacity: 0.9;
}
@media (max-width: 992px) {
    .step-container {
        padding: 15px;
    }
    .step {
        min-width: 130px;
        padding: 12px 15px;
    }
    .step:not(:last-child)::after {
        width: 40px;
        right: -20px;
    }
}
@media (max-width: 768px) {
    .step-container {
        flex-direction: column;
        gap: 15px;
    }
    .step {
        width: 100%;
        margin: 5px 0;
    }
    .step::after {
        display: none;
    }
    .step.current {
        transform: scale(1.02);
    }
}