body, html {
     margin: 0;
     padding: 0;
     scroll-padding-top: 80px;
     width: 100%;
     font-family: 'Inter', sans-serif;
     scroll-behavior: smooth;
     background-color: #0768bf;
    /* Cor inicial */
     background-image: linear-gradient( to bottom, transparent 20%, #072a44 100% );
     opacity: 1;
     transition: opacity 0.3s ease-in-out;
     overflow-x: hidden;
}
 body.loading {
     opacity: 0;
}
 @font-face {
     font-family: 'TT Runs Trial';
     src: url('caminho/para/TTRunsTrial-Variable.woff2') format('woff2'), url('caminho/para/TTRunsTrial-Variable.woff') format('woff');
     font-weight: normal;
     font-style: normal;
}
 @font-face {
     font-family: 'Erbaum';
     src: url('caminho/para/Erbaum-Regular.woff2') format('woff2'), url('caminho/para/Erbaum-Regular.woff') format('woff');
     font-weight: normal;
     font-style: normal;
}
 @font-face {
     font-family: 'Inter';
     src: url('caminho/para/Inter-Regular.woff2') format('woff2'), url('caminho/para/Inter-Regular.woff') format('woff');
     font-weight: normal;
     font-style: normal;
}
/* Títulos */
 .hero-title, .processo-titulo, .titulo-processos, .estatistica-numero {
     font-family: 'TT Runs Trial', sans-serif;
}
/* Subtítulos */
 .processo-card h3, .estatistica-texto, .empresa-texto {
     font-family: 'Erbaum', sans-serif;
}




/* Estilos para o Footer */
 .site-footer {
     background-color: #333;
     color: white;
     padding: 50px;
     display: flex;
     justify-content: space-between;
}
 .footer-coluna {
     flex: 1;
     margin-right: 30px;
}
 .footer-coluna:last-child {
     margin-right: 0;
}
 .footer-titulo {
     font-family: 'TT Runs Trial', sans-serif;
     margin-bottom: 20px;
     font-size: 1.2rem;
}
 .footer-links {
     list-style: none;
     padding: 0;
}
 .footer-links li {
     margin-bottom: 10px;
}
 .footer-links a {
     color: #cccccc;
     text-decoration: none;
     font-family: 'Inter', sans-serif;
     transition: color 0.3s ease;
}
 .footer-links a:hover {
     color: white;
}
 .footer-contato {
     font-family: 'Inter', sans-serif;
}
 .footer-redes-sociais {
     display: flex;
     margin-top: 20px;
}
 .footer-icone-social {
     width: 30px;
     height: 30px;
     margin-right: 15px;
     filter: brightness(0) invert(1);
     transition: transform 0.3s ease;
}
 .footer-icone-social:hover {
     transform: scale(1.2);
}
 .footer-copyright {
     background-color: #0768bf;
     color: white;
     text-align: center;
     padding: 15px;
     font-family: 'Inter', sans-serif;
     font-size: 0.9rem;
     opacity: 0.7;
}

/* =========================== HEADER ===============================================================================*/




 .header-dropdown {
     position: relative;
}
 .header-dropdown-trigger {
     display: flex;
     align-items: center;
     gap: 5px;
}
 .dropdown-icon {
     transition: transform 0.3s ease;
}
 .header-dropdown:hover .dropdown-icon {
     transform: rotate(180deg);
}
 .header-dropdown-menu {
     display: none;
     position: absolute;
     top: 100%;
     left: 0;
     background-color: white;
     min-width: 200px;
     box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
     z-index: 1000;
     border-radius: 8px;
     overflow: hidden;
     opacity: 0;
     transform: translateY(-10px);
     transition: opacity 0.3s ease, transform 0.3s ease;
}
 .header-dropdown:hover .header-dropdown-menu, .header-dropdown-menu:hover {
     display: block;
     opacity: 1;
     transform: translateY(0);
}
 .header-dropdown-item {
     display: block;
     padding: 12px 20px;
     color: #333;
     text-decoration: none;
     font-weight: 500;
     transition: all 0.4s ease;
}
 .header-dropdown-item:hover {
     background-color: #223d8c;
     color: #f2f2f2;
     font-weight: 800;
}

 .site-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 15px 50px;
     background-color: rgba(255, 255, 255, 0.95);
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 2000;
     backdrop-filter: blur(10px);
     transition: all 0.3s ease;
}

 .site-header:hover {
     box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

 .header-logo-container {
     display: flex;
     align-items: center;
     transition: transform 0.3s ease;
}
 .header-logo-container:hover {
     transform: scale(1.05);
}
 .header-logo {
     max-height: 50px;
     margin-right: 20px;
     transition: transform 0.3s ease;
}
 .header-logo:hover {
     transform: scale(1.1);
}
 .header-linha-divisoria {
     width: 2px;
     height: 50px;
     background-color: #e0e0e0;
     margin: 0 15px;
}
 .header-menu {
     display: flex;
     align-items: center;
     gap: 30px;
}
 .header-menu-item {
     align-items: center;
     position: relative;
     text-decoration: none;
     color: #FFFFFF;
     font-family: 'Erbaum', sans-serif;
     font-size: 1.2rem;
     transition: all 0.3s ease;
     font-weight: 500;
     padding: 8px 12px;
     border-radius: 10px;
}
 .header-menu-item::after {
     content: '';
     position: absolute;
     width: 0;
     height: 2px;
     bottom: 0;
     left: 50%;
     transition: all 0.3s ease;
}
 .header-menu-item:hover {
     color: #0768bf;
     background-color: #f2f2f2;
}
 .header-menu-item:hover::after {
     width: 100%;
     left: 0;
}
 .header-menu-botao {
     background-color: #223d8c;
     color: #f2f2f2;
     padding: 10px 20px;
     border-radius: 25px;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     border: 2px solid #072a44;
     font-size: 1.2rem;
     font-weight: 500;
}
 .header-menu-botao::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background-color: rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
     transform: skewX(-45deg);
}
 .header-menu-botao:hover {
     background-color: #F33D3C;
     transform: scale(1.05);
     border: 2px solid #FFFFFF;
}
 .header-menu-botao:hover::before {
     left: 100%;
}

/* Estilos para desktop */
@media (min-width: 769px) {
    .mobile-menu-toggle {
        display: none;
    }

    .mobile-menu {
        display: none;
    }

    .desktop-menu {
        display: flex;
        align-items: center;
        gap: 30px;
    }
}

/* Media Query para Mobile */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }

    .desktop-menu {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 2001;
        position: relative;
    }

    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 5px 0;
        transition: 0.3s;
    }

    .mobile-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: #0768bf;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.3s;
        z-index: 2000;
    }

    .mobile-menu.active {
        left: 0;
    }

    .header-menu-item, 
    .header-menu-botao {
        margin: 15px 0;
        font-size: 1.5rem;
    }

    /* Animação do ícone hambúrguer quando menu está aberto */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}


/* =========================== HERO ===============================================================================*/


 .hero-section {
     position: relative;
     height: 100vh;
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     text-align: center;
     color: white;
     overflow: hidden;
     padding: 0 20px;
}
 .hero-logos-container {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 100%;
     margin-bottom: 30px;
     opacity: 0;
     transform: translateY(50px);
     transition: opacity 0.6s, transform 0.6s;
}
 .hero-background::after {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
    /* Cor escura com transparência */
     z-index: 2;
}
 .hero-logos-container.aparecer {
     opacity: 1;
     transform: translateY(0);
}
 .linha-divisoria-hero {
     width: 5px;
     height: 160px;
     margin: 0 30px;
     margin-left: 4vw;
     margin-right: 4vw;
}
 .hero-logo {
     max-width: 350px;
     transition: transform 0.3s ease;
}
 .hero-logo:hover {
     transform: scale(1.1);
}

 .hero-content {
     max-width: 800px;
     margin-bottom: 20px;
     opacity: 0;
     transform: translateY(50px);
     transition: opacity 0.6s, transform 0.6s;
}
 .hero-content.aparecer {
     opacity: 1;
     transform: translateY(0);
}
 .hero-title {
     font-size: 2rem;
     margin-bottom: 20px;
}
 .hero-button-container {
     display: flex;
     justify-content: center;
     width: 100%;
     position: absolute;
     bottom: 50px;
     opacity: 0;
     transform: translateY(50px);
     transition: opacity 0.6s, transform 0.6s;
}

 .hero-button-container.aparecer {
     opacity: 1;
     transform: translateY(0);
}

 .hero-menu-botao {
     background-color: #0768bf;
     color: #f2f2f2;
     padding: 1vw 3vw;
     border-radius: 25px;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     border: 2px solid #072a44;
     font-size: 1.2rem;
     font-weight: 500;
}
 .hero-menu-botao::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background-color: rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
     transform: skewX(-45deg);
}
 .hero-menu-botao:hover {
     background-color: #F33D3C;
     transform: scale(1.05);
     border: 2px solid #FFFFFF;
}
 .hero-menu-botao:hover::before {
     left: 100%;
}

 .hero-background {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     z-index: 1;
     pointer-events: none;
     overflow: hidden;
}
 .hero-video {
     position: absolute;
     top: 50%;
     left: 50%;
     min-width: 100%;
     min-height: 100%;
     width: auto;
     height: auto;
     transform: translateX(-50%) translateY(-50%);
     object-fit: cover;
  }

@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        justify-content: flex-start;
        min-height: 100vh;
        padding: 100px 20px 50px;
    }

    .hero-logos-container {
        margin-top: -60vh;
        flex-direction: column;
        gap: 10px;
    }

    .linha-divisoria-hero {
        width: 100%;
        height: 5px;
        margin: 30px 0;
    }

    .hero-logo {
        max-width: 350px; /* Tamanho reduzido para mobile */
    }

    .hero-content {
        margin-top: 10vw;
        text-align: center;
    }

    .hero-title {
        margin-top: 10vw;
        font-size: 1.5rem;
    }

    .hero-button-container {
        position: relative;
        bottom: 0;
        margin-top: 30px;
    }

    .hero-menu-botao {
        margin-top: 10vw;
        padding: 6vw 15vw;
        font-size: 2rem;
        display: none;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .hero-logo {
        max-width: 200px;
    }

    .hero-title {
        font-size: 1.3rem;
    }
}


/* =========================== EMPRESAS ===============================================================================*/


.empresas-foto-container{
    padding: 60px 0;
    position: relative;
    z-index: 100;
    height: 100%;
}


 .btn-saiba-mais {
     display: inline-block;
     padding: 12px 30px;
     background-color: white;
     color: #0066cc;
     text-decoration: none;
     border-radius: 5px;
     transition: background-color 0.3s, color 0.3s;
}
 .jato-mogi .btn-saiba-mais {
     color: #cc0000;
}
 .btn-saiba-mais:hover {
     background-color: rgba(255, 255, 255, 0.9);
}

 .titulo-empresas {
     font-family: 'TT Runs Trial', sans-serif;
     font-size: 3rem;
     text-align: center;
     line-height: 1;
     width: auto;
     color: #f2f2f2;
}
 .empresas-container {
     display: flex;
     height: 100vh;
     margin-top: 0;
}
 .empresa-coluna-lg {
     flex: 1;
     display: flex;
     flex-direction: column;
     color: white;
     padding-left: 20vh;
     text-align: center;
     align-items: center;
     text-align: center;
}
 .empresa-coluna-jato {
     flex: 1;
     display: flex;
     flex-direction: column;
     color: white;
     padding-right: 20vh;
     text-align: center;
     align-items: center;
     text-align: center;
}
 .empresa-logo {
     max-width: 250px;
     margin-bottom: 30px;
}
 .empresa-texto {
     max-width: 400px;
     margin-bottom: 30px;
     line-height: 1.6;
}
 .empresa-imagem-container {
     position: absolute;
}
 .empresa-imagem {
     max-width: 35vw;
     transition: transform 0.3s ease;
}
 .empresa-overlay {
     z-index: 0;
     margin-top: 58vh;
}

 .empresa-lg-botao {
     background-color: white;
     color: #223d8c;
     padding: 15px 30px;
     border-radius: 25px;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     border: 2px solid white;
     font-size: 1.2rem;
     font-weight: 500;
}
 .empresa-lg-botao:hover {
     background-color: #072a44;
     transform: scale(1.05);
     border: 2px solid #FFFFFF;
     color: white;
}
 .empresa-jato-botao {
     background-color: white;
     color: #F33D3C;
     padding: 15px 30px;
     border-radius: 25px;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     border: 2px solid white;
     font-size: 1.2rem;
     font-weight: 500;
}
 .empresa-jato-botao:hover {
     background-color: #8f2423;
     color: white;
     transform: scale(1.05);
     border: 2px solid #FFFFFF;
}

@media (max-width: 768px) {
    .empresas-container {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
    }

    .titulo-empresas {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .empresa-coluna-lg, 
    .empresa-coluna-jato {
        flex: none;
        width: 100%;
        margin-left: 0;
        padding-left: 0;
    }

    .empresa-logo {
        max-width: 200px;
        margin-bottom: 20px;
    }

    .empresa-texto {
        max-width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }

    .empresa-imagem-container {
        position: relative;
        margin-top: 0;
        max-width: 600px;
    }

    .empresa-imagem {
        max-width: 100%;
        margin-top: 20px;
    }

    .empresa-overlay {
        margin-top: 0;
        position: relative;
        z-index: 1;
    }

    .empresa-lg-botao,
    .empresa-jato-botao {
        padding: 12px 24px;
        font-size: 1rem;
        display: none;
    }
}

/* Ajustes para telas muito pequenas */
@media (max-width: 480px) {
    .titulo-empresas {
        font-size: 1.8rem;
    }

    .empresa-logo {
        max-width: 180px;
    }

    .empresa-texto {
        font-size: 0.9rem;
    }
}


/* =========================== SOBRE EMPRESAS ===============================================================================*/


.sobre-empresas-container {
    min-height: auto; /* deixa a altura acompanhar o conteúdo */
    height: auto;
    width: 100%;

}
 .sobre-empresas-header {
     display: flex;
     flex-direction: column;
     align-items: center;
     margin-bottom: 1rem;
     text-align: center;
}

 .sobre-empresas-conteudo {
     display: flex;
     max-width: 1200px;
     gap: 50px;
     margin-left: 7vw;
}
 .sobre-empresas-imagem {
     flex: 1;
}

 .sobre-empresas-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 2rem;
     max-width: 1200px;
     margin: 0 auto;
     align-items: center;
}
 .sobre-empresas-texto {
     background-color: white;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     width: 45vw;
}


 .carrossel-container {
     position: relative;
     width: 100%;
     height: 750px;
     overflow: hidden;
     border-radius: 10px;

}
 .carrossel-slides {
     position: relative;
     width: 100%;
     height: 100%;
}
 .carrossel-imagem {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     object-fit: cover;
    /* Garante que a imagem cubra todo o container */
     opacity: 0;
     transition: opacity 0.5s ease;
}
 .carrossel-imagem.ativo {
     opacity: 1;
     z-index: 1;
}
 .carrossel-navegacao {
     position: absolute;
     top: 50%;
     width: 100%;
     display: flex;
     justify-content: space-between;
     transform: translateY(-50%);
}
 .carrossel-botao {
     background-color: rgba(0, 0, 0, 0.5);
     color: white;
     border: none;
     padding: 10px 15px;
     cursor: pointer;
     transition: background-color 0.3s ease;
     z-index: 10;
}
 .carrossel-botao:hover {
     background-color: rgba(0, 0, 0, 0.7);
}
 .carrossel-indicadores {
     position: absolute;
     bottom: 20px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 10px;
}
 .indicador {
     width: 10px;
     height: 10px;
     background-color: rgba(255, 255, 255, 0.5);
     border-radius: 50%;
     cursor: pointer;
     transition: background-color 0.3s ease;
}
 .indicador.ativo {
     background-color: white;
}

 .empresa-logos-wrapper {
     display: flex;
     flex-direction: column;
     align-items: center;
}
 .empresa-logos {
     display: flex;
     align-items: center;
     justify-content: center;
     margin-bottom: 1rem;
}
 .logo-separador {
     margin: 0 2rem;
     font-size: 2rem;
     font-weight: bold;
     color: #333;
}

 .logo-empresa {
     max-width: 200px;
     transition: transform 0.3s ease;
     margin: 0;
     padding: 0;
     align-items: center;
     align-content: center;
}

 .logo-empresa:hover {
     transform: scale(1.1);
}
.sobre-empresas-imagem {
        width: 35vw;
}

 .jato-mogi-logo{
     max-width: 215px;
     margin-bottom: 20px;
}

 .excelencia-titulo {
     font-family: 'TT Runs Trial', sans-serif;
     font-size: 2rem;
     color: #333;
     text-align: center;
}

 .texto-introducao {
     font-family: 'TT Runs Trial', sans-serif;
     font-size: 1.4rem;
     color: #3D3D3D;
     line-height: 1.6;
     font-weight: 500;
     width: 100%;
}

 .texto-introducao3 {
     font-family: 'TT Runs Trial', sans-serif;
     font-size: 1.4rem;
     color: #3D3D3D;
     line-height: 1.6;
     font-weight: 500;
     width: 100%;
}

 .texto-introducao2 {
     font-family: 'TT Runs Trial', sans-serif;
     font-size: 1.5rem;
     color: #3D3D3D;
     line-height: 1.6;
     font-weight: 500;
     width: 100%;
     margin: 0;
}

 .lg-colors-destaque {
     color: #223d8c;
     font-weight: 700;
}
 .jato-mogi-destaque {
     color: #F33D3C;
     font-weight: 700;
}

 .local-destaque {
     font-weight: 700;
}

 .solucao-destaque {
     font-weight: 700;
}



@media (max-width: 768px) {
    .sobre-empresas-container {
        margin-top: 5vw;
        width: 100%;
    }

    .sobre-empresas-conteudo {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-left: 0;
    }

    .sobre-empresas-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding-top: 0 !important;
    }

    .sobre-empresas-imagem {
        order: 2; /* Coloca o carrossel depois do texto */
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .carrossel-container {
        width: 100%;
        height: 50vh;
        padding: 0;
        border-radius: 10px;
    }

    .sobre-empresas-texto {
        order: 1; /* Coloca o texto primeiro */
        width: 100%;
        padding: 0;
        padding-bottom: 10vw;
        border-radius: 0;
    }

    .empresa-logos-wrapper {
        display: flex;
        align-items: center;
        text-align: center;
        margin-top: 10vw;
    }

    .empresa-logos {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }


    .logo-separador {
        margin: 10px 20px;
    }

    .excelencia-titulo {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .texto-introducao {
        font-size: 1.4rem;
        text-align: start;
    }

    .texto-conteudo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: start;
        align-self: center;
        justify-self: center;
        width: 90%;
    }

    .texto-introducao p,
    .texto-introducao h3 {
        text-align: start;
    }

    .texto-introducao3 {
        padding-top: 2vw;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center !important;
        align-self: center;
        justify-self: center;
        width: 90%;
        font-size: 1.2rem;
    }

    .texto-introducao3 p,
    .texto-introducao3 h3 {
        text-align: center !important;
    }

    .carrossel-navegacao {
        display: none; /* Opcional: esconde botões de navegação em mobile */
    }

    .hero-menu-botao {
        margin-top: 20px;
        padding: 12px 24px;
        font-size: 1rem;
    }

    .excelencia-titulo {
        font-size: 1.5rem;
    }

    .texto-introducao {
        font-size: 1.1rem;
    }

    .logo-empresa {
        max-width: 120px;
    }

}

/* =========================== EMPRESAS CONFIANCA ===============================================================================*/


 .qualidade-confianca-container {
     margin-bottom: 2vw;
}
 .qualidade-confianca-header {
     text-align: left;
    /* Mudança aqui */
     max-width: 1200px;
    /* Adiciona um padding para dispositivos menores */
     margin-top: 0;
}
 .qualidade-titulo {
     font-family: 'TT Runs Trial', sans-serif;
     font-size: 3rem;
     color: #333;
     text-align: center;
width: 100%;
    /* Garantindo alinhamento à esquerda */
}
 .qualidade-etapa-titulo {
     font-family: 'TT Runs Trial', sans-serif;
     font-size: 2.5rem;
     color: white;
     text-align: center;
     width: 100%;
    background-color: #0056b3;
    padding: 7px 5px;
    border-radius: 30px;
    margin-top: 3vw;
}
 .qualidade-confianca-conteudo {
    display: flex;
    width: 100%;
    gap: 50px;
    padding-left: 7vw;
}
 .qualidade-confianca-texto-coluna {
     flex: 1;
     display: flex;
     align-items: flex-start;
     justify-content: flex-start;
}


 .qualidade-empresas-texto {
     background-color: white;
     padding: 2rem;
     border-radius: 10px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     margin-top: 2vw;
     text-align: center;
     align-items: center;
     align-content: center;
     padding-left: 3vw;
     padding-right: 3vw;
     width: 100%;
     max-width: 900px; /* limita no desktop */
}


 .texto-wrapper {
     max-width: auto;
     width: auto;
     align-items: center;
     align-content: center;
}
 .texto-detalhes {
     font-family: 'Inter', sans-serif;
     color: #666;
     text-align: left;
     font-size: 1rem;
     line-height: 1.6;
}



 .orcamento-menu-botao {
     margin-top: 3vw;
     background-color: #0768bf;
     color: #f2f2f2;
     padding: 1vw 3vw;
     border-radius: 25px;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     border: 2px solid #072a44;
     font-size: 1.2rem;
     font-weight: 500;
}
 .orcamento-menu-botao::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background-color: rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
     transform: skewX(-45deg);
}
 .orcamento-menu-botao:hover {
     background-color: #F33D3C;
     transform: scale(1.05);
     border: 2px solid #FFFFFF;
}
 .orcamento-menu-botao:hover::before {
     left: 100%;
}

 .qualidade-confianca-imagem-coluna {
     display: flex;
     justify-content: flex-start;
     align-items: flex-start;
     width: 100%;
     margin-top: 4vw;
     margin-left: 3vw;
}

 .diferenciais-container {
     display: flex;
     flex-direction: column;
     gap: 40px;
     max-width: 600px;
     width: 100%;
}
 .diferencial-item {
     display: flex;
     align-items: center;
     background-color: #f4f4f4;
     padding: 20px;
     border-radius: 10px;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
    width: 100%;
    max-width: 400px;
}
 .diferencial-item:nth-child(odd) {
     align-self: flex-start;
    /* Alinha para a esquerda */
     margin-right: auto;
}
 .diferencial-item:nth-child(even) {
     align-self: flex-end;
    /* Alinha para a direita */
     margin-left: auto;
}

 .diferencial-item:hover {
     transform: translateY(-5px);
}
 .diferencial-icone {
     font-size: 3rem;
     color: #0768bf;
     margin-right: 15px;
     display: flex;
     align-items: center;
}


 .diferencial-texto h3 {
     font-family: 'TT Runs Trial', sans-serif;
     color: #0768bf;
     margin-bottom: 5px;
     font-size: 1.2rem;
     font-weight: 800;
}

 .diferencial-texto p {
     font-family: 'Inter', sans-serif;
     color: #3D3D3D;
     line-height: 1.4;
     font-size: 0.9rem;
}

 .titulo-sobre {
     width: 650px;
     height: auto;
     margin-top: 3vw;
     margin-bottom: 1vw;
}

@media (max-width: 768px) {

    .qualidade-confianca-conteudo {
        text-align: center;
        align-items: center;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

     .diferencial-texto h3 {
     font-family: 'TT Runs Trial', sans-serif;
     color: #0768bf;
     margin-bottom: 5px;
     font-size: 1.2rem;
     font-weight: 800;
     text-align: start;
    }

 .diferencial-texto p {
     font-family: 'Inter', sans-serif;
     color: #3D3D3D;
     line-height: 1.4;
     font-size: 0.9rem;
    }

    .orcamento-menu-botao{
        display: none;
    }

    .qualidade-empresas-texto {
        text-align: center;
        align-items: center;
        width: 100%;
        padding: 5vw 5vw;
    }

    .qualidade-confianca-header {
        text-align: center;
    }

    .qualidade-titulo {
        text-align: center;
        width: 100%;
        font-size: 2.0rem;
    }
    
    .qualidade-etapa-titulo{
        text-align: center;
        width: 95%;
        font-size: 2.0rem;
        align-items: center;
        align-self: center;
        justify-self: center;
    }

    .texto-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

     .titulo-sobre {
     width: 300px;
     height: auto;
     margin-top: 3vw;
     margin-bottom: 4vw;
    }

    .texto-introducao2 {
        text-align: start;
        width: 90%;
        font-size: 1.2rem;
    }

    .diferenciais-container {
        align-items: center;
        margin: 0;
    }

    .diferencial-item {
        text-align: center;
        align-items: center;
        align-self: center;
        width: 100%;
        max-width: 300px;
    }

    .diferencial-item:nth-child(odd),
    .diferencial-item:nth-child(even) {
        align-self: center;
        margin: 0;
    }

    .qualidade-confianca-imagem-coluna {
     display: flex;
     justify-content: center;
     align-items: center;
     width: 100%;
     margin-top: 4vw;
}

 .qualidade-confianca-container {
     margin-bottom: 0 !important;
}

}

/* =========================== NUMEROS CONTADOR ===============================================================================*/

 .numeros-empresa-container {
     padding: 40px 0;
     padding-top: 8vw;
     padding-bottom: 3vw;
}
 .numeros-empresa-wrapper {
     display: flex;
     justify-content: center;
     align-items: center;
     max-width: 1200px;
     margin: 0 auto;
     gap: 50px;
}
 .numero-item {
     padding: 1vw 2vw;
     display: flex;
     align-items: center;
     gap: 20px;
     background-color: #f2f2f2;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
     border-radius: 40px;
}
 .numero-imagem {
     width: 90px;
     height: 90px;
     display: flex;
     justify-content: center;
     align-items: center;
}
 .numero-imagem img {
     width: 50px;
     height: 50px;
     object-fit: contain;
}
 .numero-texto {
     display: flex;
     flex-direction: column;
     width: 100%;
}
 .numero-grande {
     font-family: 'TT Runs Trial', sans-serif;
     font-size: 3.5rem;
     font-weight: bold;
     color: #072a44;
}
 .numero-descricao {
     font-family: 'Erbaum', sans-serif;
     font-size: 2rem;
     color: #072a44;
}

 .numero-grande {
     font-family: 'TT Runs Trial', sans-serif;
     font-size: 2.5rem;
     font-weight: bold;
     color: #0066cc;
     transition: transform 0.3s ease;
}
 .numero-icone {
     font-size: 3rem;
     color: #0768bf;
     display: flex;
     align-items: center;
}


@media (max-width: 768px) {
    .numeros-empresa-wrapper {
        flex-direction: column; /* Muda para coluna só no mobile */
        gap: 20px; /* Espaçamento entre itens */
        align-items: center; /* Centraliza os itens */
        padding: 0 15px; /* Padding lateral */
    }

    .numero-item {
        width: 100%; /* Ocupa largura total */
        max-width: 250px; /* Largura máxima */
        flex-direction: row; /* Mantém ícone e texto lado a lado */
        justify-content: center; /* Centraliza conteúdo */
        align-items: center;
        padding: 15px;
    }

    .numero-imagem {
        margin-right: 15px; /* Espaço entre ícone e texto */
    }

    .numero-texto {
        text-align: left; /* Alinha texto à esquerda */
    }

    .numero-grande {
        font-size: 2.2rem; /* Ajuste de tamanho */
    }

    .numero-descricao {
        font-size: 1.3rem; /* Ajuste de tamanho */
    }
}

/* Mantém layout original para desktop */
@media (min-width: 769px) {
    .numeros-empresa-wrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .numero-item {
        display: flex;
        align-items: center;
        gap: 20px;
    }
}


/* =========================== PROCESSOS ===============================================================================*/

 .processos-menu-botao {
     background-color: #0768bf;
     color: #f2f2f2;
     padding: 0.5vw 1.5vw;
     border-radius: 25px;
     text-decoration: none;
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
    /* Mantém o overflow hidden */
     border: 2px solid #072a44;
     font-size: 1.0rem;
     font-weight: 500;
     display: inline-block;
    /* Adiciona isso */
}
 .processos-menu-botao::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background-color: rgba(255, 255, 255, 0.2);
     transition: all 0.3s ease;
     transform: skewX(-45deg);
     z-index: 1;
    /* Adiciona z-index */
}
 .processos-menu-botao:hover {
     background-color: #F33D3C;
     transform: scale(1.05);
     border: 2px solid #FFFFFF;
}
 .processos-menu-botao:hover::before {
     left: 100%;
}
/* Adicione isso para melhorar o efeito de clique */
 .processos-menu-botao:active {
     transform: scale(0.95);
     box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}


 .processos-container {
     padding: 80px 20px;
     text-align: center;
}
 .titulo-processos {
     font-size: 2.5rem;
     color: #f2f2f2;
     margin-bottom: 50px;
}
 .processos-wrapper {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
}
 .processos-grid {
     display: flex;
     flex-wrap: wrap;
     justify-content: center;
     gap: 20px;
}
 .processo-card {
     width: calc(33.333% - 20px);
    /* 3 cards por linha */
     background-color: #f4f4f4;
     box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
     padding: 30px;
     box-sizing: border-box;
     position: relative;
     border-radius: 10px;
     opacity: 0;
     transform: translateY(50px);
     transition: opacity 0.6s, transform 0.6s, box-shadow 0.3s, top 0.3s ease;
     top: 0;
}
 .processo-card.aparecer {
     opacity: 1;
     transform: translateY(0);
}
 .processo-card h3 {
     margin-bottom: 15px;
     color: #333;
}
 .processo-card p {
     color: #666;
     margin-bottom: 20px;
}

 .btn-saiba-mais-processos {
     display: inline-block;
     background-color: #007bff;
     color: white;
     padding: 10px 20px;
     text-decoration: none;
     border-radius: 5px;
     transition: background-color 0.3s ease;
}
 .btn-saiba-mais-processos:hover {
     background-color: #0056b3;
}
 .lg-colors-card {
     border-left: 10px solid #0066cc;
}
 .jato-mogi-card {
     border-left: 10px solid #cc0000;
}


 .processo-icone {
     font-size: 2.5rem;
     color: #007bff;
     margin-bottom: 15px;
     text-align: center;
}
 .processo-checkmarks {
     display: flex;
     flex-direction: column;
     gap: 8px;
     margin: 15px 0;
}
 .processo-checkmarks span {
     display: flex;
     align-items: center;
     gap: 10px;
     font-size: 1.1rem;
}
 .processo-checkmarks i {
     color: #28a745;
     font-size: 1.1rem;
}
 .contato-container {
     padding: 80px 20px;
     text-align: center;
     align-items: center;
     align-content: center;
     width: 100%;
    /* Cor inicial */
}

 .icone-processo {
     width: 120px;
     height: auto;
}

@media (max-width: 768px) {
    .processos-grid {
        flex-direction: column; /* Muda para coluna */
        align-items: center; /* Centraliza os itens */
        gap: 20px; /* Espaçamento entre cards */
        width: 100%;
        margin: 0;
    }

    .processo-card {
        width: 100%; /* Ocupa largura total */
        max-width: 600px; /* Largura máxima */
        margin: 0;
    }

    
    .titulo-processos {
        font-size: 2rem; /* Reduz tamanho do título */
        margin-bottom: 30px;
    }

     .processos-container {
     padding: 0 0;
     text-align: center;
    }

    .processo-icone {
        font-size: 2rem; /* Ajusta tamanho do ícone */
    }

    .processo-card h3 {
        font-size: 1.5rem; /* Reduz tamanho do título do card */
    }

    .processo-card p {
        font-size: 1rem; /* Ajusta tamanho do parágrafo */
    }

    .processo-checkmarks span {
        font-size: 1rem; /* Reduz tamanho dos checkmarks */
    }

    .processos-menu-botao {
        padding: 10px 15px; /* Ajusta padding do botão */
        font-size: 0.9rem; /* Reduz tamanho da fonte */
    }
}


/* =========================== CONTATO ===============================================================================*/

 .jato-mogi-logo-contato{
     max-width: 215px;
     margin-bottom: 5px;
}

 .lg-colors-logo-contato{
     max-width: 215px;
     margin-bottom: 25px;
}


.contato-titulo {
    font-size: 2.5rem;
    color: #f4f4f4;
    margin-bottom: 50px;
    font-weight: bold;
}

.contato-card {
    width: 100%;
    border-radius: 15px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s ease, transform 0.3s ease, top 0.3s ease;
    top: 0;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.contato-flex-container {
    display: flex;
    align-items: center;
    align-content: center;
    flex-direction: column;
}

.contato-opcoes-lg,
.contato-opcoes-jato {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    padding: 2vw;
}

.contato-opcoes-lg { background-color: #007bff; }
.contato-opcoes-jato { background-color: #3d3d3d; }

.contato-opcao {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    width: 30%;
    border-right: 1px solid #ddd;
    padding: 30px 15px;
    font-size: 1.3rem;
}

.contato-opcao:last-child {
    border-right: none;
}

.contato-icone-lg {
    font-size: 3.5rem;
    color: #f2f2f2;
    margin-bottom: 15px;
}

.contato-icone-jato {
    font-size: 4rem;
    color: #f33d3c;
    margin-bottom: 15px;
}

.contato-opcao h3 {
    color: #333;
    margin-bottom: 0;
}

.contato-opcao p {
    margin-top: 5px;
    color: #666;
}

.titulo-contato {
    font-size: 2rem;
    color: #3D3D3D;
    font-weight: 800;
}

.contato-botao {
    background-color: #0768bf;
    color: #f2f2f2;
    padding: 15px 20px;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 2vw;
}

.contato-botao:hover {
    background-color: #F33D3C;
    transform: scale(1.05);
}

.localizacao-container {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    margin-top: 60px;
}

.localizacao-titulo {
    padding: 20px;
    background-color: #0768bf;
    color: #f4f4f4;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
}

.localizacao-mapa iframe {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.contato-container {
    padding: 60px 0;
}

.contato-wrapper {
    width: 100%;
    align-items: center;
    align-content: center;
    align-self: center;
}

.contato-empresas {
    display: flex;
    align-items: center;
    align-content: center;
    align-self: center;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.contato-empresa {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 700px;
}

.contato-empresa.lg-colors .contato-card {
    background-color: #007bff;
    color: #f2f2f2;
}

.contato-empresa.jato-mogi .contato-card {
    background-color: #3d3d3d;
    color: #f2f2f2;
}

.contato-opcoes {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 20px;
    padding: 30px;
}

.contato-icone {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #fff;
}

.localizacao-mapa {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}


@media (max-width: 768px) {
    .contato-titulo {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .contato-empresas {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .contato-empresa {
        width: 100%;
        max-width: 400px;
    }

    .contato-opcoes-lg,
    .contato-opcoes-jato {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

     .jato-mogi-logo-contato{
     max-width: 215px;
     margin-bottom: 20px;
    }

     .lg-colors-logo-contato{
     max-width: 215px;
     margin-bottom: 20px;
    }

    .contato-opcao {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.2);
        padding: 20px 0;
    }

    .contato-opcao:last-child {
        border-bottom: none;
    }

    .contato-icone-lg,
    .contato-icone-jato {
        font-size: 5rem;
    }

    .contato-botao {
        padding: 2vw 5vw;
        font-size: 1.5rem;
    }

    .localizacao-container {
        margin-top: 40px;
    }

    .localizacao-titulo {
        padding: 15px;
        font-size: 1.5rem;
    }

    .localizacao-mapa iframe {
        height: 300px;
    }

    .contato-wrapper {
        width: 95%;
        padding: 0 10px;
    }

    .site-footer{
        display: none;
    }
}



/* =========================== FOOTER ===============================================================================*/



 .site-footer {
     background-color: #0768bf;
     color: #fff;
     padding: 60px 0 30px;
     font-family: 'Arial', sans-serif;
}
 .footer-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 15px;
}
 .footer-columns {
     display: grid;
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
     margin-bottom: 40px;
}
 .footer-column {
     display: flex;
     flex-direction: column;
}
 .footer-logo {
     display: flex;
     flex-direction: column;
     align-items: flex-start;
     padding-top: 3vw;

}
 .footer-logo-img {
     max-width: 200px;
}
 .footer-tagline {
     font-size: 0.9rem;
     opacity: 0.8;
     margin-bottom: 15px;
}
 .footer-column-title {
     font-size: 1.2rem;
     font-weight: bold;
     margin-bottom: 15px;
     padding-bottom: 10px;
     border-bottom: 2px solid rgba(255,255,255,0.2);
}
 .footer-nav {
     display: flex;
     flex-direction: column;
}
 .footer-nav-link, .footer-contact-info p, .footer-social-link-lg, .footer-social-link-jato {
     color: #fff;
     text-decoration: none;
     opacity: 0.7;
     margin-bottom: 10px;
     transition: opacity 0.3s ease;
     display: flex;
     align-items: center;
}
 .footer-nav-link:hover, .footer-social-link-lg:hover, .footer-social-link-jato:hover {
     opacity: 1;
}
 .footer-contact-info i, .footer-nav-link i {
     margin-right: 10px;
     font-size: 1rem;
}
 .footer-social-links {
     display: flex;
     gap: 15px;
}

 .footer-social-link {
     font-size: 1.5rem;
     width: 50px;
     height: 50px;
     background-color: #0056b3;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.3s ease, transform 0.3s ease;
}
 .footer-social-link-lg {
     font-size: 1.5rem;
     width: 50px;
     height: 50px;
     background-color: #223d8c;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.3s ease, transform 0.3s ease;
}
 .footer-social-link-jato {
     font-size: 1.5rem;
     width: 50px;
     height: 50px;
     background-color: #3d3d3d;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.3s ease, transform 0.3s ease;
}
 .footer-social-link-lg:hover {
     background-color: #f2f2f2;
     transform: scale(1.1);
     color:#007bff
}
 .footer-social-link-jato:hover {
     background-color: #f33d3c;
     transform: scale(1.1);
}

 .footer-social-link:hover {
     background-color: rgba(255,255,255,0.2);
     transform: scale(1.1);
}
 .footer-bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
     border-top: 1px solid rgba(255,255,255,0.2);
     padding-top: 20px;
     margin-top: 30px;
}

 .footer-legal-links {
     display: flex;
     gap: 20px;
}
 .footer-legal-link {
     color: #fff;
     text-decoration: none;
     font-size: 0.9rem;
     opacity: 0.7;
     transition: opacity 0.3s ease;
}
 .footer-legal-link:hover {
     opacity: 1;
}






/* =========================== ANIMACOES ===============================================================================*/
 @keyframes fadeInUp {
     from {
         opacity: 0;
         transform: translateY(20px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .numero-item {
     opacity: 0;
     transform: translateY(20px);
     transition: all 0.5s ease;
}
 .numeros-empresa-container.animado .numero-item {
     animation: fadeInUp 0.7s forwards;
}
 .numeros-empresa-container.animado .numero-item:nth-child(1) {
     animation-delay: 0.2s;
}
 .numeros-empresa-container.animado .numero-item:nth-child(2) {
     animation-delay: 0.4s;
}
 .numeros-empresa-container.animado .numero-item:nth-child(3) {
     animation-delay: 0.6s;
}

/* Animações Globais */
 .hidden {
     opacity: 0;
     transform: translateY(50px);
     transition: opacity 0.6s, transform 0.6s;
}
 .aparecer {
     opacity: 1;
     transform: translateY(0);
}
/* Animação de Fade In */
 @keyframes fadeIn {
     from {
         opacity: 0;
         transform: translateY(50px);
    }
     to {
         opacity: 1;
         transform: translateY(0);
    }
}
 .fade-in {
     opacity: 0;
     transform: translateY(50px);
     animation: fadeIn 0.6s forwards;
}
/* Animação de Slide In da Esquerda */
 @keyframes slideInLeft {
     from {
         opacity: 0;
         transform: translateX(-100px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
 .slide-in-left {
     opacity: 0;
     transform: translateX(-100px);
     animation: slideInLeft 0.8s forwards;
}
/* Animação de Slide In da Direita */
 @keyframes slideInRight {
     from {
         opacity: 0;
         transform: translateX(100px);
    }
     to {
         opacity: 1;
         transform: translateX(0);
    }
}
 .slide-in-right {
     opacity: 0;
     transform: translateX(100px);
     animation: slideInRight 0.8s forwards;
}
/* Animação de Scale */
 @keyframes scaleIn {
     from {
         opacity: 0;
         transform: scale(0.8);
    }
     to {
         opacity: 1;
         transform: scale(1);
    }
}
 .scale-in {
     opacity: 0;
     transform: scale(0.8);
     animation: scaleIn 0.6s forwards;
}
/* Animação de Rotação */
 @keyframes rotateIn {
     from {
         opacity: 0;
         transform: rotate(-180deg) scale(0.5);
    }
     to {
         opacity: 1;
         transform: rotate(0) scale(1);
    }
}
 .rotate-in {
     opacity: 0;
     transform: rotate(-180deg) scale(0.5);
     animation: rotateIn 0.8s forwards;
}
/* Delays para efeitos sequenciais */
 .delay-1 {
     animation-delay: 0.2s;
}
 .delay-2 {
     animation-delay: 0.4s;
}
 .delay-3 {
     animation-delay: 0.6s;
}
 .delay-4 {
     animation-delay: 0.8s;
}
 .delay-5 {
     animation-delay: 1s;
}
 .js-scroll-animation {
     opacity: 0;
     transform: translateY(50px);
     transition: opacity 0.4s ease-out, transform 0.4s ease-out;
    /* Reduzido de 0.6s para 0.4s */
}
 .js-scroll-animation.js-aparecer {
     opacity: 1;
     transform: translateY(0);
}
/* Delays mais rápidos */
 .js-scroll-animation.js-delay-1 {
     transition-delay: 0.1s;
}
 .js-scroll-animation.js-delay-2 {
     transition-delay: 0.2s;
}
 .js-scroll-animation.js-delay-3 {
     transition-delay: 0.3s;
}

