/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1.6;
    color: #333;
    background-color: #f0f8f7;
  }
  
  /* Header */

  header {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100; 
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.9); 
    padding: 0.5rem 1rem; 
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1rem;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    margin-right: auto;
}

.logo {
    display: flex;
    align-items: center;
}

.logo__img {
    width: 20%; 
    height: auto;
    max-width: 80px; 
    margin-right: 1em; 
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__title {
    font-size: 2rem; 
    margin: 0;
    line-height: 1.2;
    background-image: linear-gradient(to right, #00e1fd, #0040ff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.logo__slogan {
    font-size: 1rem; 
    margin: 0;
    color: #0d0b21;
    font-weight: bold;
}

/* Media Queries para ajustes finos */
@media (max-width: 768px) {
    .logo__title {
        font-size: 1.2rem; 
    }

    .logo__slogan {
        font-size: 0.7rem; 
    }
    .logo__img{
        width: 15%;
    }
}

@media (max-width: 480px) {
    .logo__title {
        font-size: 1rem; 
    }

    .logo__slogan {
        font-size: 0.6rem; 
        display: none; 
    }
    .logo__img{
        width: 20%;
    }
}
  header .logo h1 {
    font-size: 2rem;
    color: #0d706f;
    margin: 0;
  }
  
  header nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding-right: 30px;
    align-items: center;
  }
  
  header nav ul li {
    position: relative;
  }
  
  header nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 0.5rem 1rem;
    display: inline-block;
  }
  
  header nav ul li.button-rounded {
    background: #296AF1;
    color: #fff;
    border-radius: 50px;
    padding: 0.5rem 1rem;
    text-align: center;
    font-size: 0.9rem;
    cursor: pointer;
  }

  header nav ul li.button-rounded a {
    color: #ffffff;
  }
  
  header nav ul li.button-rounded:hover {
    background: #00e1fd;
    color: #fff;
  }

/* Estilos para o menu hambúrguer */
.menu-toggle {
  display: none; 
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: relative; 
  z-index: 101; 
}

.menu-hamburguer {
  width: 30px;
  height: 3px;
  background-color: #333;
  margin: 6px 0;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border-radius: 2px;
}

.menu-hamburguer::before,
.menu-hamburguer::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: #333;
  border-radius: 2px;
  transition: transform 0.3s ease;
}

.menu-hamburguer::before {
  transform: translateY(-9px);
}

.menu-hamburguer::after {
  transform: translateY(9px);
}

/* Menu para telas pequenas */
@media (max-width: 768px) {
  .menu-toggle {
      display: block; 
  }

  nav ul.menu {
      display: none; 
      flex-direction: column; 
      position: absolute;
      top: 100%; 
      left: 0;
      width: 100%;
      background-color: #fff; 
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      padding: 1rem;
      text-align: center;
  }

  nav ul.menu.ativo {
      display: flex;
  }

  nav ul.menu li {
      margin-bottom: 0.5rem; 
  }

  .menu-toggle.ativo .menu-hamburguer {
      background-color: transparent;
  }

  .menu-toggle.ativo .menu-hamburguer::before {
      transform: rotate(45deg);
  }

  .menu-toggle.ativo .menu-hamburguer::after {
      transform: rotate(-45deg);
  }
}

/*                      */
  
  .container {
    padding-bottom: 0.5rem;
  }
  
  /* Estilos do Slider */
.slider-wrapper {
  position: relative;
  max-width: 100%;
  margin: 0 auto;
}

.slider {
  display: flex;
  height: 850px; 
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  box-shadow: 0 1.5rem 3rem -0.75rem hsla(0, 0%, 0%, 0.25);
  border-radius: 8px;
  -ms-overflow-style: none; 
  scrollbar-width: none; 
}

.slider::-webkit-scrollbar {
  display: none;
}

.slider img {
  flex: 1 0 100%;
  scroll-snap-align: start;
  object-fit: cover;
  height: 100%;
  border-radius: 8px; 
}

/* Navegação do Slider */
.slider-nav {
  display: flex;
  column-gap: 1rem;
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.slider-nav a {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: #fff;
  opacity: 0.75;
  transition: opacity ease 250ms;
}

.slider-nav a:hover {
  opacity: 1;
}

/* Responsividade para telas menores */
@media (max-width: 768px) {
  .slider {
      height: 450px; 
  }

  .slider-nav a {
      width: 0.4rem;
      height: 0.4rem;
  }
}

@media (max-width: 480px) {
  .slider {
      height: 350px; 
  }

  .slider-nav a {
      width: 0.3rem;
      height: 0.3rem;
  }
}


  /* Employees Section */
  .employees-employer {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    background: #fff;
  }
  
  .card {
    background: #f8fdfc;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
  }
  
  .card h3 {
    color: #0d706f;
    margin-bottom: 1rem;
  }
  
  .card button {
    background: #0d706f;
    color: #fff;
    border: none;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
  }
  
  .card button:hover {
    background: #095958;
  }
  
  /* Recognitions Section */
  .recognitions {
    padding: 2rem;
    background: #f0f8f7;
    margin-bottom: 4rem; 

}

.recognitions-title {
    text-align: center;
    margin-bottom: 4rem; 
}

.recognitions-title h2 {
    color: #0d0b21;
}

.recognitions-cards { 
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.recognition-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: calc(50% - 2rem); 
    box-sizing: border-box;
    padding: 1rem 1.5rem;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    color: #333;
    text-align: center;
    overflow: hidden; 
}

.recognition-item img {
    max-width: 80px;
    height: auto;
    margin-bottom: 10px;
}

.recognition-item h3 {
    margin-bottom: 5px;
}

/* Media Query para responsividade */
@media (max-width: 767px) {
  .recognition-item {
      width: 100%; 
  }


/* Serviços cards */

}
.case-studies {
  background: #296AF1;
  color: #fff;
  padding: 2rem;
  text-align: center;
  overflow: hidden; 
}

.case-studies h2 {
  margin-bottom: 1.5rem;
}

.case-studies-cards-container {
  -webkit-overflow-scrolling: touch; 
  padding: 20px;
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden; 
}

.case-studies-cards {
  display: flex;
  gap: 20px; 
  overflow-x: scroll; 
  scroll-behavior: smooth; 
  will-change: scroll-position; 
  -webkit-overflow-scrolling: touch;
}

.case-studies-cards::-webkit-scrollbar {
  display: none; 
}

.card-item {
  flex: 0 0 400px; 
  height: auto;
  background: #fff;
  padding: 26px;
  border-radius: 8px;
  box-shadow: 0px 5px 10px rgba(0, 0, 0, 0.04);
  cursor: grab; 
  text-decoration: none;
  border: 2px solid transparent;
  transition: border 0.5s ease;
  display: flex;
  flex-direction: column; 
  box-sizing: border-box;
  overflow: hidden; 
  position: relative;
}

.card-item:active {
  cursor: grabbing; 
}

.card-item:hover {
  border: 2px solid #296AF1;
}

.card-item img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  object-fit: cover; 
  margin-bottom: 28px;
  display: block;
}

.card-item span {
  display: inline-block;
  background: #F7DFF5;
  padding: 8px 15px;
  font-size: 0.75rem;
  border-radius: 50px;
  font-weight: 600;
  margin-bottom: 15px; 
}

.card-item .eletrica { background-color: #FFC107; color: #000000; }
.card-item .infra { background-color: #9E9E9E; color: #ffffff; }
.card-item .suporte { background-color: #0D47A1; color: #ffffff; }
.card-item .seguranca { background-color: #F44336; color: #ffffff; }

.card-item h3 {
  color: #000;
  font-size: 1.438rem;
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 600;
  word-wrap: break-word; 
}

.card-item p {
  color: #333;
  font-size: 1rem;
  margin-top: 10px;
  margin-bottom: 20px;
  line-height: 1.4;
  word-wrap: break-word; 
}

.card-item .arrow {
  position: absolute;
  bottom: 26px; 
  right: 26px; 
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-35deg);
  height: 40px;
  width: 40px;
  color: #000;
  border: 1px solid #000;
  border-radius: 50%;
}

.card-item:hover .arrow {
  background: #000;
  color: #fff;
}

/* Media Queries */
@media (max-width: 992px) {
  .card-item {
    flex: 0 0 calc(50% - 20px); 
  }
}

@media (max-width: 767px) {
  .card-item {
    flex: 0 0 100%; 
  }
}


/* Quem somos Section */
.quem-somos {
  padding: 2rem;
  background-color: #f0f8f7;
  margin-bottom: 6rem;
}

.quem-somos h2 {
  text-align: center;
  margin-bottom: 4rem;
  color: #0d0b21;
}

.socios-container {
  display: flex;
  flex-wrap: wrap; 
  justify-content: center; 
  gap: 3rem;
  max-width: 1200px; 
  margin: 0 auto;
}

.socio {
  display: flex;
  align-items: flex-start; 
  gap: 20px;
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  flex: 1 0 45%; 
  box-sizing: border-box; 
}

.socio-imagem {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.socio-imagem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.socio-texto {
  flex-grow: 1;
}

.socio-texto h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #000;
}

.socio-texto h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #777;
  font-weight: normal;
}

.socio-texto p {
  color: #333;
  line-height: 1.4;
  word-wrap: break-word;
}

/* Media Query para telas menores (alinhamento vertical) */
@media (max-width: 768px) {
  .socios-container {
      flex-direction: column; 
      align-items: center; 
      gap: 2rem;
  }

  .socio {
      flex-direction: column;
      align-items: center;
      text-align: center;
      flex: 1 0 100%; 
  }

  .socio-imagem {
      margin-bottom: 1rem;
  }
}

/* Media Query para telas médias (três sócios por linha) */
@media (min-width: 992px) {
  .socio {
      flex: 1 0 30%; 
  }
}

/* HOME_CONTATO SECTION*/
.home_contato {
  position: relative;
  background-image: url('../imgs/backgound_contato.jpg');
  background-size: cover;
  background-position: center;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  background-attachment: fixed; 
}

.home_contato-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); 
  display: flex;
  align-items: center;
  justify-content: center;
}

.home_contato-content {
  text-align: center;
  padding: 20px;
}

.home_contato-content h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.home_contato-content p {
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.5;
  max-width: 500px;
  margin: 0 auto 20px auto;
}

.btn-contato {
  display: inline-block;
  background: #007bff; 
  color: #fff;
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn-contato:hover {
  background: #0056b3;
}

    /* casos de sucesso */

    .casos-sucesso {
      padding: 2rem;
      background-color: #f0f8f7;
      color: #0d0b21;
  }
  
  .casos-sucesso h2 {
      text-align: center;
      margin-bottom: 2rem;
  }
  
  .casos-sucesso-container {
      padding: 20px;
      max-width: 1200px;
      margin: 0 auto;
  }
  
  .casos-sucesso-cards {
      display: flex;
      flex-wrap: wrap; 
      justify-content: center; 
      gap: 20px;
  }
  
  .caso-item {
      font-size: 12px;
      line-height: 1.4;
      word-wrap: break-word;
      flex: 1 0 23%; 
      background-color: white;
      color: black;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
      box-sizing: border-box;
      display: flex;
      flex-direction: column;
  }
  
  .caso-item img {
      width: 100%;
      height: 300px; 
      object-fit: cover; 
      aspect-ratio: 16/9;
      object-fit: cover;
      border-radius: 8px 8px 0 0;
      margin-bottom: 1rem;
  }
  
  .caso-item h3 {
      margin-top: 0;
      margin-bottom: 0.5rem;
  }
  
  .caso-item p {
      line-height: 1.4;
      word-wrap: break-word;
  }
  
  /* Media Queries para responsividade */
  @media (max-width: 992px) {
    .caso-item {
        flex: 1 0 calc(50% - 2rem); 
    }
}

@media (max-width: 767px) {
    .caso-item {
        flex: 1 0 100%; 
    }
  }



  /* WHATSAAP BUTTON*/
  .whatsapp-button {
  position: fixed;
  bottom: 50px; 
  right: 20px;
  background-color: #25D366;
  border-radius: 50%;
  padding: 15px;
  z-index: 9999;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  display: flex; 
  justify-content: center; 
  align-items: center; 
}

.whatsapp-button i {
  font-size: 30px; 
  color: white; 
}

@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 30px; 
        right: 10px;
        padding: 10px;
    }
    .whatsapp-button i {
        font-size: 20px;
    }
}

  /* Footer */
 /* Footer */
footer {
  background-color: #296AF1; 
  color: white;
  padding: 3rem 0;
  font-family: 'Poppins', sans-serif;
  margin-top: 6rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px; 
}

.footer-coluna {
  flex: 1 0 220px; 
  text-align: left;
}

.footer-coluna h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.footer-coluna p,
.footer-coluna ul {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-coluna ul {
  list-style: none;
  padding: 0;
}

.footer-coluna li {
  margin-bottom: 0.5rem;
}

.footer-coluna a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-coluna a:hover {
  color: white;
}

.footer-logo img {
  max-width: 250px;
  margin-bottom: 1rem;
}

/* Redes Sociais */
.footer-coluna .social-icons {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: flex-start; 
}

.footer-coluna .social-icons a {
  color: white;
  font-size: 1.5rem;
  transition: transform 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2); 
}

.footer-coluna .social-icons a:hover {
  color: #296AF1;
  background-color: white;
  transform: scale(1.2);
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column; 
      text-align: center; 
  }

  .footer-coluna {
      flex: 1 0 100%;
      margin-bottom: 2rem;
  }

  .footer-coluna .social-icons {
      justify-content: center; 
  }
}

@media (max-width: 480px) {
  .footer-coluna h3 {
      font-size: 1.2rem;
  }

  .footer-coluna p,
  .footer-coluna ul {
      font-size: 0.8rem;
  }

  .footer-coluna .social-icons a {
      font-size: 1.2rem;
      width: 35px;
      height: 35px;
  }
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 2rem;
  font-size: 0.9rem;
}
