 /* --- COMPORTAMENTO BASE (MOBILE-FIRST) --- */
.nb-hero-section {
    position: relative;
    /*min-height: 100vh;  Ocupa a tela inteira no celular */
    background-image: url('https://homologacao.tempbox.com.br/Anexos/9facd3b7-31e5-4bf6-b6d2-a7c3b1615b0e/pages.core.template/e3af256b-e8c5-4e6e-86d3-7672475624d3/IdVirtualArquivos/imagens/nobreaks/Imagem%20cabecalho%20da%20pagina.webp');
    background-size: 100% auto; /* Ajusta a imagem perfeitamente no topo */
    background-position: top center;
    background-repeat: no-repeat;
    background-color: #ffffff; /* Fundo branco onde o texto reside */
}

/* Espaçamento compensatório no mobile para o texto começar após a foto */
.nb-hero-text-col {
    /* margem superior empurra o conteúdo para baixo da área da foto */
    margin-top: 55vw; 
    background-color: #ffffff;
    padding-top: 20px;
}

/* Degradê Vertical para Mobile (Suave de Baixo para Cima) */
.nb-hero-gradient-mobile {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 62vw; /* Cobre exatamente a transição da foto para o conteúdo */
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 1) 100%
    );
    z-index: 1;
    pointer-events: none;
}

/* Elementos do conteúdo acima das camadas de degradê */
.nb-hero-section .z-3 {
    z-index: 3 !important;
}

/* Breadcrumbs */
.nb-hero-section .nb-breadcrumb .breadcrumb-item,
.nb-hero-section .nb-breadcrumb .breadcrumb-item a {
    color: #475569;
    font-size: 11px;
    text-decoration: none;
}

.nb-hero-section .nb-breadcrumb .breadcrumb-item.active {
    color: #002575;
    font-weight: 600;
}

.nb-hero-section .nb-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: #cbd5e1;
    content: "/";
}

/* Tipografia Mobile */
.nb-hero-section .nb-hero-title {
    color: #002575;
    font-size: 26px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.nb-hero-section .nb-hero-desc {
    color: #475569;
    font-size: 13px;
    line-height: 1.55;
}

/* Botão CTA */
.nb-hero-section .nb-hero-btn {
    background-color: #0046d5;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    font-size: 13.5px;
    border-radius: 6px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.nb-hero-section .nb-hero-btn:hover {
    background-color: #0033a0;
    color: #ffffff;
}

.nb-hero-section .nb-hero-btn svg {
    transition: transform 0.25s ease;
}

.nb-hero-section .nb-hero-btn:hover svg {
    transform: translateX(3px);
}


/* --- COMPORTAMENTO DESKTOP (A PARTIR DE 992px) --- */
@media (min-width: 992px) {
    .nb-hero-section {
        min-height: 720px;
        background-size: cover; /* Volta a preencher o espaço proporcionalmente */
        background-position: center right;
    }

    /* Reseta a margem e o fundo do bloco de textos */
    .nb-hero-text-col {
        margin-top: 0;
        background-color: transparent;
        padding-top: 0;
    }

    /* Degradê Horizontal do Desktop */
    .nb-hero-gradient-desktop {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to right, 
            rgba(255, 255, 255, 1) 0%, 
            rgba(255, 255, 255, 1) 35%, 
            rgba(255, 255, 255, 0.9) 45%, 
            rgba(255, 255, 255, 0) 70%
        );
        z-index: 1;
        pointer-events: none;
    }

    /* Ajuste de tamanho do título no desktop */
    .nb-hero-section .nb-hero-title {
        font-size: 38px;
        line-height: 1.2;
    }

    .nb-hero-section .nb-hero-desc {
        font-size: 13.5px;
    }
}













  /* Escopo da seção de diferenciais */
.nb-features-section {
    background-color: #f8fafc !important; /* Destaca o card branco de fundo */
}

/* O card container principal */
.nb-features-section .nb-features-card {
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
}

/* Item individual */
.nb-features-section .nb-feature-item {
    padding: 0 15px;
    /* Cria a linha divisória vertical entre os itens no desktop */
    border-right: 1px solid #f1f5f9; 
}

/* Remove a borda do último item */
.nb-features-section .nb-feature-item:last-child {
    border-right: none !important;
}

/* Comportamento dos ícones carregados via IMG */
.nb-features-section .nb-feature-icon-wrapper {
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nb-features-section .nb-feature-icon {
    max-height: 80px;
    width: auto;
    transition: transform 0.3s ease;
}

.nb-features-section .nb-feature-item:hover .nb-feature-icon {
    transform: translateY(-4px);
}

/* Títulos */
.nb-features-section .nb-feature-title {
    color: #002575; /* Azul marinho escuro */
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
}

/* Descrições */
.nb-features-section .nb-feature-desc {
    color: #475569;
    font-size: 11.5px;
    line-height: 1.5;
}

/* Responsividade */
@media (max-width: 991.98px) {
    /* No mobile e tablet removemos as divisões verticais e colocamos borda inferior sutil */
    .nb-features-section .nb-feature-item {
        border-right: none !important;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid #f1f5f9;
    }
    
    .nb-features-section .nb-feature-item:last-child {
        border-bottom: none !important;
        padding-bottom: 0;
    }
}
 












    /* Escopo da seção de introdução */
.nb-intro-section {
    background-color: #ffffff;
}

/* Tipografia Esquerda */
.nb-intro-section .nb-intro-title {
    color: #002575; /* Azul marinho escuro */
    font-size: 32px;
    line-height: 1.25;
}

.nb-intro-section .nb-intro-text {
    color: #475569;
    font-size: 15px;
    line-height: 1.6;
}

/* Bloco da Direita (Card) */
.nb-intro-section .nb-intro-card {
    border-radius: 12px !important;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02) !important;
}

.nb-intro-section .nb-card-title {
    color: #002575;
    font-size: 20px;
    line-height: 1.3;
}

/* Itens de Ícone do Card */
.nb-intro-section .nb-card-icon-item {
    padding: 0 10px;
    /* Linha divisória vertical sutil entre os ícones no desktop */
    border-right: 1px solid #f1f5f9;
}

.nb-intro-section .nb-card-icon-item:last-child {
    border-right: none !important;
}

/* Wrapper dos ícones para manter o alinhamento perfeito */
.nb-intro-section .nb-card-icon-wrapper {
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nb-intro-section .nb-card-icon-wrapper img {
    max-height: 48px;
    width: auto;
    transition: transform 0.2s ease;
}

.nb-intro-section .nb-card-icon-item:hover .nb-card-icon-wrapper img {
    transform: scale(1.08);
}

/* Labels abaixo dos ícones */
.nb-intro-section .nb-card-icon-label {
    display: block;
    color: #002575;
    font-size: 11.5px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .nb-intro-section .nb-intro-title {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    /* Ajusta o grid no tablet/mobile para os ícones ficarem bem distribuídos */
    .nb-intro-section .nb-card-icon-item {
        border-right: none !important;
        margin-bottom: 2rem;
    }
    
    .nb-intro-section .nb-card-icon-item:last-child {
        margin-bottom: 0;
    }
}
  













/* Escopo da Seção */
.nb-applications-section {
    background-color: #ffffff;
}

/* Título Centralizado */
.nb-applications-section .nb-section-title {
    color: #002575; /* Azul do print */
    font-size: 28px;
    letter-spacing: -0.5px;
}

/* Grid Customizado de 5 Colunas (Bootstrap "col-lg-2-4" hack elegante) */
@media (min-width: 992px) {
    .nb-applications-section .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* O Card Individual */
.nb-applications-section .nb-app-card {
    border-radius: 12px !important;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.02) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.nb-applications-section .nb-app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 37, 117, 0.06) !important;
}

/* Image Wrapper */
.nb-applications-section .nb-app-image-wrapper {
    height: 140px;
    overflow: hidden;
}

.nb-applications-section .nb-app-img {
    height: 100%;
    object-fit: cover;
}

/* O Badge de Ícone Flutuante (Interseção entre imagem e texto) */
.nb-applications-section .nb-app-icon-badge {
    position: absolute;
    bottom: -12px; /* Força metade do badge para fora da imagem */
    left: 4px;
    width: 64px;
    height: 64px;
    background-color: #ffffff;
    border-radius: 8px; /* Cantos levemente arredondados idênticos ao print */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    z-index: 9999999999;
    border: 1px solid #f1f5f9;
}

.nb-applications-section .nb-app-icon-badge img {
    height: 36px;
    width: auto;
}

/* Textos internos dos Cards */
.nb-applications-section .nb-app-card-title {
    color: #002575;
    font-size: 15px;
    line-height: 1.3;
}

.nb-applications-section .nb-app-card-desc {
    color: #475569;
    font-size: 11.5px;
    line-height: 1.5;
}











 /* Escopo da Seção */
.nb-comparison-section {
    background-color: #ffffff;
}

/* Títulos das colunas */
.nb-comparison-section .nb-section-title {
    color: #002575; /* Azul marinho escuro do print */
    font-size: 26px;
    letter-spacing: -0.5px;
}

.nb-comparison-section .nb-section-subtitle {
    color: #475569;
    font-size: 14px;
}

/* --- ESTILOS DO FLUXO (TIMELINE) --- */
.nb-timeline-wrapper {
    position: relative;
}

.nb-timeline-step {
    flex: 1;
    min-width: 0;
}

/* Número da Etapa */
.nb-comparison-section .nb-step-badge {
    width: 28px;
    height: 28px;
    background-color: #185fe7; /* Azul escuro do badge do print */
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Wrapper do Ícone */
.nb-comparison-section .nb-step-icon-box {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nb-comparison-section .nb-step-icon-box img {
    max-width: 100%;
    height: auto;
}

/* Textos da etapa */
.nb-comparison-section .nb-step-title {
    color: #0d47a1;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
}

.nb-comparison-section .nb-step-desc {
    color: #475569;
    font-size: 10px;
    line-height: 1.4;
}

/* Setas entre etapas */
.nb-comparison-section .nb-timeline-arrow {
    align-self: flex-start;
    padding-top: 40px; /* Alinha a seta verticalmente com os ícones */
    color: #0d47a1;
    font-weight: bold;
    font-size: 16px;
    width: 15px;
}


/* --- ESTILOS DA TABELA COMPARATIVA --- */
.nb-table-container {
    border-radius: 12px !important;
}

.nb-compare-table {
    border-collapse: separate;
    border-spacing: 0;
}

/* Células base */
.nb-compare-table th, 
.nb-compare-table td {
    font-size: 11.5px;
    line-height: 1.4;
    padding: 14px 12px !important;
    border-bottom: 1px solid #f1f5f9;
}

/* Coluna de Features (Esquerda) */
.nb-compare-table .nb-col-feature {
    width: 36%;
}

.nb-compare-table .nb-feature-cell {
    color: #475569;
}

/* Coluna Nobreak (Destaque do Print) */
.nb-compare-table .nb-col-nobreak {
    width: 32%;
    background-color: #0033a0 !important; /* Cor idêntica ao azul do print */
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
}

.nb-compare-table td:nth-child(2) {
    background-color: #fafbfc; /* Tom bem sutil de cinza azulado para a coluna em foco */
    color: #002575;
    font-weight: 600;
    border-left: 1px solid #e2e8f0;
    border-right: 1px solid #e2e8f0;
}

/* Coluna Gerador */
.nb-compare-table .nb-col-gerador {
    width: 32%;
    background-color: #f8fafc;
    color: #0033a0;
}

.nb-compare-table td:nth-child(3) {
    color: #64748b;
}

.nb-compare-table .fs-xs {
    font-size: 10px !important;
}


/* --- RESPONSIVIDADE --- */
@media (max-width: 767.98px) {
    /* Alinhamento vertical do passo a passo no mobile */
    .nb-timeline-wrapper {
        gap: 1.75rem !important;
    }
    
    .nb-timeline-step {
        border-bottom: 1px dashed #e2e8f0;
        padding-bottom: 1.5rem;
    }
    
    .nb-timeline-step:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

















 /* Escopo da Seção */
.nb-sectors-section {
    background-color: #ffffff;
}

/* Título */
.nb-sectors-section .nb-sectors-title {
    color: #002575;
    font-size: 24px;
    letter-spacing: -0.5px;
}

/* Wrapper Flex dos Itens */
.nb-sectors-section .nb-sectors-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap; /* Permite quebra de linha em telas menores */
    gap: 12px;
    justify-content: center; /* Centraliza se sobrar algum item na última linha */
}

/* --- COMPORTAMENTO BASE: MOBILE-FIRST --- */
.nb-sectors-section .nb-sector-item {
    background-color: #ffffff;
    border-radius: 12px !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.02) !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    cursor: default;
    
    /* Mobile: 2 itens por linha (subtraindo o gap do cálculo de espaço) */
    flex: 0 0 calc(50% - 6px); 
    aspect-ratio: 1 / 1;
    min-height: 110px;
}

.nb-sectors-section .nb-sector-item:hover {
    transform: translateY(-3px);
    border-color: #002575 !important;
    box-shadow: 0 6px 16px rgba(0, 37, 117, 0.06) !important;
}

/* Wrapper do Ícone */
.nb-sectors-section .nb-sector-icon-box {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nb-sectors-section .nb-sector-icon-box img {
    max-height: 36px;
    width: auto;
}

/* Texto abaixo do ícone */
.nb-sectors-section .nb-sector-label {
    color: #002575;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.25;
    display: block;
    word-wrap: break-word;
}

/* --- ADAPTANDO CONFORME A TELA AUMENTA (MEDIA QUERIES) --- */

/* Tablets pequenos (sm) - 3 itens por linha */
@media (min-width: 576px) {
    .nb-sectors-section .nb-sector-item {
        flex: 0 0 calc(33.333% - 8px);
    }
}

/* Tablets grandes / Ipads (md) - 5 itens por linha (2 linhas exatas de 5) */
@media (min-width: 768px) {
    .nb-sectors-section .nb-sector-item {
        flex: 0 0 calc(20% - 10px);
    }
}

/* Laptops e Desktops (lg em diante) - Todos os 10 itens na mesma linha */
@media (min-width: 1200px) {
    .nb-sectors-section .nb-sectors-wrapper {
        flex-wrap: nowrap; /* Impede qualquer quebra de linha */
        justify-content: space-between;
        gap: 8px; /* Reduz ligeiramente o gap para caber perfeito no grid horizontal */
    }

    .nb-sectors-section .nb-sector-item {
        flex: 0 0 calc(10% - 8.2px); /* Fração perfeita para 10 colunas mantendo o gap */
        aspect-ratio: 1 / 1;
    }
}
















  /* Escopo da Seção */
.nb-why-section {
    background-color: #ffffff;
}

/* Título Central */
.nb-why-section .nb-why-title {
    color: #002575; /* Azul marinho do print */
    font-size: 28px;
    letter-spacing: -0.5px;
}

/* Forçar Grid de 5 colunas no desktop */
@media (min-width: 992px) {
    .nb-why-section .col-lg-2-4 {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Estilo do Card individual */
.nb-why-section .nb-why-card {
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nb-why-section .nb-why-card:hover {
    transform: translateY(-5px);
    border-color: #002575 !important;
    box-shadow: 0 10px 25px rgba(0, 37, 117, 0.06) !important;
}

/* Wrapper dos Ícones */
.nb-why-section .nb-why-icon-box {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nb-why-section .nb-why-icon-box img {
    max-height: 52px;
    width: auto;
    transition: transform 0.25s ease;
}

.nb-why-section .nb-why-card:hover .nb-why-icon-box img {
    transform: scale(1.08);
}

/* Tipografia interna */
.nb-why-section .nb-why-card-title {
    color: #002575;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    min-height: 38px; /* Evita desalinhamento caso o título quebre linha */
    display: flex;
    align-items: center;
    justify-content: center;
}

.nb-why-section .nb-why-card-desc {
    color: #475569;
    font-size: 11.5px;
    line-height: 1.5;
}

/* Ajustes Responsivos */
@media (max-width: 991.98px) {
    .nb-why-section .nb-why-card-title {
        min-height: auto; /* Remove altura mínima no mobile */
    }
}


















  /* Escopo da Seção */
.nb-partnership-section {
    background-color: #f8fafc; /* Um cinza/azul clarinho de fundo para destacar o card */
}

/* Card Container */
.nb-partnership-section .nb-partnership-card {
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

/* Tipografia Institucional (Esquerda) */
.nb-partnership-section .nb-partnership-title {
    color: #002575; /* Azul marinho escuro do print */
    font-size: 18px;
    line-height: 1.35;
}

.nb-partnership-section .nb-partnership-desc {
    color: #475569;
    font-size: 11px;
    line-height: 1.5;
}

/* Pilares Técnicos (Centro) */
.nb-partnership-section .nb-pilar-item {
    padding: 0 10px;
    border-right: 1px solid #e2e8f0; /* Divisória sutil vertical do print */
}

.nb-partnership-section .nb-pilar-item:last-child {
    border-right: none !important;
}

/* Ícones dos Pilares */
.nb-partnership-section .nb-pilar-icon-wrapper {
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nb-partnership-section .nb-pilar-icon-wrapper img {
    max-height: 36px;
    width: auto;
    transition: transform 0.2s ease;
}

.nb-partnership-section .nb-pilar-item:hover .nb-pilar-icon-wrapper img {
    transform: translateY(-2px);
}

/* Textos dos Pilares */
.nb-partnership-section .nb-pilar-text {
    color: #002575;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
}

/* Área da Logo (Direita) */
.nb-partnership-section .nb-brand-col {
    /* Divisória vertical antes do logo no desktop */
    border-left: 1px solid #e2e8f0;
}

.nb-partnership-section .nb-brand-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.nb-partnership-section .nb-brand-logo {
    max-height: 92px;
    width: auto;
    object-fit: contain;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .nb-partnership-section .nb-pilar-item {
        border-right: none !important;
        margin-bottom: 1.5rem;
    }
    
    .nb-partnership-section .nb-brand-col {
        border-left: none !important;
        margin-top: 1rem;
        padding-top: 1.5rem;
        border-top: 1px solid #e2e8f0;
    }
}













  /* Escopo da Seção */
.nb-cta-section {
    background-color: #ffffff;
}

/* O Card Container */
.nb-cta-section .nb-cta-card {
    border-radius: 12px !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02) !important;
}

/* Wrapper e imagem com tratamento de recorte */
.nb-cta-section .nb-cta-img-wrapper {
    position: relative;
    overflow: hidden;
}

.nb-cta-section .nb-cta-img {
    object-fit: cover;
    object-position: center;
}

/* Tipografia */
.nb-cta-section .nb-cta-title {
    color: #002575; /* Azul marinho idêntico ao print */
    font-size: 24px;
    line-height: 1.3;
}

.nb-cta-section .nb-cta-text {
    color: #475569;
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 620px;
}

/* Estilo do Botão Call to Action */
.nb-cta-section .nb-cta-btn {
    background-color: #0046d5; /* Azul intenso do botão */
    color: #ffffff;
    border: none;
    padding: 12px 28px;
    font-size: 13.5px;
    border-radius: 6px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.nb-cta-section .nb-cta-btn:hover {
    background-color: #0033a0; /* Tom ligeiramente mais escuro no hover */
    color: #ffffff;
    transform: translateY(-1px);
}

.nb-cta-section .nb-cta-btn:active {
    transform: translateY(1px);
}

.nb-cta-section .nb-cta-btn svg {
    margin-top: -1px;
}

/* Responsividade */
@media (max-width: 991.98px) {
    .nb-cta-section .nb-cta-title {
        font-size: 20px;
    }
}