.rastreamento-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0066CC 0%, #0052A3 100%);
    padding: 20px;
}
.rastreamento-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
.rastreamento-header {
    text-align: center;
    margin-bottom: 32px;
}
.rastreamento-header .logo {
    font-size: 36px;
    color: #0066CC;
    margin-bottom: 8px;
}
.rastreamento-form {
    margin-bottom: 32px;
}
.form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 16px;
}
.rastreamento-result {
    margin-top: 32px;
}
.frete-info-card, .status-timeline {
    background: #F9FAFB;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
}
.info-row {
    padding: 12px 0;
    border-bottom: 1px solid #E5E7EB;
}
.info-row:last-child {
    border-bottom: none;
}
.timeline-item {
    display: flex;
    align-items: start;
    gap: 16px;
    padding: 16px 0;
    position: relative;
}
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 7px;
    top: 32px;
    width: 2px;
    height: calc(100% - 16px);
    background: #E5E7EB;
}
.timeline-item.active:not(:last-child)::after {
    background: #0066CC;
}
.timeline-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #E5E7EB;
    border: 3px solid white;
    flex-shrink: 0;
    margin-top: 2px;
}
.timeline-item.active .timeline-dot {
    background: #0066CC;
}
.timeline-item.current .timeline-dot {
    background: #10B981;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
}
.timeline-content {
    flex: 1;
}
.rastreamento-footer {
    text-align: center;
    margin-top: 32px;
}
.rastreamento-footer a {
    color: #0066CC;
    text-decoration: none;
}
