/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden; /* impede rolagem horizontal */
  width: 100%;
}

    /* Navbar */
    nav {
  background: #FFFFFF; 
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #ffffff;
      margin-left: 200px;
    }

    nav ul {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-item {
      cursor: pointer;
      font-size: 1.1rem;
      padding: 1rem 0.5rem;
      border-bottom: 3px solid transparent;
      transition: all 0.3s ease;
      color:#FF6B00;
      
  
    }

    .nav-item:hover,
    .nav-item.active {
      color: #cc5500;
      border-bottom: 3px solid #1A1A1A;
    }

  
/*Hamburguer menu*/
/* Menu hamburguer */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-right: 2rem;
}

.bar {
  height: 3px;
  width: 25px;
  background-color: #FF6B00;
  margin: 4px 0;
  transition: 0.3s;
}

/* Responsividade */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .logo {
    margin-left: 0;
  }

  .menu-toggle {
    display: flex;
  }

  nav ul {
    width: 100%;
    flex-direction: column;
    gap: 0;
    display: none;
    background: #FFFFFF;
    padding: 1rem 0;
  }

  nav ul.active {
    display: flex;
  }

  .nav-item {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #ddd;
  }
}

.menu-toggle.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}






    /* Sections */
   main {
  max-width: 900px;
  margin: 0 auto; /* Remova o 2rem do topo aqui */
  padding: 0 1rem;
}

   
    section {
      display: none;
      animation: fadeIn 0.4s ease;
      padding: 2rem 0;
    }

    section.active {
      display: block;
    }

    /* Títulos Estilizados */
    h1.section-title {
      color: #FF6B00;
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      position: relative;
      padding-bottom: 0.8rem;
      margin-top: 0;
    }

    h1.section-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      height: 4px;
      width: 100px;
      background: linear-gradient(90deg, #D35400, #F39C12);
    }

 section img {
  display: block;
  margin-top: 0 !important;
  padding-top: 0 !important;
  max-width: 100%;
}

    /* Se houver alguma margem na primeira seção, remova */
section:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Ajuste para que as outras seções mantenham o espaçamento normal */
section:not(:first-child) {
  margin-top: 2rem;
}

    /* Home Page */
    .inicio-bg {
  background: url('assets/fundoLaranja2.png') no-repeat center center/cover;
  min-height: 90vh; /* Reduzido de 100vh para 90vh para diminuir o espaço inferior */
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: 0; /* Garante que não haja margem superior */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0;
  margin-bottom: 0;
}
    .inicio-content {
      position: relative;
      z-index: 1;
      max-width: 800px;
      padding: 4rem 2rem;
      color: #ffffff;
      text-align: center;
      text-align: left;
    }

    .inicio-content h1 {
      font-size: 3rem;
      margin-bottom: 1.5rem;
      text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    }

    .inicio-content p {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    .btn-primary {
      background-color: #FF6B00;
      color: white;
      border: none;
      padding: 0.8rem 1.5rem;
      font-size: 1.1rem;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      display: inline-block;
      margin-top: 1rem;
      text-decoration: none;
    }

    .btn-primary:hover {
      background-color: #cc5500;
    }

    /* Início - Cards de Serviços */
    .service-cards {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin: 3rem 0;
    }

    .service-card {
      background: white;
      border-radius: 10px;
      padding: 2rem;
      width: 300px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      text-align: center;
      transition: transform 0.3s ease;
    }

    .service-card:hover {
      transform: translateY(-10px);
    }

    .service-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 1.5rem;
      background: #f0f7ff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FF6B00;
      font-size: 2rem;
    }

    .service-card h3 {
      color: #FF6B00;
      margin-bottom: 1rem;
    }

    .service-card p {
      color: #1A1A1A;
      line-height: 1.6;
    }

    /* Sobre */
    .sobre-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
      align-items: center;
    }

    .sobre-image {
      background: #ddd;
      height: 400px;
      border-radius: 10px;
      overflow: hidden;
      background-image: url('assets/sobre-imagem.webp');
    }

    .sobre-content h2 {
      color: #1A1A1A;
      font-size: 2rem;
      margin-bottom: 1.5rem;
    }

    .sobre-content p {
      margin-bottom: 1rem;
      line-height: 1.6;
      color: #1A1A1A;
    }

    .stats-container {
      display: flex;
      justify-content: space-between;
      margin-top: 2rem;

    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 2.5rem;
      font-weight: bold;
      color: #FF6B00;
      margin-bottom: 0.5rem;
    }

    .stat-label {
      color: #1A1A1A;
    }

    .valores-container {
  margin-top: 2rem;
}

.valores-container h3 {
  font-size: 1.5rem;
  color: #1A1A1A;
  margin-bottom: 1rem;
}

.valores-list {
  list-style: none;
  padding-left: 0;
}

.valores-list li {
  margin-bottom: 0.5rem;
  color: #1A1A1A;
  font-size: 1rem;
  position: relative;
  padding-left: 1.5rem;
}

.valores-list li::before {
  content: "✔";
  color: #FF6B00;
  position: absolute;
  left: 0;
  font-weight: bold;
}


    /* Certificações */
    .certificacoes-container {
      background: white;
      border-radius: 10px;
      padding: 2.5rem;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    }

    .cert-items {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
    }

    .cert-item {
      width: 200px;
      text-align: center;
      padding: 1.5rem;
      border: 1px solid #e6e6e6;
      border-radius: 10px;
      transition: all 0.3s ease;
    }

    .cert-item:hover {
      border-color: #FF6B00;
      box-shadow: 0 5px 15px rgba(77,184,255,0.1);
    }

    .cert-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 1rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2rem;
      color: #FF6B00;
    }

    .cert-item h3 {
      margin-bottom: 1rem;
      color: #1A1A1A;
    }

    .cert-item p {
      color: #1A1A1A  ;
      font-size: 0.9rem;
    }

    /* Soluções */
    .solucoes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.solucao-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.solucao-item:hover {
  transform: translateY(-10px);
}

.solucao-image {
  height: 200px;
  background: #1A1A1A;
/* Novo: centralizar e usar flexbox */
  display: flex;
  align-items: center;
  justify-content: center;
}

.solucao-image img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain; /* Mantém a proporção da imagem */
}

.solucao-content {
  padding: 1.5rem;
}

.solucao-content h3 {
  color: #1a3c61;
  margin-bottom: 1rem;
}

.solucao-content p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.btn-saiba-mais {
  color: orange;
  font-weight: bold;
  text-decoration: none;
}

    .btn-saiba-mais {
      color: #FF6B00;
      text-decoration: none;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn-saiba-mais:hover {
      color: #cc5500;
    }

    #detalhes-solucao {
  margin-top: 3rem;
  border-top: 2px solid #eee;
}

#detalhes-solucao h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

#detalhes-solucao p {
  font-size: 1.1rem;
}

    /* Parcerias */
    .parcerias-container {
      text-align: center;
    }

    .parceiros-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
    }

    .parceiro-item {
      width: 180px;
      height: 120px;
      background: white;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.05);
      padding: 1rem;
      filter: grayscale(100%);
      transition: all 0.3s ease;
    }

    .parceiro-item:hover {
      filter: grayscale(0%);
      transform: scale(1.05);
    }

    .parceiro-logo {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      display: block;
    }


    /* Contato */
    .contato-container {
      background-color: white;
      border-radius: 10px;
      padding: 2.5rem;
      max-width: 800px;
      margin: 0 auto;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }

    .contato-titulo {
      color: #cc5500;
      font-size: 2rem;
      margin-bottom: 1.5rem;
      border-bottom: 2px solid #e6e6e6;
      padding-bottom: 0.8rem;
    }

    .contato-info {
      margin-bottom: 2rem;
    }

    .contato-info li {
      padding: 0.5rem 0;
      list-style-type: none;
      display: flex;
      align-items: center;
    }

    .contato-info li::before {
      content: "•";
      color: #cc5500;
      font-weight: bold;
      margin-right: 0.8rem;
    }

    .contato-form {
      display: grid;
      gap: 1.2rem;
    }

    .form-group {
      display: flex;
      flex-direction: column;
    }

    .form-group label {
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #444;
    }

    .form-control {
      padding: 0.8rem;
      border: 1px solid #ddd;
      border-radius: 5px;
      font-size: 1rem;
      transition: border-color 0.3s ease;
    }

    .form-control:focus {
      border-color:#cc5500;
      outline: none;
      box-shadow: 0 0 0 3px rgba(77, 184, 255, 0.1);
    }

    textarea.form-control {
      min-height: 120px;
      resize: vertical;
    }

    .btn-enviar {
      background-color: #cc5500;
      color: white;
      border: none;
      padding: 0.8rem;
      font-size: 1rem;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      font-weight: 600;
    }

    .btn-enviar:hover {
      background-color: #FF6B00;
    }

    .curriculo-section {
      margin-top: 3rem;
      background-color: #f0f7ff;
      border-radius: 10px;
      padding: 2rem;
      border-left: 5px solid #FF6B00;
    }

    .curriculo-titulo {
      color: #FF6B00;
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
    }

    .file-upload {
      position: relative;
      margin-top: 1rem;
    }

    .file-input-label {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 0.8rem 1.2rem;
      background-color: #e6f0ff;
      border: 1px dashed #4db8ff;
      border-radius: 5px;
      cursor: pointer;
      font-weight: normal;
      transition: all 0.3s ease;
    }

    .file-input-label:hover {
      background-color: #d6e6ff;
    }

    .file-input {
      position: absolute;
      left: 0;
      top: 0;
      opacity: 0;
      width: 100%;
      height: 100%;
      cursor: pointer;
    }

    .file-name {
      margin-top: 0.5rem;
      font-size: 0.9rem;
      color: #666;
    }

    .curriculo-info {
      font-size: 0.9rem;
      color: #666;
      margin-top: 0.5rem;
    }

    /* Footer */
.footer {
  background-color: #ff6f00; /* Laranja vibrante */
  color: white;
  padding: 40px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;

  margin: 0 auto;
}

.footer-logo h2 {
  margin: 0;
  font-size: 24px;
}

.footer-logo p {
  margin-top: 8px;
  font-size: 14px;
}

.footer-links h4,
.footer-contato h4 {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffd180; /* Laranja claro no hover */
}

.footer-contato p {
  margin: 6px 0;
  font-size: 14px;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  font-size: 13px;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 15px;
}




    .social-links {
      display: flex;
      gap: 1rem;
      margin-top: 1rem;
    }

    .social-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .social-icon:hover {
      background: #FFFFFF
    }

   
    /* Animation */
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

    /* Responsividade */
    @media (max-width: 768px) {
      .sobre-container {
        grid-template-columns: 1fr;
      }
      
      .service-cards, .cert-items {
        flex-direction: column;
        align-items: center;
      }
      
      .service-card, .cert-item {
        width: 100%;
      }
      
      .nav ul {
        gap: 1rem;
      }
      
      .nav-item {
        font-size: 0.9rem;
        padding: 0.5rem;
      }
    }


    /*teste*/
    /* Responsividade */


/* watsap */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  z-index: 100;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

/*solucoes saibaMais*/

.aba-conteudo {
  display: none;
}

.aba-conteudo.ativa {
  display: block;
}

#solucoes.oculta {
  display: none;
}

.btn-voltar {
  margin-bottom: 20px;
  background-color: #f57c00;
  color: white;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  border-radius: 8px;
}


/*layout padrao abas detalhes */
.solucao-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 20px 0;
}

.solucao-grid .texto {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.solucao-grid .texto ul {
  margin-top: 20px;
  list-style: none;
  padding-left: 0;
}

.solucao-grid .texto ul li {
  margin-bottom: 10px;
  padding-left: 1.2em;
  position: relative;
}

.solucao-grid .texto ul li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

.solucao-grid .imagem img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}



/*carrosel de imagens*/
.container {
      max-width: 100%;
      padding: 20px;
      overflow: hidden;
    }
    
    .title-section {
      margin-bottom: 30px;
    }
    
    .title-section h2 {
      color: #2c5282;
      font-size: 24px;
      position: relative;
      padding-left: 25px;
    }
    
    .title-section h2::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 15px;
      height: 15px;
      background-color: #8cc63f;
      border-radius: 2px;
    }
    
    .carousel-container {
      position: relative;
      width: 100%;
      padding: 0 40px;
      margin-bottom: 100px;
    }
    
    .carousel {
      display: flex;
      overflow: hidden;
      width: 100%;
      scroll-behavior: smooth;
    }
    
    .carousel-slide {
      flex: 0 0 auto;
      min-width: 200px;
      margin: 0 10px;
      transition: transform 0.3s ease;
      display: flex;
      justify-content: center;
    }
    
    .carousel-slide img {
      width: 180px;
      height: 135px;
      object-fit: contain;
      background-color: white;
      border-radius: 5px;
      padding: 20px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      margin: 0 auto;
      display: block;
    }
    
    .carousel-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 40px;
      height: 40px;
      background-color: #f1f5f9;
      border: none;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
      z-index: 10;
      color: #2c5282;
      font-size: 20px;
      font-weight: bold;
    }
    
    .carousel-arrow.prev {
      left: 0;
    }
    
    .carousel-arrow.next {
      right: 0;
    }
    
    
    

    .quem-confia-title {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
  margin: 60px 0 30px;
  position: relative;
}

.quem-confia-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: #f57c00; /* mesma cor do botão voltar, para manter identidade visual */
  margin: 10px auto 0;
  border-radius: 2px;
}

/*hamburguer menu*/


