/* Importando a fonte Sofia Pro Soft */
@font-face {
    font-family: 'Sofia Pro Soft Light';
    src: url('../fonts/Sofia-Pro-Soft-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Sofia Pro Soft Regular';
    src: url('../fonts/Sofia-Pro-Soft-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Sofia Pro Soft Bold';
    src: url('../fonts/Sofia-Pro-Soft-Bold.otf') format('opentype');
}

.container-container {

    margin-left: 0px !important;
    margin-bottom: 0px !important;
}

#cabotagem-page {
    font-family: 'Inter', 'Roboto', sans-serif;
    background-color: #0b0f19;
    background-image: url('../assets/fundo.png');
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    color: #ffffff;

    /* Breakout total do fluxo para garantir 100% de largura sem quebrar o scroll */
    position: relative;
    width: 100.2vw;
    left: 49.5%;
    right: 50%;
    margin-left: -49vw;
    margin-right: -50vw;

    /* Elimina qualquer espaÃ§amento topo vindo de temas do WP */
    margin-top: -150px;
    box-sizing: border-box;

    /* Garante que o container acompanhe a altura do conteÃºdo interno */
    min-height: 100vh;
    display: block;
    clear: both;
}

/* Primeira Seção: Hero */
.hero-cabotagem {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: #000000;
    padding-bottom: 39vw;
}

.hero-bg-img {
    width: 100%;
    height: auto;
    display: block;
    /* Remove o espaÃ§o fantasma abaixo da imagem */
}

/* Camada que flutua por cima da imagem */
.hero-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

/* Camada escura removida pois a imagem jÃ¡ possui as cores corretas */

/* Classes Estruturais para Ajuste Livre */
.bloco-livre {
    width: 100%;
    display: flex;
    /* Permite usar justify-content para mover o conteÃºdo na horizontal */
    position: absolute;
    /* ISSO AQUI FAZ A MÃGICA: um bloco nunca empurra o outro */
}

/* 1. Controle de posiÃ§Ã£o do TÃ­tulo */
.pos-titulo {
    top: 24.5vw;
    /* Responsivo! Era 465px */
    justify-content: flex-end;
    padding-right: 27%;
}

/* 1.5 Controle de posiÃ§Ã£o do SubtÃ­tulo */
.pos-subtitulo {
    top: 39.6vw;
    /* Responsivo! Era 760px */
    justify-content: flex-start;
    padding-left: 47%;
    /* Adicionei uma margem pra nÃ£o colar totalmente na borda (ajuste como quiser) */
}

/* 2. Controle de posiÃ§Ã£o das Etiquetas */
.pos-etiquetas {
    top: 57.3vw;
    /* Responsivo! Era 1100px */
    justify-content: center;
}

/* 3. Controle de posiÃ§Ã£o do Texto */
.pos-texto {
    top: 64.6vw;
    /* Responsivo! Era 1240px */
    justify-content: center;
}

.title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.hashtag {
    font-size: 15rem;
    font-weight: 900;
    color: #e30613;
    line-height: 0.8;
    font-style: italic;
}

.main-title {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.main-title h1 {
    font-family: 'Sofia Pro Soft Bold', sans-serif;
    font-size: 4.25vw;
    /* Responsivo! Era 5.1rem */
    margin: 0;
    line-height: 1.2;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.main-title .white-text {
    color: #ffffff;
}

.main-title .red-text {
    color: #e30613;
}

.subtitle {
    font-family: 'Sofia Pro Soft Light', sans-serif;
    font-size: 2.6vw;
    /* Responsivo! Era 3.1rem */
    color: #ffffff;
    margin-top: 0.5vw;
    line-height: 1.2;
}

.highlight-boxes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    /* Centralizando as etiquetas de volta, separadas do tÃ­tulo */
    /* margin-bottom foi removido para vocÃª controlar a distÃ¢ncia 100% pela .pos-texto */
}

.highlight-box {
    background-color: #9b0000;
    /* Vermelho escuro baseado na imagem */
    background: linear-gradient(90deg, #c30f14 0%, #b30c11 100%);
    color: white;
    padding: 0.2vw 0.5vw;
    /* DiminuiÃ§Ã£o nas laterais */
    font-family: 'Sofia Pro Soft Bold', sans-serif;
    font-size: 1.2vw;
    /* Responsivo! Era 36px */
    text-transform: uppercase;
    display: inline-block;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.text-content {
    text-align: justify;
    text-align-last: center;
    font-family: 'Sofia Pro Soft Regular', sans-serif;
    font-size: 1.3vw;
    line-height: 1.2;
    color: #e5e7eb;
    max-width: 75vw;
    /* Reduzido de 88vw para deixar as bordas laterais mais parrudas ("4 dedos") */
}

.text-content p {
    margin-bottom: 15px;
}

.scroll-down-link {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    z-index: 10;
    display: inline-block;
}

.scroll-down-img {
    display: block;
    width: 60px;
    /* Limitando o tamanho para nÃ£o ficar gigante */
    height: auto;
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: -160px;
    /* EspaÃ§o entre a imagem e o texto */
}

.scroll-down-link:hover .scroll-down-img {
    transform: translateY(5px);
}

/* =========================================
   SEÃ‡ÃƒO 2: MANIFESTO / CONTEÃšDO
   ========================================= */
.bloco2-cabotagem {
    position: relative;
    width: 100%;
    margin-top: -128vw;
    /* Puxei mais forte pra cima! Assim fica sÃ³ um "gap" normal entre o fim do texto e o botÃ£o */
    z-index: 15;
    /* Garante que o fundo branco do bloco 2 fique por cima da sobra da imagem */
}

.bloco2-container {
    background-color: #ffffff;
    width: 100%;
    padding: 80px 0;
    /* EspaÃ§amento interno */
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #000000;
    font-family: 'Sofia Pro Soft Regular', sans-serif;
    /* Fonte Sofia aplicada para tudo dentro do Bloco 2 */
}

/* 1. BotÃ£o Divisa Seta Azul */
.bloco2-arrow-divider {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    /* Puxa exatamente metade pra cima do bloco branco e metade no bloco escuro */
    z-index: 20;
}

.bloco2-arrow-divider .arrow-btn {
    width: 115px;
    height: auto;
    cursor: pointer;
    transition: transform 0.3s;
}

.bloco2-arrow-divider .arrow-btn:hover {
    transform: scale(1.1);
}

/* 2. Etiquetas Azuis */
.blue-labels-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    /* DistÃ¢ncia do botÃ£o da seta */
    margin-bottom: 20px;
}

.blue-label {
    background-color: #1a4fba;
    /* Azul principal */
    color: #ffffff;
    padding: 2px 12px;
    font-family: 'Sofia Pro Soft Bold', sans-serif;
    font-size: 1.5vw;
    text-transform: uppercase;
    display: inline-block;
}

/* 3. Texto Central */
.bloco2-intro-text {
    text-align: center;
    font-family: 'Sofia Pro Soft Regular', sans-serif;
    font-size: 1.2vw;
    line-height: 1.5;
    color: #333333;
    max-width: 60vw;
    margin-bottom: 50px;
}

/* 4. Carrossel de VÃ­deo (Moldura) */
.video-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3vw;
    width: 100%;
    max-width: 95vw;
    /* Mais largo para comportar tudo */
    margin-bottom: 50px;
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
}

.btn-carousel-nav {
    width: 75px;
    height: 75px;
    display: block;
    cursor: pointer;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.btn-carousel-nav:hover {
    opacity: 0.85;
}

/* RotaÃ§Ã£o da seta botao_lados.png (original aponta para baixo) */
.btn-carousel-nav.btn-prev {
    transform: rotate(90deg);
}

.btn-carousel-nav.btn-next {
    transform: rotate(-90deg);
}

.btn-carousel-nav.btn-prev:hover {
    transform: rotate(90deg) scale(1.08);
}

.btn-carousel-nav.btn-next:hover {
    transform: rotate(-90deg) scale(1.08);
}

/* VÃ­deos Laterais (Efeito Carrossel) */
.carousel-side-video {
    width: 20vw;
    /* Menor que o principal */
    aspect-ratio: 16 / 9;
    background-color: #e5e7eb;
    /* Cinza claro */
    border-radius: 15px;
    opacity: 0.5;
    /* Semitransparente para nÃ£o roubar o foco */
    transform: scale(0.9);
    /* Perspectiva de estar "atrÃ¡s" */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-main-video {
    position: relative;
    width: 35vw;
    /* DiminuÃ­do de 50vw para 35vw */
    aspect-ratio: 16 / 9;
    /* MantÃ©m proporÃ§Ã£o de vÃ­deo deitada (retÃ¢ngulo perfeito) */
    background-color: #555555;
    /* RetÃ¢ngulo cinza escuro no lugar da imagem */
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Como a imagem foi removida, essa classe nÃ£o Ã© mais necessÃ¡ria, mas deixarei vazia pra nÃ£o quebrar */
.carousel-main-video .video-thumbnail {
    display: none;
}

/* Elementos sobrepostos ao vÃ­deo */
.video-overlay {
    position: absolute;
    bottom: 30px;
    left: 40px;
    z-index: 2;
    text-align: left;
}

.manifesto-tag {
    background-color: #c30f14;
    color: #ffffff;
    font-family: 'Sofia Pro Soft Bold', sans-serif;
    font-size: 1.2vw;
    padding: 5px 15px;
    display: inline-block;
    margin-bottom: 10px;
}

.video-overlay h2 {
    font-family: 'Sofia Pro Soft Bold', sans-serif;
    font-size: 2.2vw;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
}

.play-button-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: transparent;
    border: 4px solid #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: transform 0.3s;
}

.play-button-icon:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.play-triangle {
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 25px solid #ffffff;
    margin-left: 8px;
    /* Centraliza o triÃ¢ngulo opticamente */
}

/* 5. Botões de Ação Rodapé */
.bloco2-action-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Duas colunas idênticas */
    gap: 2vw;
    row-gap: 20px;
    width: auto;
    margin-bottom: 20px; /* Um respiro a mais no bloco 2 se precisar */
}

.action-btn {
    background-color: #1a4fba;
    color: #ffffff !important;
    font-family: 'Sofia Pro Soft Bold', sans-serif;
    font-size: 1.2vw;
    padding: 15px 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-radius: 50px;
    text-decoration: none !important;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.3s;
    box-shadow: 0 4px 15px rgba(26, 79, 186, 0.4);
    box-sizing: border-box;
}

.btn-medium {
    
}

.action-btn:hover {
    background-color: #0d275e;

    transform: translateY(-3px);
}

/* =========================================
   SEÃ‡ÃƒO 3: CALL TO ACTION / PILOTO
   ========================================= */
.bloco3-cabotagem {
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 15;
    /* Garante que o fundo do Bloco 4 deslize por baixo dele */
}

.bloco3-bg-img {
    width: 100%;
    height: auto;
    display: block;
}

.bloco3-overlay-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    /* Centraliza verticalmente o texto de acordo com a altura da imagem */
    padding-left: 12vw;
    /* Empurra o texto para a esquerda, fora do rosto do piloto */
    z-index: 10;
}

.bloco3-text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Alinha o texto e o botÃ£o Ã  esquerda */
    gap: 0.5vw;
}
.bloco3-title-normal-mobile {display:none;}
.bloco3-title-normal {
    font-family: 'Sofia Pro Soft Light';
    font-size: 2.8vw;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    letter-spacing: 2px;
}
    .bloco3-title-bold-mobile { 
display:none;
    }
.bloco3-title-bold {
    font-family: 'Sofia Pro Soft Bold', sans-serif;
    font-size: 2.2vw;
    /* EDITE AQUI: O tamanho geral da fonte */
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    /* EDITE AQUI: Aumente para afastar uma linha da outra */
    letter-spacing: 1px;
    /* EDITE AQUI: Aumente para afastar as letras */
}

.manifesto-btn {
    margin-top: 1.5vw;
    /* DistÃ¢ncia entre o fim do texto e o botÃ£o */
}

/* =========================================
   FUNDO CONTÃNUO E SEÃ‡ÃƒO 4
   ========================================= */

.fundo-continuo {
    width: 100%;
    background-size: cover;
    background-position: top center;
    background-attachment: fixed;
    /* MantÃ©m o fundo fixo */
    position: relative;
    z-index: 10;
    /* Fica abaixo do Bloco 3 (que Ã© 15) */
    overflow-x: hidden;
    /* Evita barra de rolagem se as imagens laterais vazarem a tela */

    /* MÃGICA: Puxa o fundo pra cima para comeÃ§ar exatamente onde as imagens do Bloco 4 comeÃ§am */
    margin-top: -6vw;
    padding-top: 6vw;
    /* Empurra o Bloco 4 de volta pra baixo (compensando o puxÃ£o) */
}

.bloco4-cabotagem {
    display: flex;
    justify-content: space-between;
    /* Imagens grudadas nas pontas, texto no meio */
    align-items: center;
    /* Alinhamento vertical pelo centro */
    width: 100%;
    margin-bottom: 60px;
    position: relative;
    /* NecessÃ¡rio para o z-index funcionar */
    z-index: 20;
    /* Joga o bloco inteiro pra frente */
}


.bloco4-col-left {
    width: 35vw;
    /* Imagem bem maior */
    display: flex;
    margin-top: -2vw;
    /* Descendo um pouco as imagens conforme pedido */
    margin-right: -5vw;
    /* Empurra a imagem para dentro, escorregando por baixo do texto central */
}

.bloco4-col-right {
    width: 35vw;
    /* Imagem bem maior */
    display: flex;
    margin-top: -2vw;
    /* Descendo um pouco as imagens conforme pedido */
    margin-left: -5vw;
    /* Empurra a imagem para dentro, escorregando por baixo do texto central */
}

.bloco4-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.bloco4-col-center {
    width: 40vw;
    /* Voltei para os 40 originais para a etiqueta vermelha voltar a caber perfeitamente! */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 2vw;
    position: relative;
    z-index: 5;
    /* Garante que o texto fique por cima das imagens laterais caso elas se aproximem */
}


.bloco4-highlight-boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 5px;
    margin-top: 25px;
}

    .bloco4-highlight-boxes-mobile{
        display:none;
    }
    
    .bloco4-text-content-mobile{
        display:none;

    }
    .bloco4-text-content {
    font-family: 'Sofia Pro Soft Light', sans-serif;
    font-size: 1.2vw;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: 2px;
}

/* =========================================
   SEÃ‡ÃƒO 5: CARROSSEL DE CARDS
   ========================================= */
.bloco5-cabotagem {
    width: 100%;
    margin-bottom: 60px;
    margin-top: 60px;
}

.cards-carousel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7vw;
    width: 100%;
    max-width: 95vw;
    margin: 0 auto;
}



.bloco5-card {
    background-color: #f3f4f6;
    border-radius: 35px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    /* Garante que o padding fique pra dentro e nÃ£o engorde o card */
}

.card-icon-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1a4fba;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(26, 79, 186, 0.4);
}

.card-icon-badge img {
    width: 130%;
    /* Aumenta a imagem branca dentro do Ã­cone azul */
    height: auto;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
    justify-content: center;
}

.card-title {
    font-family: 'Sofia Pro Soft Bold', sans-serif;
    color: #1a4fba;
    margin: 0;
    line-height: 1.2;
}

.card-text {
    font-family: 'Sofia Pro Soft Light', sans-serif;
    color: #555555;
    font-size: 1.1vw;
    line-height: 1.2;
    margin-top: 30px;
    width: 495px;
}

/* Central Card */
.bloco5-card.main-card {
    width: 25vw;
    aspect-ratio: auto;
    padding: 50px 20px 20px 20px;
    justify-content: center;
    width: 585px;
}

.bloco5-card.main-card .card-icon-badge {
    top: -50px;
    width: 90px;
    height: 90px;
    border-radius: 18px;
}

.card-title {
    font-size: 1.1vw;
    margin-top: 20px;
    margin-bottom: -20px;
    margin-top: 50px;
}

.bloco5-card.main-card {
    font-size: 1.1vw;
    margin-top: 20px;
    margin-bottom: -20px;
}


/* Side Cards */
.bloco5-card.side-card {
    width: 9vw;
    aspect-ratio: 1 / 1;
    padding: 30px 10px 10px 10px;
    justify-content: center;
}

.bloco5-card.side-card .card-icon-badge {
    top: -35px;
    width: 60px;
    /* Badge lateral pequenininho */
    height: 60px;
    border-radius: 15px;
}

.bloco5-card.side-card .card-title {
    font-size: 0.8vw;
    /* TÃ­tulo lateral bem pequeno */
}

.bloco5-card.side-card .card-title-sub {
    font-size: 0.8vw;
    font-family: 'Sofia Pro Soft Bold', sans-serif;
    color: #1a4fba;
    margin: 0;
    line-height: 1.2;

    /* TÃ­tulo lateral bem pequeno */
}

/* =========================================
   SEÃ‡ÃƒO 6: SINDICATO NACIONAL DOS AERONAUTAS
   ========================================= */
.bloco6-cabotagem {
width: 100%;
    position: relative;
    margin-top: 60px;
    margin-bottom: 0px; /* Zerado para o gap de 2vw perfeito com Bloco 7 */
    overflow: hidden;
    z-index: 20;
}

.bloco6-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: stretch;
    padding-bottom: 0px; /* Zerado para o gap de 2vw perfeito com Bloco 7 */
}

/* Coluna Esquerda */
.bloco6-col-left {
    width: 50vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 5;
}

.bloco6-top-row {
    display: flex;
    align-items: flex-start;
    gap: 1vw;
}

.bloco6-predio-wrapper {
    width: 20vw;
    flex-shrink: 0;
    overflow: hidden;
    margin-left: -5vw;
    height:616px;
}

.bloco6-img-predio {
    width: 22vw;
    max-width: none;
    height: auto;
    display: block;
    margin-left: -1vw;
    margin-top: -250;
}

/* ConteÃºdo Central (Etiquetas + Textos) */
.bloco6-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 10px;
    max-width: 38vw;
    margin-left: 3vw;
    position: relative; /* Transforma esta caixa em âncora para a seta absoluta */
}

.bloco6-highlight-boxes {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    width: fit-content;
}
.bloco6-highlight-boxes-mobile{
    display: none;
}
.bloco6-tag {
    background-color: #c30f14;
    color: #ffffff;
    padding: 6px 14px;
    font-size: 1.3vw;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: block;
    line-height: 1.3;
}

.bloco6-tag.tag-light {
    font-family: 'Sofia Pro Soft Light', sans-serif;
    font-weight: 300;
}

.bloco6-tag.tag-bold {
    font-family: 'Sofia Pro Soft Bold', sans-serif;
    font-weight: 700;
}

.bloco6-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 6px;
}

.bloco6-text p {
    font-family: 'Sofia Pro Soft Light', sans-serif;
    font-size: 1.15vw;
    color: #ffffff;
    line-height: 1.4;
    margin: 0;
    letter-spacing: 0.3px;
    width: 510px;
}
.bloco6-text2{}

/* Seta apontando para baixo */
.bloco6-arrow-wrapper {
    position: absolute;
    right: 43px;
    bottom: -116px;
    z-index: 40;
}

.bloco6-arrow-down {
    width: 100px; /* Aumentei um pouco conforme você pediu */
    height: auto;
    display: block;
}

/* Avião / Mapa do Brasil (Inferior Esquerdo) */
.bloco6-aviao-wrapper {
    width: 51vw; /* Reduzido para criar o gap visual de 2vw com o rio */
    margin-top: 20px;
    margin-left: -1vw;
    margin-bottom: 0px; /* Zerado para criar o gap perfeito de 2vw com o Bloco 7 */
    position: relative;
    z-index: 30;
}

.bloco6-img-aviao {
    width: 100%;
    height: auto;
    display: block;
}

/* Coluna Direita (Rio Amazonas) */
.bloco6-col-right {
    width: 48vw;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.bloco6-img-rio {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
   SEÃ‡ÃƒO 7: ABAIXO-ASSINADO / MANIFESTO
   ========================================= */
.bloco7-cabotagem {
    width: 100%;
    position: relative;
    margin-top: 2vw; /* Substituído 20px por 2vw para o gap perfeito com o Bloco 6 */
    margin-bottom: 60px;
    z-index: 25;
}

.bloco7-container {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 2vw;
}

/* Coluna Esquerda: 2 Fotos Verticais */
.bloco7-col-left {
    display: flex;
    gap: 2vw;
    width: 50.1vw;
    flex-shrink: 0;
}

.bloco7-vert-wrapper {
    flex: 1;
}

.bloco7-img-vert {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* =========================================
   ENQUADRAMENTO DAS FOTOS DO BLOCO 7
   ========================================= */

/* 1. Foto do Piloto (à esquerda) */
.img-vert1 {
    transform: scaleX(-1);
    object-position: center;
}

/* 2. Foto da Tripulação / Crew (ao centro) */
.img-vert2 {
    object-position: 63% center;
}

/* Coluna Direita: ConteÃºdo + MÃ£os + Cabine */
.bloco7-col-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 53vw;
    gap: 2vw;
}

.bloco7-top-row {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

/* ============================================================
   CONTEÃšDO E TEXTO DO BLOCO 7 (AJUSTE DE LOCALIZAÃ‡ÃƒO DO TEXTO)
   ============================================================ */
.bloco7-content-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 0px;
    padding-top: 0px;
    transform: translateX(6vw); /* Ajuste este valor para empurrar mais ou menos para a direita */
}


.bloco7-content-box-mobile {
    display: none;

}
.pra-baixo{
    transform: translateX(2vw) !important;
}
.bloco7-title-light {
    font-family: 'Sofia Pro Soft Light';
    font-weight: 300px;
    font-size: 3.0vw;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: -31px;
}
.bloco7-title-light-sub {   
    font-family: 'Sofia Pro Soft Light';
    font-weight: 300px;
    font-size: 3.0vw;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: -91px;
}

.bloco7-title-bold {
    font-family: 'Sofia Pro Soft Bold', sans-serif;
    font-weight: 700;
    font-size: 3.0vw;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: -11px;
}

.bloco7-title-bold-sub {
font-family: 'Sofia Pro Soft Bold';
    font-weight: 700;
    font-size: 3.0vw;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: -104px;
}

.bloco7-btn-wrapper {
    margin-top: 0.8vw; /* Aproximado para bem perto do texto */
}

/* Garante o texto do botÃ£o 100% branco */
.bloco7-cabotagem .manifesto-btn {
    color: #ffffff !important;
}

.bloco7-maos-wrapper {
    width: 16vw;
    flex-shrink: 0;
    display: flex;
}

.bloco7-img-maos {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bloco7-bottom-row {
    width: 100%;
}

.bloco7-img-cabine {
    width: 100%;
    height: auto;
    display: block;
}

.bloco7-cabotagem a.manifesto-btn,
.bloco7-cabotagem a.manifesto-btn:link,
.bloco7-cabotagem a.manifesto-btn:visited {
    color: #ffffff !important;
}

