:root {
    --primary: #E50914;
    --primary-hover: #C80812;
    --primary-glow: rgba(229, 9, 20, 0.35);
    --bg-main: #090d16;
    --bg-card: rgba(17, 24, 39, 0.88);
    --bg-card-hover: rgba(27, 36, 56, 0.95);
    --border-color: rgba(255, 255, 255, 0.09);
    --border-active: rgba(229, 9, 20, 0.45);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --text-subtle: #64748b;
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.15);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.15);
    --info: #0ea5e9;
    --info-bg: rgba(14, 165, 233, 0.15);
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.15);
    --radius-lg: 16px;
    --radius-md: 12px;
    --radius-sm: 8px;
    --shadow-card: 0 10px 30px -5px rgba(0, 0, 0, 0.5), 0 8px 10px -6px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 24px rgba(229, 9, 20, 0.28);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-image: 
        radial-gradient(circle at 12% 12%, rgba(229, 9, 20, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 88% 88%, rgba(229, 9, 20, 0.06) 0%, transparent 45%);
    background-attachment: fixed;
    line-height: 1.5;
}

/* Header */
.header {
    padding: 1.25rem 1rem;
    border-bottom: 1px solid var(--border-color);
    background: rgba(9, 13, 22, 0.85);
    backdrop-filter: blur(14px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-main);
}

.brand-logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    display: block;
}

.brand-divider {
    width: 1px;
    height: 22px;
    background: rgba(255, 255, 255, 0.15);
}

.brand-badge {
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(229, 9, 20, 0.15);
    color: #ff4d58;
    padding: 0.2rem 0.65rem;
    border-radius: 9999px;
    border: 1px solid rgba(229, 9, 20, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.header-help {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.header-tag-secure {
    font-size: 0.75rem;
    font-weight: 600;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 0.25rem 0.65rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.header-shop-btn {
    color: var(--text-muted);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.2s;
}

.header-shop-btn:hover {
    color: var(--text-main);
}

/* Main Container */
.main-content {
    max-width: 960px;
    margin: 0 auto;
    padding: 2.5rem 1rem 4rem;
    width: 100%;
    flex: 1;
}

/* Hero Section */
.hero {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.85rem;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.28);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ff4d58;
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
    backdrop-filter: blur(8px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #ff3838;
    border-radius: 50%;
    box-shadow: 0 0 8px #ff3838;
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 56, 56, 0.7); }
    70% { transform: scale(1.1); box-shadow: 0 0 0 6px rgba(255, 56, 56, 0); }
    100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(255, 56, 56, 0); }
}

.hero h2 {
    font-size: 2.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.65rem;
    background: linear-gradient(135deg, #ffffff 30%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.02rem;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

.hero p strong {
    color: #f1f5f9;
}

/* Search Card */
.search-card {
    background: linear-gradient(180deg, rgba(23, 31, 50, 0.85) 0%, rgba(15, 22, 38, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 2.25rem 2rem;
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    margin-bottom: 1.75rem;
    position: relative;
    overflow: hidden;
}

.search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #E50914 0%, #ff4d58 50%, #B91C1C 100%);
}

.search-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.35rem;
    align-items: flex-end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.label-left {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.label-svg {
    color: #ff4d58;
    opacity: 0.95;
}

.form-badge {
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.15rem 0.55rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    background: rgba(10, 14, 26, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    padding: 0.92rem 1.15rem;
    color: #ffffff;
    font-size: 1.02rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    outline: none;
    transition: all 0.22s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.25);
}

.form-input:focus {
    border-color: #ff4d58;
    background: rgba(13, 19, 35, 0.95);
    box-shadow: 0 0 0 3px rgba(229, 9, 20, 0.25), 0 8px 24px rgba(0, 0, 0, 0.35);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: rgba(148, 163, 184, 0.65);
    font-weight: 400;
    font-size: 0.95rem;
}

/* Dica rápida */
.form-quick-tip {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.83rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.form-quick-tip strong {
    color: #e2e8f0;
}

.tip-icon {
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* Turnstile */
.turnstile-group {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 70px;
    margin: 0.5rem 0;
    width: 100%;
}

.turnstile-wrapper,
.cf-turnstile {
    width: 300px;
    min-width: 300px;
    max-width: 100%;
    height: 65px;
    min-height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.turnstile-wrapper iframe,
.cf-turnstile iframe {
    width: 300px !important;
    height: 65px !important;
    min-width: 300px !important;
    min-height: 65px !important;
    display: block !important;
    border: 0 !important;
}

/* Submit Button */
.submit-group {
    grid-column: 1 / -1;
    margin-top: 0.35rem;
}

.btn-track {
    background: linear-gradient(135deg, #E50914 0%, #B91C1C 100%);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 0.95rem 2rem;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 18px rgba(229, 9, 20, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    min-height: 52px;
    width: 100%;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
}

.btn-track::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 40%;
    height: 200%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(25deg);
    transition: all 0.6s ease;
}

.btn-track:hover::after {
    left: 120%;
}

.btn-track:hover {
    background: linear-gradient(135deg, #FF1F2D 0%, #C80812 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(229, 9, 20, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-track:active {
    transform: translateY(0);
    box-shadow: 0 2px 10px rgba(229, 9, 20, 0.35);
}

.btn-track.ready {
    border: 1px solid rgba(16, 185, 129, 0.5);
    box-shadow: 0 4px 20px rgba(229, 9, 20, 0.35), 0 0 14px rgba(16, 185, 129, 0.25);
}

.btn-track:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.btn-text-wrap {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
}

.btn-arrow {
    transition: transform 0.2s ease;
}

.btn-track:hover .btn-arrow {
    transform: translateX(4px);
}

/* Trust Features */
.trust-features {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.trust-icon {
    font-size: 1rem;
}

@media (max-width: 768px) {
    .search-card {
        padding: 1.5rem 1.25rem;
    }
    .search-form {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    .hero h2 {
        font-size: 1.85rem;
    }
    .turnstile-group {
        grid-column: 1;
        overflow-x: auto;
    }
    .submit-group {
        grid-column: 1;
        margin-top: 0.25rem;
    }
    .trust-features {
        gap: 1rem;
        margin-bottom: 2rem;
    }
}

/* Spinner */
.spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 0.8s linear infinite;
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Alert States */
.alert-box {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    animation: fadeIn 0.3s ease;
}

.alert-error {
    background: var(--danger-bg);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #fca5a5;
}

.alert-grid-span {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.btn-track.ready {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    box-shadow: 0 4px 18px rgba(16, 185, 129, 0.4);
}

.btn-track.ready:hover {
    background: linear-gradient(135deg, #34D399 0%, #10B981 100%);
    box-shadow: 0 6px 22px rgba(16, 185, 129, 0.55);
}



.alert-icon {
    font-size: 1.25rem;
    line-height: 1;
}

/* Results Container */
.results-container {
    display: none;
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Status Banner */
.status-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.status-left {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.order-badges {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.badge-tag {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-muted);
}

.badge-status {
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.status-entregue {
    background: var(--success-bg);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.status-transito {
    background: var(--info-bg);
    color: #38bdf8;
    border: 1px solid rgba(14, 165, 233, 0.3);
}

.status-saiu {
    background: rgba(168, 85, 247, 0.15);
    color: #c084fc;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.status-alerta {
    background: var(--warning-bg);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.status-title {
    font-size: 1.4rem;
    font-weight: 700;
}

.status-customer {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.status-right {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-external {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    padding: 0.6rem 1.1rem;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}

.btn-external:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-active);
}

/* Stepper Progress Bar */
.stepper-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 1.5rem;
}

.stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 780px;
    margin: 0 auto;
}

.stepper::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 40px;
    right: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.stepper-progress {
    position: absolute;
    top: 24px;
    left: 40px;
    height: 4px;
    background: linear-gradient(90deg, #E50914, #10b981);
    z-index: 2;
    transition: width 0.6s ease;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 3;
    width: 110px;
}

.step-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #1e293b;
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 0.6rem;
    transition: all 0.3s ease;
    color: var(--text-subtle);
}

.step-item.completed .step-circle {
    background: #065f46;
    border-color: #10b981;
    color: #fff;
}

.step-item.active .step-circle {
    background: #991b1b;
    border-color: #E50914;
    color: #fff;
    box-shadow: 0 0 15px var(--primary-glow);
    animation: pulseCircle 2s infinite;
}

@keyframes pulseCircle {
    0% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.6); }
    70% { box-shadow: 0 0 0 10px rgba(229, 9, 20, 0); }
    100% { box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.step-item.active .step-label,
.step-item.completed .step-label {
    color: var(--text-main);
}

.step-desc {
    font-size: 0.7rem;
    color: var(--text-subtle);
    margin-top: 2px;
}

@media (max-width: 640px) {
    .step-item {
        width: 70px;
    }
    .step-circle {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    .stepper::before, .stepper-progress {
        top: 19px;
        left: 20px;
        right: 20px;
    }
    .step-desc {
        display: none;
    }
}

/* Carrier Showcase Card */
.carrier-showcase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .carrier-showcase-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem;
    }
}

.carrier-logo-wrapper {
    width: 200px;
    height: 72px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
}

.carrier-logo-wrapper img,
.carrier-logo-wrapper svg,
.carrier-logo-img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.carrier-showcase-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.carrier-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: #10b981;
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid rgba(16, 185, 129, 0.25);
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    width: fit-content;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.25rem;
}

.carrier-title {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-main);
    letter-spacing: -0.02em;
}

.carrier-subtitle {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.carrier-meta-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 0.75rem;
    margin-top: 0.25rem;
}

.carrier-meta-item {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.carrier-meta-label {
    font-size: 0.75rem;
    color: var(--text-subtle);
    font-weight: 500;
}

.carrier-meta-val {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}

.carrier-meta-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.carrier-meta-link:hover {
    color: #93c5fd;
    text-decoration: underline;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    box-shadow: var(--shadow-card);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.info-card-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-main);
}

.info-card-sub {
    font-size: 0.75rem;
    color: var(--text-subtle);
    margin-top: 0.25rem;
}

/* Products Card */
.products-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    box-shadow: var(--shadow-card);
    margin-bottom: 1.5rem;
}

.section-heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-main);
}

.product-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.product-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product-icon {
    font-size: 1.25rem;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.product-qty {
    font-size: 0.8rem;
    background: rgba(59, 130, 246, 0.15);
    color: #93c5fd;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-weight: 600;
}

/* Timeline */
.timeline-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
}

.timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 1rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-item {
    position: relative;
    padding-bottom: 1.75rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-dot {
    position: absolute;
    left: -2rem;
    top: 4px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #1e293b;
    border: 2px solid var(--text-subtle);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:first-child .timeline-dot {
    background: #3b82f6;
    border-color: #60a5fa;
    box-shadow: 0 0 10px var(--primary-glow);
}

.timeline-item.item-entregue .timeline-dot {
    background: #10b981;
    border-color: #34d399;
}

.timeline-badge-latest {
    font-size: 0.7rem;
    font-weight: 700;
    background: rgba(59, 130, 246, 0.2);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.35);
    padding: 0.15rem 0.5rem;
    border-radius: 9999px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.timeline-item.item-latest .timeline-dot {
    background: #3b82f6;
    border-color: #93c5fd;
    box-shadow: 0 0 12px var(--primary-glow);
}

.timeline-item.item-latest.item-entregue .timeline-dot {
    background: #10b981;
    border-color: #6ee7b7;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.5);
}

.timeline-item.item-latest .timeline-content {
    background: rgba(18, 24, 38, 0.95);
    border-color: rgba(59, 130, 246, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.timeline-item.item-latest .timeline-desc {
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
}

.timeline-content {
    background: rgba(11, 15, 25, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    transition: background 0.2s;
}

.timeline-content:hover {
    background: rgba(11, 15, 25, 0.7);
}

.timeline-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.timeline-date {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
}

.timeline-location {
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.15rem 0.5rem;
    border-radius: var(--radius-sm);
    color: var(--text-muted);
}

.timeline-desc {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-main);
}

/* FAQ / Help Section */
.faq-section {
    margin-top: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
}

.faq-title {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
}

.faq-item {
    background: rgba(18, 24, 38, 0.4);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 1.25rem;
}

.faq-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
    color: var(--text-main);
}

.faq-item p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.faq-link {
    color: #ff4d58;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.faq-link:hover {
    color: #ffffff;
    text-decoration-color: #ff4d58;
}

/* Footer */
.footer {
    border-top: 1px solid var(--border-color);
    padding: 2rem 1rem;
    text-align: center;
    color: var(--text-subtle);
    font-size: 0.85rem;
    background: rgba(11, 15, 25, 0.9);
}

.footer a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.footer a:hover {
    color: var(--primary);
}
