/* =============== Estilo Base =============== */
body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    scroll-behavior: smooth;
    position: relative;
    overflow-x: visible;
    background-color: #283593 !important;
    background-image: none !important;
}

.content {
    min-height: 100vh;
    width: 100%;
    overflow-x: visible;
    display: flex;
    flex-direction: column;
}

.navbar-custom {
    padding: 1rem 2rem;
    width: 100%;
    z-index: 900;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-height: 100px;
}

.navbar-custom .logo {
    height: 250px;
    max-width: 100%;
    object-fit: contain;
}

.navbar-custom .menu-links a {
    color: white;
    margin-left: 20px;
    font-weight: bold;
    text-decoration: none;
    font-size: 24px;
}

.banner-topo {
    background-image: url('/images/banner.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    min-height: 400px; /* Apenas mínimo no desktop */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: white;
    text-align: left;
    z-index: 0;
}

.banner-topo .conteudo {
    color: white;
  
    text-align: left;
}

.banner-topo .conteudo h1,
.banner-topo .conteudo p {
    color: white;
}

.banner-topo::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.banner-topo h1 {
    font-size: 10rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.banner-topo p {
    font-size: 1.5rem;
    font-weight: 300;
}

/* ===============🔧 Ajustes de responsividade para navbar e banner (Mobile até 768px) =============== */
@media (max-width: 768px){
  .navbar-custom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-height: none;
    padding: 1rem; /*+ */
  }

  .navbar-custom .logo {
    height: 200px;
    object-fit: contain;  /*+ */
  }

  .navbar-custom .menu-links {
    flex-direction: column;
    margin-top: 1rem;
  }

  .navbar-custom .menu-links a {
    font-size: 1.2rem;
    margin: 10px 0;
  }

  .menu-secundario {
    flex-direction: column;
    gap: 15px;
  }

  .menu-secundario a {
    font-size: 1.2rem;
  }

  .banner-topo .conteudo {
        padding: 0;
        text-align: center;
    }

    .banner-topo h1 {
        font-size: 3rem !important;
    }

    .banner-topo p {
        font-size: 1.2rem !important;
    }

  .banner-topo {
    margin-top: 90px; /*+ */
    min-height: 250px !important; /*+ */
    height: auto !important;
    padding: 2rem 1rem;
    flex-direction: column; /*+ */
    align-items: center; /*+ */
    text-align: center;
    justify-content: center;
  }

  .modulo-caixa {
    width: 90% !important;
    float: none !important;
    margin: 20px auto !important;
    text-align: center !important;
  }

  .modulo-nome {
    font-size: 1.5rem;
  }

  .modulo-texto {
    font-size: 1rem;
  }

  .timeline-item {
    width: 100% !important;
    left: 0 !important;
    padding: 1.5rem 1rem !important;
    text-align: left !important;
  }

  .timeline-item.right {
    left: 0 !important;
  }

  .timeline-item .connector {
    display: none;
  }

  .modulo-timeline::before {
    left: 10px !important;
    width: 4px !important;
  }

  .section {
    padding: 50px 15px;
  }

  .section h5 {
    font-size: 1.6rem !important;
  }

  .section p {
    font-size: 1.2rem !important;
  }

  .modulo-linha {
    flex-direction: column;
    text-align: center;
  }
}

.section {
    padding: 100px 30px;
    background-color: #d1d6f5;
}

.section h2 {
    color: #333;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.section h5 {
    font-size: 2.3rem;
    color: #003399;
}

.section p {
    font-size: 2.05rem;
    color: #353434;
}

.menu-secundario {
    position: sticky;
    top: 0;
    z-index: 1001;
    background-color: rgb(7, 61, 168);
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 1rem 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.menu-secundario a {
    color: white;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 24px;
}

.menu-secundario a:hover {
    color: #ffd700;
}

.navbar.navbar-default.navbar-static-top {
    display: none !important;
}

.footer {
    background-color: #f8f9fa;
    padding: 40px 20px;
    text-align: left;
    font-size: 14px;
    color: #666;
}

.footer-innova {
    background-color: #003399;
    color: white;
    padding: 40px 20px;
    text-align: center;
    margin-top: 100px;
    font-size: 14px;
}

.footer-innova .footer-links {
    margin-top: 10px;
}

.footer-innova .footer-links a {
    color: #ffd700;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

.footer-innova .footer-links a:hover {
    text-decoration: underline;
}

/* =============== Estilos de Módulos =============== */
.modulo-caixa {
    width: 46%;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.modulo-caixa.left {
    float: left;
    clear: both;
    text-align: right;
    margin-right: 6%;
}

.modulo-caixa.right {
    float: right;
    clear: both;
    text-align: left;
    margin-left: 6%;
}

.modulo-nome {
    display: inline-block;
    font-weight: bold;
    font-size: 2rem;
    margin-bottom: 0.6rem;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    color: #fff;
}

.modulo-texto {
    font-size: 1.1rem;
    color: #333;
}

.modulo-estoque { background: #6f42c1; }
.modulo-compras { background: #5e2ca5; }
.modulo-vendas { background: #00b4d8; }
.modulo-financeiro { background: #3a86ff; }
.modulo-crm { background: #6f42c1; }
.modulo-custos { background: #5f0f40; }
.modulo-folha { background: #00b4d8; }
.modulo-portal { background: #0077b6; }
.modulo-licitacao { background: #5f0f40; }
.modulo-indicador { background: #8338ec; }
.modulo-servico { background: #3a86ff; }
.modulo-integracao { background: #4b1f77; }

.timeline-section {
    background-color: #f0f2fa;
    padding: 4rem 0;
    position: relative;
}

.titulo-timeline {
    text-align: center;
    font-weight: bold;
    color: #003399;
    margin-bottom: 4rem;
}

.timeline-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

.modulo-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    background-color: #82a2f4;
    z-index: 0;
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem;
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.card-timeline {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.connector {
    position: absolute;
    top: 50%;
    width: 25px;
    height: 4px;
    background-color: #5c7cfa;
}

.timeline-item.left .connector {
    right: -25px;
    transform: translateY(-50%);
}

.timeline-item.right .connector {
    left: -25px;
    transform: translateY(-50%);
}



