/* ========================================
   MULTIDATAS - BENETRIP
   Grid comparativa, Cards Traduzidos
   ======================================== */

/* Seletores de Passageiros */
.pax-group {
    background: #FFF8F3;
    padding: 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(232, 119, 34, 0.2);
}

.pax-selectors {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.pax-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.pax-item span {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-medium);
}

.pax-input {
    width: 100%;
    text-align: center;
    font-weight: 700;
}

/* Resumo Rota */
.resumo-busca {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-sm);
    box-shadow: var(--shadow);
    margin-bottom: 24px;
    text-align: center;
}

.resumo-busca h2 {
    color: var(--orange-primary);
    font-family: 'Poppins', sans-serif;
    margin-bottom: 4px;
}

.resumo-busca p {
    font-size: 14px;
    color: var(--gray-medium);
    font-weight: 600;
}

/* Matriz Responsiva */
.matriz-container {
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin-bottom: 32px;
}

.matriz-container h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-dark);
    margin-bottom: 4px;
}

.table-responsive {
    width: 100%;
    overflow-x: auto; /* Scroll horizontal em mobile */
    margin-top: 16px;
}

.matriz-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 4px;
    min-width: 500px;
}

.matriz-table th, .matriz-table td {
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
}

.matriz-table th {
    background: var(--gray-light);
    color: var(--gray-dark);
    font-weight: 600;
}

.matriz-table td.disponivel {
    background: #F0F8FF;
    border: 1px solid #BEE3F8;
    color: var(--blue-secondary);
    font-weight: 600;
    transition: var(--transition);
}

.matriz-table td.disponivel:hover {
    background: #E2E8F0;
    cursor: pointer;
}

.matriz-table td.melhor-opcao {
    background: #E8F8F0;
    border: 2px solid var(--green-success);
    color: var(--green-success);
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.2);
}

.matriz-table td.indisponivel {
    background: #FAFAFA;
    color: #CCC;
}

.preco-pax {
    display: block;
}

/* Badge Ambiental */
.co2-badge {
    background: #E8F8F0;
    color: var(--green-success);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}
