* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f0f2f5;
    color: #333;
    padding: 20px;
}

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

.header h1 {
    color: #ff6600;
    font-size: 28px;
    margin-bottom: 5px;
}

.header p {
    color: #666;
    font-size: 16px;
    font-weight: bold;
}

.container {
    max-width: 500px;
    margin: 0 auto;
}

#lista-voos {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.card-voo {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    border-left: 6px solid #ff6600;
    transition: transform 0.2s ease;
}

.card-voo:hover {
    transform: translateY(-2px);
}

/* --- NOVO VISUAL DA ROTA --- */
.cabecalho-voo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.data {
    color: #888;
    font-size: 14px;
    font-weight: bold;
}

.voo-id {
    font-size: 18px;
    font-weight: bold;
    color: #666;
    margin: 0;
}

.rota-destaque {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff9f5;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ffe0cc;
}

.ponto-voo {
    display: flex;
    flex-direction: column;
    width: 40%;
}

.ponto-voo:last-child {
    text-align: right;
}

.cidade {
    font-size: 18px;
    font-weight: 900;
    color: #333;
    line-height: 1.2;
    margin-bottom: 5px;
}

.horario {
    font-size: 16px;
    color: #ff6600;
    font-weight: bold;
}

.seta-rota {
    font-size: 24px;
    color: #ccc;
}

.equipamento {
    font-size: 12px;
    color: #999;
    margin-top: 15px;
    text-align: right;
}

/* ==========================
   CARD DO VOO DO DIA
========================== */

.card-status {
    background: linear-gradient(135deg, #0066cc, #003b75);
    color: white;
    border-radius: 18px;
    padding: 25px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.card-status h2 {
    margin: 0;
    font-size: 18px;
    opacity: .9;
}

.card-status h1 {
    margin: 12px 0;
    font-size: 34px;
    font-weight: 700;
}

.card-status h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 500;
}

.card-status p {
    margin: 18px 0;
    font-size: 18px;
}

.card-status .badge-status {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: bold;
    font-size: 16px;
}



.card-passado {
    opacity: 0.5; 
    filter: grayscale(80%); 
}

.card-hoje {
    border: 2px solid #ff6600 !important; 
    background-color: #fff9f5 !important; 
    transform: scale(1.02); 
    box-shadow: 0 6px 12px rgba(255, 102, 0, 0.15);
}