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

body{
    background:#f5f7fb;
    color:#1e293b;
}

.container{
    max-width:900px;
    margin:40px auto;
    padding:20px;
}

.logo{
    text-align:center;
    margin-bottom:30px;
}

.logo img{
    max-width:220px;
}

.box-rastreio{
    background:white;
    padding:35px;
    border-radius:16px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    text-align:center;
}

.box-rastreio h1{
    font-size:25px;
    margin-bottom:10px;
	color: #2C2C2C;
}

.box-rastreio p{
    color:#64748b;
    margin-bottom:25px;
}

.box-rastreio form{
    display:flex;
    gap:10px;
}

.box-rastreio input{
    flex:1;
    height:45px;
    border:1px solid #dbe2ea;
    border-radius:12px;
    padding:0 15px;
    font-size:16px;
}

.box-rastreio button{
    background:#417EB8;
    color:white;
    border:none;
    padding:0 25px;
    border-radius:12px;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.box-rastreio button:hover{
    transform:translateY(-2px);
}

.resultado{
    margin-top:30px;
}

.card-status{
    background:white;
    border-radius:16px;
    padding:25px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    margin-bottom:20px;
}

.card-status h2{
	color: #2c2c2c;
    font-size: 22px;
}

.card-status p{
	color: #64748b;
	margin-top: 10px;
}

.badge{
    background:#dcfce7;
    color:#166534;
    padding:8px 16px;
    border-radius:50px;
    font-size:12px;
    font-weight:600;
    display:inline-block;
    margin-bottom:15px;
}

.timeline{
    background:white;
    border-radius:16px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.item{
    display:flex;
    gap:20px;
    position:relative;
    padding-bottom:35px;
}

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

.item:not(:last-child)::after{
    content:'';
    position:absolute;
    left:18px;
    top:40px;
    width:2px;
    height:100%;
    background:#e2e8f0;
}

.icone{
    width:38px;
    height:38px;
    border-radius:50%;
    background:#e2e8f0;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-shrink:0;
}

.concluido .icone{
    background:#417EB8;
    color:white;
}

.ativo .icone{
    background:#417EB8;
    color:white;
}

.texto h3{
    font-size:17px;
    margin-bottom:5px;
	color: #2C2C2C;
}

.texto span{
    color:#64748b;
    font-size:14px;
}

footer{
    text-align:center;
    padding:30px;
    color:#64748b;
}

footer a{
	color: #417EB8;
	font-weight: bold;
	text-decoration: none;
}

footer a:hover{
	color: #2080da;
	text-decoration: underline;
}

.card-entrega{
    background:#fff;
    border-radius:16px;
    padding:25px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    margin-bottom:30px;
}

.card-topo{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:25px;
    flex-wrap:wrap;
    gap:10px;
}

.status-badge{
    padding:8px 16px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.card-status .entregue{
    background:#dcfce7;
    color:#15803d;
}

.card-status .rota{
    background:#dbeafe;
    color:#1d4ed8;
}

.card-status .cancelado{
    background:#fee2e2;
    color:#dc2626;
}

.card-status .parcial{
    background:#fef3c7;
    color:#92400e;
}

.badge.distribuido{
    background: #fef3c7;
    color: #b45309;
}

.card-status .normal{
    background: #f3f4f6;
    color: #4b5563;
}

.codigo{
    color:#64748b;
    font-size:14px;
    font-weight:500;
}

.card-info{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.info-item{
    display:flex;
    flex-direction:column;
}

.info-item .titulo{
    color:#94a3b8;
    font-size:13px;
    margin-bottom:5px;
}

.info-item strong{
    color:#0f172a;
    font-size:15px;
    font-weight:600;
}

@media (max-width: 505px){

    .box-rastreio form{
        flex-direction: column;
    }

    .box-rastreio input{
        width: 100%;
        height: 40px;
        padding: 10px;
    }

    .box-rastreio button{
        width: 100%;
        justify-content: center;
        height: 40px;
    }

}