/* Reset escopado pra não vazar pro restante da aplicação */
.bilhete-scope, .bilhete-scope * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}
/* Material Icons precisam manter sua font-family */
.bilhete-scope .material-symbols-outlined,
.bilhete-scope .material-icons {
    font-family: 'Material Symbols Outlined', 'Material Icons' !important;
    font-weight: normal;
    font-style: normal;
    line-height: 1;
    letter-spacing: normal;
    text-transform: none;
    display: inline-block;
    white-space: nowrap;
    word-wrap: normal;
    direction: ltr;
    -webkit-font-feature-settings: 'liga';
    -webkit-font-smoothing: antialiased;
}

/* Variáveis no :root também (fallback pra html2canvas que clona o elemento sem o parent) */
:root {
    --primary-500: #14143A;
    --primary-500-hover: #59CE6C;
    --primary-400: #2B2D7A;
    --primary-300: #4F68CB;
    --primary-200: #87A2ED;
    --primary-100: #DFE9FF;
    --primary-50: #F0F4FF;
    --secondary-500: #59CE6C;
    --neutral-500: #3D3D4D;
    --neutral-400: #646470;
    --neutral-300: #919199;
    --neutral-200: #C2C2C7;
    --neutral-100: #E0E0E1;
    --neutral-50: #F5F6F7;
}
.bilhete-scope {
    background-color: #F6F6F6;
    padding: 16px;
    border-radius: 8px;
}
/* Cores hardcoded pros elementos críticos (evita problemas de var() no html2canvas) */
.bilhete-scope .bg-primary,
.bilhete-scope .titulo-voo {
    background-color: #14143A !important;
    color: #fff !important;
}
.bilhete-scope .btn-visualizar-reserva {
    background: #14143A !important;
    color: #fff !important;
}
.bilhete-scope .mostrador-localizador {
    background-color: #DFE9FF !important;
    color: #14143A !important;
}
.bilhete-scope .marcador-viagem {
    background-color: #DFE9FF !important;
}
.bilhete-scope .marcador-viagem .tipo-viagem,
.bilhete-scope .marcador-viagem .material-symbols-outlined {
    color: #2B2D7A !important;
}
.bilhete-scope .barra-opcoes {
    background-color: #F5F6F7 !important;
    /* Quando estiver dentro do drawer da Moematur, fica abaixo do bilhete (não fixo no viewport) */
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin-top: 20px;
    bottom: auto !important;
    left: auto !important;
}
.bilhete-scope .btn-barra-opcao {
    background-color: #4F68CB !important;
    color: #fff !important;
    border-color: #4F68CB !important;
}
.bilhete-scope .btn-barra-opcao:disabled {
    background-color: #C2C2C7 !important;
    color: #646470 !important;
}

/* Backgrounds */
.bg-primary {
    background-color: var(--primary-500);
    color: #fff;
}

.folha {
    margin: 0 auto;
    width: 870px;
    position: relative;
    background-color: #FFFFFF;
    /* padding: 0.5cm 0.8cm 0.5cm 0.8cm; */
    display: flex;
    flex-direction: column;
    /*gap: 0.5rem;*/
    flex-wrap: nowrap;
    align-content: flex-start;
    justify-content: flex-start;
}

.body.informacoes-bilhete {
    flex: 1;
}

/*
@media print {
    .break {
        page-break-before: always;
    }
}
*/
/* .informacoes-bilhete, */
.header {
    padding: 0.5cm 0.8cm 0.5cm 0.8cm;
}

/* Header */

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* padding: 1rem 0; */
    border-bottom: 1px solid var(--neutral-100);
}

.header .img-logo-companhia {
    max-width: 140px;
    width: 100%;
    height: 100%;
}

.header .informacoes-localizador {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: center;
    gap: 0 32px;
    /* width: 150px; */
}

/* .informacoes-localizador.latam{
    width: 250px;
} */

/* .informacoes-localizador h2{
    font-size: 16px;
    font-weight: 700;
    color: var(--neutral-500);
    margin-bottom: 0.1rem;
} */

/* .informacoes-localizador span{
    font-size: 11px;
    font-weight: 400;
    color: var(--neutral-500);
} */

.header .informacoes-localizador .sessao-localizador {
    display: flex;
    flex-direction: row;
    /* gap: 0.5rem; */
    gap: 0 32px;
    /* padding: 0.5rem; */
    /* border-radius: 5px; */
    align-items: center;
    justify-content: center;
}

.header .informacoes-localizador .sessao-localizador .mostra-localizador {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    color: var(--primary-500);
    font-size: 14px;
    font-weight: 600;
}

.header .informacoes-localizador .sessao-localizador .mostra-localizador .mostrador-localizador {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-500);
    padding: 0.3rem 1.2rem;
    background-color: var(--primary-100);
    margin-top: 0.1rem;
    width: 100%;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    border-radius: 4px;
}

.header .informacoes-localizador .btn-visualizar-reserva {
    background: var(--primary-500);
    color: #fff;
    padding: 0.3rem 1.2rem;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.header .informacoes-localizador .btn-visualizar-reserva:hover {
    background: var(--primary-400);
    cursor: pointer;
}






/* Titulos gerais das seções */
.titulo-sessao {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-500);
    margin-bottom: 0;
    /* margin-top: 10px; */

}



/* Informações do voo */

/* .informacoes-viagem {
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: space-between;
} */

/* .informacao-label {
    font-size: 15px;
    color: var(--primary-400);
    line-height: 1.45;
    font-weight: 700;
} */

.informacoes-voo .informacoes-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    color: var(--primary-500);
}

.informacoes-voo .informacoes-box>div {
    all: inherit;
}

.informacoes-voo .informacoes-box>div p {
    font-size: 16px;
    font-weight: 400;
    /* color: var(--primary-500);s */
}

.informacoes-voo .informacoes-box>div span {
    margin-right: 8px;
}

.informacoes-voo .informacoes-box>div .servico-adicional {
    background-color: var(--neutral-50);
    margin: 5px;
    padding: 5px 8px;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: row;
    flex-wrap: nowrap;
}



/* .info-servico {
    display: flex;
    align-content: center;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
} */

/* .servico-adicional div span.material-symbols-outlined {
    font-size: 18px;
    line-height: 1;
    margin-right: 5px;
} */

/* .texto-servico {
    font-size: 14px;
    line-height: 1;
} */

/* Informações do passageiro */

.informacoes-passageiros {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5cm 0.8cm 0.5cm 0.8cm;
    /*border-bottom: 1px dashed var(--neutral-100);*/
    padding-bottom: 15px;
}

.informacoes-passageiros.segunda-folha {
    margin-top: 20px;
}

.passageiro-bc {
    background-color: var(--neutral-50);
    border: 1px solid var(--neutral-50);
    padding: 8px;
    border-radius: 6px;
    display: block;
    margin-bottom: 16px;
}

.passageiro-bc .info-passageiro {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-content: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    margin-bottom: 10px;
}

.nome-passageiro {
    font-size: 16px;
    color: var(--neutral-500);
    font-weight: 700;
    line-height: 1.45;
}

.documento-passageiro {
    font-size: 14px;
    color: var(--primary-400);
    font-weight: 400;
    line-height: 1.45;
}

.documento-passageiro span {
    font-weight: 700;
}

.info-servicos-passageiro {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.servico-passageiro {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 4px;
    width: 50%;
    /* padding: 8px 0; */
}

.marcador-viagem {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
    background-color: var(--primary-100);
    padding: 6px;
    /* height: 65px; */
    height: 81px;
    width: 32px;
    justify-content: center;
    margin-right: 10px;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}

.marcador-viagem .tipo-viagem {
    font-size: 9px;
    color: var(--primary-400);
    font-weight: 400;
    line-height: 1.45;
}

.marcador-viagem .material-symbols-outlined {
    font-size: 20px;
    color: var(--primary-400);
    font-weight: 400;
    line-height: 1.45;
}

.servicos-atribuidos {
    display: flex;
    flex-direction: column;
    align-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    justify-content: flex-start;
    width: 100%;
}

.mostrador-servico-atribuido {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;

}

.servico-titulo {
    font-size: 12px;
    font-weight: 600;
    color: var(--neutral-500);
    margin-bottom: 10px;
    text-align: center;
}

.servico-assento {
    padding-right: 10px;
    border-right: 1px solid var(--neutral-50);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    align-content: flex-start;
    justify-content: center;
    width: 70%;
}

.servico-assento .assentos {
    display: flex;
    align-items: flex-end;
    width: 100%;
    gap: 8px;

}

.servico-assento .assentos .assento {
    display: flex;
    flex-direction: column;
    padding-right: 10px;
}

.servico-assento .assentos .assento p {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary-500);
}

.servico-assento .assentos .assento span {
    background: var(--primary-500);
    color: #fff;
    border-radius: 4px;
    font-weight: 700;
}

.servico-assento .assentos .assento.empty span {
    background: var(--neutral-100);
    color: var(--neutral-400);
}

.mostradores-assentos {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
}

seletor-assento{
    display: none;
    position: absolute;
    top: 40%;
    right: -40px;
    transform: translateY(-50%);
    background: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 5px;
    z-index: 10;
}

.mostrador-assento {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: space-between;
}

.mostrador-assento {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    background-color: var(--neutral-50);
    color: var(--primary-400);
    margin: 3px 3px 3px 0px;
    padding: 3px 8px;
}

.aviso-assentos {
    font-size: 10px;
    background: var(--neutral-50);
    color: var(--neutral-400);
    padding: 5px 15px;
    border-radius: 6px;
}

.label-trecho-assento {
    font-size: 8px;
}

.label-assento {
    font-size: 14px;
    font-weight: 700;
}

.servico-bagagem {
    margin-left: 10px;
}

.mostradores-bagagens {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
}

.mostrador-bagagem {
    display: flex;
    flex-direction: column;
    align-content: center;
    align-items: center;
    flex-wrap: nowrap;
    width: 60px;
    position: relative;
}

seletor-bagagem {
    display: none;
    position: absolute;
    top: 100%;  /* abaixo do número da bagagem */
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 6px;
    z-index: 100;
    min-width: 60px;
    margin-top: 4px;
    border: 1px solid #e2e8f0;
}
/* garante que parents não cortem o popup */
.bilhete-scope .mostrador-bagagem,
.bilhete-scope .mostradores-bagagens,
.bilhete-scope .servico-bagagem,
.bilhete-scope .servico-passageiro,
.bilhete-scope .passageiro-bc {
    overflow: visible !important;
}
.bilhete-scope .contador {
    cursor: pointer;
    user-select: none;
    transition: background-color 0.15s;
}
.bilhete-scope .contador:hover {
    background-color: #fef3c7 !important;
    border-radius: 4px;
}

.btn-mais-bagagem,
.btn-menos-bagagem {
    display: block;
    margin: 5px auto;
    padding: 3px 15px;
    cursor: pointer;
    background-color: var(--primary-50);
    border: none;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.2s;
    width: 100%;
    text-align: center;
    color: var(--primary-500);
    font-weight: 700;
}

.btn-mais-bagagem:hover,
.btn-menos-bagagem:hover {
    background-color: #ddd;
    /* Fundo dos botões ao passar o mouse */
}

.info-bagagem {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.icone-bagagem.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 200, 'GRAD' 0, 'opsz' 24
}

.contador {
    /* background-color: #f5f6f7; */
    padding: 2px 10px;
    border-radius: 6px;
    color: var(--primary-400);
    cursor: pointer;
    /* font-weight: 700; */
}

.label-bagagem {
    font-size: 10px;
    color: var(--neutral-500);
    font-weight: 600;
    line-height: 1.45;
}

.aviso-bagagem {
    font-size: 12px;
    position: relative;
    top: -10px;
    color: var(--neutral-500);
}

.regras-tarifarias {
    margin: 24px 0;
}

.regras-tarifarias ul {
    list-style-type: disc;
    margin: 20px;
    /* padding-left: 40px; */
    font-size: 14px;
    color:var(--neutral-500);
    line-height: 1.5;
}

.footer {
    background: var(--primary-50);
    border-radius: 5px;
    display: block;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    gap: 10px;
    color: var(--neutral-500);
    font-size: 14px;
    bottom: 20px;
    position: relative;
    width: calc(100% - 70px);
    margin: auto;
    margin-top: 30px;
    height: 100%;
}

.footer-rodape {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.footer-rodape p {
    padding-top: 10px;
    padding-bottom: 10px;
    color: var(--primary-500);
}

.footer img {
    max-width: 200px;
    width: 100%;
    height: 100%;
}

.footer ul {
    display: flex;
    flex-direction: row;
    gap: 10px;
    list-style: none;
}

.footer ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer ul li a{ 
    display: inherit;
    gap: 4px;
    color: var(--neutral-500);
    font-size: 14px;
    text-decoration: none;
}
.footer ul li span {
    color: var(--primary-500);
    font-size: 22px;
}

.footer ul li svg {
    width: 22px;
    height: 22px;
}

.footer ul li svg path {
    fill: var(--primary-500);
}
.footer ul li a:hover{
    color: var(--secondary-500);
} 






































































/* Informaçoes do voo */

.informacoes-voo {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0.5cm 0.8cm 0cm 0.8cm;
}

.informacoes-voo .voos {}

.informacoes-voo .voos h2 {
    /* font-size: 14px; */
    /* font-weight: 700; */
    /* color: var(--primary-500); */
}

.informacoes-voo .voos .voo {
    margin-bottom: 0px;
}



.informacoes-voo .voos .voo .titulo-voo {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 8px;
    padding: 8px 16px;
}

.informacoes-voo .voos .voo .titulo-voo>p {
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 600;
}



.informacoes-voo .voos .voo .trajeto-viagem {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    /* max-width: 96%; */
    max-width: 100%;
    margin: 16px auto;
}

/* codigo dos voo vindo de tickets aqui */
.trajeto-viagem voo {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    /* gap: 1rem; */
    width: 100%;
    background: var(--neutral-50);
    border: 1px solid var(--neutral-100);
    border-radius: 8px;
    padding: 8px 16px;
}

.trajeto-viagem origem,
.trajeto-viagem destino {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 60px;
}

.trajeto-viagem origem saida {}

.trajeto-viagem saida {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-400);
}

.trajeto-viagem data {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-400);
}

.trajeto-viagem aeroporto {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-size: 12px;
    color: var(--neutral-400);
    width: 170px;
}

.trajeto-viagem cidade {
    /* color: var(--neutral-400); */
}

.trajeto-viagem separador-voo {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    justify-content: cener;
    width: 160px;
    height: auto;
    position: relative;
    flex-direction: row;
    flex-wrap: nowrap;
}

.trajeto-viagem separador-voo:before {
    /* content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0;
    border-top: 1px dashed var(--primary-500);
    z-index: 0; */
}

.trajeto-viagem separador-voo numero-voo {
    color: var(--primary-500);
    font-size: 12px;
    font-weight: 600;

}

.trajeto-viagem separador-voo sigla-origem,
.trajeto-viagem separador-voo sigla-destino {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-500);
    /* background: var(--primary-50); */
    background: var(--neutral-50);
    z-index: 1;
    padding: 0 8px;
    position: relative;
}


.trajeto-viagem separador-voo sigla-origem:before,
.trajeto-viagem separador-voo sigla-destino:before {
    content: "";
    width: 19px;
    position: absolute;
    top: 50%;
    height: 0;
    border-top: 1px dashed var(--primary-500);
    z-index: 0;
}

.trajeto-viagem separador-voo sigla-origem:before {
    left: -19px;

}

.trajeto-viagem separador-voo sigla-destino:before {
    right: -19px;

}

.trajeto-viagem separador-voo .numero-voo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    align-content: center;
    margin-top: 20px;
}

.trajeto-viagem separador-voo .numero-voo span {
    font-size: 20px;
    color: var(--neutral-400);
    transform: rotate(90deg);
    z-index: 1;
}

.trajeto-viagem dados-voos-mobile {
    display: none;
}

@media (max-width: 768px) {
    .trajeto-viagem {
        flex-direction: column;
    }

    .trajeto-viagem dados-voos-mobile {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
    }
}






/* .step-voo {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
    text-align: center;
    margin: 10px;
    background-color: var(--neutral-white);
} */




hr.divisor {
    border: 2px dashed var(--neutral-200);
    width: 100%;
    margin: 30px auto 40px;
    align-self: center;
    position: relative;
}

hr.divisor:before,
hr.divisor:after {
    content: '';
    position: absolute;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background: var(--neutral-200);
}

hr.divisor:before {
    left: -15px;
    top: -15px;
}

hr.divisor:after {
    right: -15px;
    bottom: -15px;
}






















.sigla-aeroporto {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-400);
}

.nome-aeroporto {
    font-size: 10px;
    font-weight: 400;
    color: var(--neutral-400);
    width: 100%;
    text-wrap: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.cidade-aeroporto {
    font-size: 10px;
    font-weight: 400;
    color: var(--neutral-400);
    width: 100%;
    text-wrap: nowrap;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.cidade-aeroporto .material-symbols-outlined {
    font-size: 13px;
    line-height: 1;
}

.horario-voo {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    font-size: 9px;
    font-weight: 400;
    background-color: var(--neutral-100);
    padding: 0.3rem;
    border-radius: 5px;
    color: var(--primary-400);
    text-align: center;
    width: 6rem;
}

.step-numero-voo {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: center;
    width: 100%;
}

.step-numero-voo .codigo-voo {
    font-size: 15px;
    color: var(--primary-500);
    font-weight: 600;
}

.step-numero-voo span.material-symbols-outlined {
    font-size: 24px;
    color: var(--neutral-300);
    transform: rotate(90deg);
}

.step-numero-voo .tempo-voo {
    font-size: 12px;
    color: var(--neutral-500);
    font-weight: 400;
}

.step-numero-voo .info-voo {
    font-size: 12px;
    color: var(--neutral-500);
    font-weight: 400;
}

.separator-line {
    border-top: 1px dashed var(--neutral-100);
    width: 100%;
    margin: 0 auto;
    align-self: center;
}

.separator-line-voos {
    border-top: 1px dashed var(--primary-100);
    width: 100%;
    margin: 0 auto;
    align-self: center;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.bagagens-voo {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    padding: 0.6rem 0rem;
    margin-top: 0.6rem;
}

.barra-opcoes {
    position: fixed;
    bottom: 20px;
    /* Adjusted to be 20px from the bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
    height: 75px;
    background-color: var(--neutral-50);
    border: 1px solid var(--neutral-200);
    color: var(--neutral-white);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    flex-direction: row;
    align-content: center;
    flex-wrap: nowrap;
    padding: 0 1rem;
}

.btn-barra-opcao {
    background-color: var(--primary-300);
    border: 1px solid var(--primary-300);
    margin: 10px;
    padding: 7px;
    color: #FFFFFF;
    border-radius: 6px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.btn-barra-opcao:hover {
    background-color: var(--primary-400);
}

.btn-barra-opcao:disabled {
    background-color: var(--neutral-200);
    border: 1px solid var(--neutral-400);
    color: var(--neutral-400);
    cursor: not-allowed;
}

rodape {
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    position: absolute;
    padding: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    align-content: center;
    flex-wrap: nowrap;
    border: 1px solid var(--neutral-50);
}

logo {
    width: 200px;
    height: 100%;
    padding: 15px;
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    flex-direction: row;
}

logo img {
    max-width: 150px;
    max-height: 100px;
}

informacoes {
    width: calc(100% - 200px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    justify-content: center;
    padding: 0 1rem;
    border: 1px solid var(--neutral-50);
}

.fraco {
    color: var(--neutral-100);
}

.conteudo-regra {
    color: var(--primary-500);
    font-size: 0.8rem;
    line-height: 1.4rem;
}

.regra-bilhete {
    color: var(--neutral-400);
    font-size: 0.7rem;
    line-height: 1rem;
    padding: 20px;
}

.conteudo-regra ul {
    list-style-type: disc;
    /* Ensures bullet points are shown */
    margin: 20px;
    /* Optional: Add spacing around the list */
    padding-left: 40px;
    /* Optional: Add indentation */
}

.conteudo-regra ul li {
    list-style-type: inherit;
}

regra-tarifaria {
    position: absolute;
    bottom: 100px;
    left: 0;
    width: 100%;
    padding: 0 50px;
}

#btnVisibilidadeTrechos {
    background-color: var(--primary-300);
    border: none;
    padding: 5px 15px;
    color: #FFFFFF;
    border-radius: 5px;
    cursor: pointer;
}

#btnVisibilidadeTrechos:hover {
    background-color: var(--primary-500);
}
/* ─── Rodapé de marca ────────────────────────────────────────────────────
   O bilhete sai da Moematur -> agência -> passageiro final. Até 25/07/2026
   ele terminava no aviso de bagagem, sem nenhuma identidade. Discreto de
   propósito: a peça é da companhia aérea, a assinatura é nossa. */
.rodape-bilhete {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 16px;
    margin-top: 18px;
    padding-top: 10px;
    border-top: 1px solid var(--neutral-100);
}

.rodape-marca {
    display: flex;
    flex-direction: column;
    line-height: 1.35;
}

.rodape-nome {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-400);
    letter-spacing: 0.2px;
}

.rodape-sub {
    font-size: 10px;
    font-weight: 400;
    color: var(--neutral-300);
}

.rodape-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    line-height: 1.35;
    font-size: 10px;
    color: var(--neutral-300);
}

.rodape-meta strong {
    color: var(--neutral-400);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* ─── Logotipo tipográfico ────────────────────────────────────────────────
   Cias sem SVG próprio (TAP, Iberia, American…) saem em texto com a cor da
   marca. O .img-logo-companhia tem max-width:140px — medida pensada pro SVG
   da Azul — e isso quebrava "TAP AIR PORTUGAL" em duas linhas no cabeçalho.
   Aqui solta a largura e segura tudo numa linha só. */
.header .img-logo-companhia.logo-texto {
    max-width: none;
    width: auto;
    white-space: nowrap;
    line-height: 1.1;
}
