a {
    text-decoration: none;
}

.content {
    position: relative;
    background-color: #ffffff;
    max-width: 100vw;
    /* max-height: 100vh; */
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: hidden;
    z-index: 1;
}

.content .bg {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: url(/images/bg-content.jpg) center center;
    opacity: .15;
    width: 100%;
    height: 100%;
}

.pesquisa {
    text-align: center;
}

.pesquisa form input {
    width: 70%;
    border-radius: .25rem 0 0 .25rem;
}

.pesquisa form button {
    width: 30%;
    border-radius: 0 .25rem .25rem 0;
}

.pesquisa h1 {
    font-size: 3rem;
    color: #000000;
}

.pesquisa p {
    color: #000000;
}

.footer {
    width: 100%;
    color: #000;
}

.rastreamento .info-entrega {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
}

.rastreamento .info-entrega .card .card-header {
    background-color: #ffffff;
}

.rastreamento .info-entrega .card .card-header h2 {
    font-size: 1.5rem;
    font-weight: bold;
}

.rastreamento-status {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
}

.rastreamento-status h2 {
    margin-bottom: 30px;
    color: #1e293b;
    text-align: center;
}

/* ===============================
   Linha de Progresso
=================================*/

.progress-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 50px;
}

.progress-container::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #a7a7a7;
    z-index: 0;
}

.progress-step {
    position: relative;
    text-align: center;
    flex: 1;
    z-index: 1;
}

.progress-step .circle {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    border-radius: 50%;
    background: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.progress-step span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.progress-step small {
    font-size: 12px;
    color: #64748b;
}

/* Status concluído */
.progress-step.completed .circle {
    background: #16a34a;
    color: #fff;
}

/* Status atual */
.progress-step.active .circle {
    background: #facc15;
    color: #000;
    animation: pulse 1.5s infinite;
}

/* Animação do status atual */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/* ===============================
   Timeline detalhada
=================================*/

/* .timeline {
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
} */

.timeline-item {
    background: #f8fafc;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 4px solid #000000;
}

.timeline-item strong {
    display: block;
    margin-bottom: 5px;
    color: #000000;
}

.timeline-item p {
    margin: 0;
    color: #000000;
}

/* ===============================
   Responsivo
=================================*/

@media (min-width: 769px) {
    .rastreamento {
        max-height: 81vh;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .rastreamento::-webkit-scrollbar {
        width: 6px;
    }

    .rastreamento::-webkit-scrollbar-thumb {
        background: #cbd5e1;
        border-radius: 10px;
    }

    .footer {
        position: absolute;
        padding: 14px 0;
        bottom: 0;
    }
}

@media (max-width: 768px) {
    .content {
        padding: 20px 0;
    }

    .busca-group {
        flex-direction: column;
    }

    .footer {
        position: static;
    }

    .pesquisa form input {
        width: 100%;
        border-radius: .25rem !important;
        margin-bottom: 10px;
    }

    .pesquisa form button {
        width: 100%;
        border-radius: .25rem !important;
    }

    .progress-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .progress-container::before {
        display: none;
    }

    .progress-step {
        display: flex;
        align-items: center;
        margin-bottom: 20px;
        text-align: left;
    }

    .progress-step .circle {
        margin: 0 15px 0 0;
    }
}