/* Cores extraídas de personalexpress.com.br/site/ em 2026-08-07 (getComputedStyle). */
:root {
    --azul-primario: #1c5c7c;
    --azul-banner: #134d9b;
    --amarelo: #feca41;
    --preto: #000000;
    --cinza-texto: #212529;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: Roboto, -apple-system, "Segoe UI", Arial, sans-serif;
    color: var(--cinza-texto);
    background: #f4f6f8;
}

.topbar {
    background: var(--preto);
    color: #fff;
    font-size: 13px;
    padding: 6px 24px;
    display: flex;
    justify-content: flex-end;
    gap: 24px;
}

.navbar {
    background: #fff;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

.navbar .logo {
    font-weight: 700;
    font-size: 20px;
    color: var(--azul-primario);
    letter-spacing: .5px;
}
.navbar .logo span { font-weight: 400; }

.navlinks a {
    color: var(--azul-primario);
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    margin-left: 28px;
    padding-bottom: 6px;
    border-bottom: 2px solid transparent;
}
.navlinks a.active { border-bottom-color: var(--amarelo); }

.hero {
    background: var(--azul-banner);
    color: #fff;
    text-align: center;
    padding: 56px 24px;
}
.hero h1 { margin: 0 0 8px; font-size: 32px; font-weight: 600; }
.hero p { margin: 0; opacity: .9; }

.content {
    max-width: 640px;
    margin: -32px auto 48px;
    padding: 0 16px;
}

.busca-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
    padding: 24px;
}
.busca-card label { display: block; font-size: 14px; margin-bottom: 8px; color: var(--cinza-texto); }
.busca-linha { display: flex; gap: 12px; }
.busca-linha input {
    flex: 1;
    padding: 12px 14px;
    border: 1px solid #d5dbe1;
    border-radius: 26px;
    font-size: 14px;
}
.busca-linha button {
    background: var(--azul-primario);
    color: #fff;
    border: none;
    border-radius: 26px;
    padding: 0 28px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
}
.busca-linha button:hover { opacity: .9; }

.demo-hint { margin: 14px 0 0; font-size: 12px; color: #6b7785; }
.demo-hint a { color: var(--azul-primario); margin: 0 3px; }

.resultado {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
    padding: 24px;
    margin-top: 20px;
}
.resultado.nao-encontrado { color: #a4331f; text-align: center; }

.resultado-header {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef1f4;
}
.resultado-header .label { display: block; font-size: 11px; color: #8894a2; text-transform: uppercase; }
.resultado-header strong { font-size: 14px; }
.link-transportadora {
    margin-left: auto;
    color: var(--azul-primario);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
}

.alerta {
    background: #fff4e5;
    color: #a4331f;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 13px;
    margin-bottom: 16px;
}

.timeline { list-style: none; margin: 0; padding: 0; }
.timeline li {
    position: relative;
    padding: 0 0 20px 26px;
    border-left: 2px solid #e2e6ea;
    font-size: 14px;
    color: #98a2ad;
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline .ponto {
    position: absolute;
    left: -7px;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e2e6ea;
}
.timeline li.concluida { color: var(--cinza-texto); }
.timeline li.concluida .ponto { background: var(--azul-primario); }
.timeline li.atual { color: var(--azul-primario); font-weight: 600; }
.timeline li.atual .ponto { background: var(--amarelo); box-shadow: 0 0 0 4px #fff2cf; }

.footer {
    background: var(--preto);
    color: #fff;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
}
