```css
/* =========================================================
   SBQS 2026 — Transporte
   Escopo: somente .sbqs-tracks
   ========================================================= */


/* ---------------------------------------------------------
   Card principal
   --------------------------------------------------------- */

.sbqs-tracks .sbqs-transport-card {
    overflow: hidden;
    margin-bottom: 50px;
    border: 1px solid #d8e8ef;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.sbqs-tracks .sbqs-transport-card__header {
    padding: 26px 28px;
    border-bottom: 1px solid #d8e8ef;
}

.sbqs-tracks .sbqs-transport-card__header h2 {
    margin: 8px 0 5px;
    font-size: 24px;
}

.sbqs-tracks .sbqs-transport-card__header p {
    margin: 0;
    opacity: 0.7;
}


/* ---------------------------------------------------------
   Voos
   --------------------------------------------------------- */

.sbqs-tracks .sbqs-flights {
    padding: 28px;
}

.sbqs-tracks .sbqs-flights .sbqs-section-header {
    margin-bottom: 22px;
}


/* ---------------------------------------------------------
   Tabela
   --------------------------------------------------------- */

.sbqs-tracks .sbqs-flight-table-wrapper {
    overflow-x: auto;
    border: 1px solid #e3e7ea;
    border-radius: 8px;
}

.sbqs-tracks .sbqs-flight-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.sbqs-tracks .sbqs-flight-table th {
    padding: 14px 16px;
    text-align: left;
    font-size: 13px;
    background: #f4f8fa;
    color: #004b6b;
    border-bottom: 1px solid #d8e8ef;
}

.sbqs-tracks .sbqs-flight-table td {
    padding: 16px;
    vertical-align: top;
    border-bottom: 1px solid #e8edef;
    line-height: 1.6;
}

.sbqs-tracks .sbqs-flight-table tbody tr:last-child td {
    border-bottom: none;
}

.sbqs-tracks .sbqs-flight-table tbody tr:hover {
    background: #f8fbfc;
}

.sbqs-tracks .sbqs-flight-table td:nth-child(1) {
    min-width: 160px;
    font-weight: 600;
}

.sbqs-tracks .sbqs-flight-table td:nth-child(2) {
    min-width: 100px;
    font-weight: 600;
    color: #005b83;
}

.sbqs-tracks .sbqs-flight-table td:nth-child(3) {
    min-width: 280px;
}

.sbqs-tracks .sbqs-flight-everyday {
    display: inline-block;
    margin-left: 5px;
    font-size: 12px;
    opacity: 0.65;
}


/* ---------------------------------------------------------
   Opções de transporte
   --------------------------------------------------------- */

.sbqs-tracks .sbqs-transport-options {
    margin-bottom: 30px;
}

.sbqs-tracks .sbqs-transport-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sbqs-tracks .sbqs-transport-option {
    display: flex;
    gap: 15px;
    padding: 22px;
    border: 1px solid #d8e8ef;
    border-radius: 10px;
    background: #fff;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.sbqs-tracks .sbqs-transport-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.07);
}

.sbqs-tracks .sbqs-transport-option__icon {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 8px;
    background: #fff8d6;
    font-size: 21px;
}

.sbqs-tracks .sbqs-transport-option h3 {
    margin: 0 0 7px;
    font-size: 17px;
}

.sbqs-tracks .sbqs-transport-option p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}


/* ---------------------------------------------------------
   Tempo de deslocamento
   --------------------------------------------------------- */

.sbqs-tracks .sbqs-transport-time {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    border-left: 4px solid #f2c500;
    border-radius: 8px;
    background: #fff8d6;
}

.sbqs-tracks .sbqs-transport-time strong {
    color: #004b6b;
}

.sbqs-tracks .sbqs-transport-time span {
    font-size: 14px;
}


/* ---------------------------------------------------------
   Responsivo
   --------------------------------------------------------- */

@media (max-width: 900px) {

    .sbqs-tracks .sbqs-transport-grid {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 700px) {

    .sbqs-tracks .sbqs-flights {
        padding: 20px;
    }

    .sbqs-tracks .sbqs-transport-card__header {
        padding: 20px;
    }

    .sbqs-tracks .sbqs-flight-table {
        min-width: 650px;
    }

    .sbqs-tracks .sbqs-transport-time {
        flex-direction: column;
        align-items: flex-start;
    }

}
```
