/* Carregar a fonte Montserrat do Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
a{
  text-decoration: none !important;
}
/* Definir Montserrat como a fonte principal para o site */
body {
    overflow-x: hidden !important;
  font-family: 'Montserrat', sans-serif !important;
}.primeira-div-video {
  display: block;
  width: 100%;
  height: auto;
}
#arrow-br{
  font-size: 4rem; 
}

.primeira-div-image {
  display: none;
  width: 100%;
  height: 100%;
}

/* On screens smaller than 768px, hide video and show image */
@media screen and (max-width: 768px) {
  .primeira-div-video {
    display: none;
  }

  .primeira-div-image {
    display: block;
  }
}

.parallax-img {
  position: absolute;
  width: 150px;
  transition: transform 0.1s ease-out;
}
.left-image {
  top: 20px;
  left: 20px;
  z-index: 10;
}
.right-image {
  top: 50px;
  right: 20px;
  z-index: 9;
}

::selection {
  background-color: #17d4ff;
  color: black;
}

/* Customizando a barra de rolagem para navegadores Webkit (Chrome, Safari, Edge) */
::-webkit-scrollbar {
  width: 8px; /* Largura da barra de rolagem */
}

::-webkit-scrollbar-track {
  background: #f0f0f0; /* Cor do fundo da barra de rolagem */
}

::-webkit-scrollbar-thumb {
  background: #111111; /* Cor do "polegar" da barra de rolagem */
  border-radius: 0px; /* Deixa os cantos arredondados */
} .services {
  position: relative;
  width: 100%;
  justify-content: center;
  display: block;
  margin: auto;
  overflow: hidden;
}
.services-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.services-slide {
  min-width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.services-slide img {
  width: 100%;
  height: auto;
}
.services-icon {
  position: absolute;
  top: 50px;
  right: 20px;
  cursor: pointer;
  font-size: 24px;
  background: rgba(0, 0, 0, 0.5);
  color: white;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.services-icon:hover::after {
  content: attr(data-text);
  position: absolute;
  top: -30px;
  right: 50%;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 5px;
  border-radius: 5px;
  white-space: nowrap;
  transform: translateX(50%);
}
.services-titles {
  position: absolute;
  top: 20%;
  left: 5%;
  text-align: left;
  width: 600px;
  z-index: 200;
}
.services-titles h2 {
  cursor: pointer;
  padding: 10px;
  color: #000000;
  font-weight: 800;
  background: rgba(255, 255, 255, 0);
  margin-bottom: 5px;
  transition: color 0.3s ease;
}
.services-titles h2.active {
 

}
.services-titles p {
  display: none;
  margin-left: 10%;
  font-size: 17px;
  padding: 10px;
  background: rgba(255, 255, 255, 0);
  opacity: 0;
  transform: translateY(-20px);
  color: #000000;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.services-titles h2.active {
color: #0dcaf0;
}
.services-titles p.active {
  display: block;

  opacity: 1;
  transform: translateY(0);
}

.services-titles h2.hovered {
  color: #0dcaf0;
}
.services-titles h2.fading {
  transition: color 2s ease;
  color: rgb(0, 0, 0);
}
/* O ícone começa invisível */
.services-titles h2 i {
  position: absolute;
  right: 10px; /* Alinha o ícone no canto direito */
  font-size: 24px;
  visibility: hidden; /* Inicialmente invisível */
  opacity: 0;
  transition: transform 0.3s ease, visibility 0s 0.3s, opacity 0.3s ease;
}

/* Quando o h2 está ativo, o ícone se torna visível e gira */
.services-titles h2.active i {
  visibility: visible;
  opacity: 1;
  transform: rotate(360deg); /* Rotaciona o ícone */
  transition: transform 0.3s ease, visibility 0s, opacity 0.3s ease;
}

#customCursor1 {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 3px solid #17d4ff00;
  background-color: #00000000;
  color: white;
  font-size: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  border-radius: 50%;
  pointer-events: none; /* Não interfere na interação */
  display: none; /* Escondido por padrão */
  transition: transform 0.1s ease-out, opacity 0.2s ease-out;
}

.bi-chevron-down {
  transition: transform 0.3s ease;
}

.rotate {
  transform: rotate(180deg);
}
#div-sobre{
  position: relative;
 background-color: #fff;
  background-size: cover;
 color: #000000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
#div-sobre span{
  color: #0dcaf0;

}
#down{
  padding: 100px 200px;
  height: auto;
}
.sobre-div {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #050505;
  color: #000000;
  gap: 30px;
  padding: 200px;
  text-align: left;
}
.sobre-div p{
  color: #9b9b9b;
}
 /* Efeito Parallax */
 .insta-div-background {
  position: relative;
  background: url('../assets/back.png') no-repeat center center fixed;
  background-size: cover;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
 
}

/* Conteúdo da div */
.insta-div-content {
  display: flex;
  justify-content: space-between;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  color: white;
}

/* Div à esquerda */
.insta-div-left {
  display: flex;
  gap: 15px;
  align-items: center;
  width: 50%;
}

.insta-div-left img {
  width: 50px;
  height: auto;
  height: 300px;
  border-radius: 8px;
}

.insta-div-text h1 {
  font-size: 24px;
  font-weight: bold;
  margin: 0;
}

.insta-div-text p {
  font-size: 16px;
  margin-top: 10px;
}

/* Div à direita com posts */
.insta-div-right {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  width: 45%;
}#insta-div-posts img {
   margin-top: -40px;
}


.insta-div-posts img {
  width: 100px;

  height: 100px;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.3s ease;
}

.insta-div-posts img:hover {
  transform: scale(1.1);
}
#separador{
  width: 40px;
  height: 400px;
}

.sobre-imagens {
  display: flex;
  gap: 10px;
}

.sobre-imagens img {
  width: 150px; /* Ajuste conforme necessário */
  height: auto;
}

.sobre-separacao img {
  width: 50px; /* Ajuste conforme necessário */
  height: auto;
}

.sobre-texto {
    max-width: 400px;
    color: #fff;
}
.sobre-texto i{
  font-size: 55px;
  font-weight: 900;
  padding-bottom: 10px;
}.insta-div-text i{
  font-size: 55px;
  font-weight: 900;
  padding-bottom: 10px;
}
.sobre-texto h1{
  margin-top: 20px;
  font-size: 25px;
}
.custom-select {
  position: relative;
  cursor: pointer;
  width: 160px;
}

.selected-option {
display: flex
;
align-items: center;
gap: 5px;
margin-bottom: 10px;
color: #f3f3f3;
padding: 8px;
border: 1px solid #444343;
border-radius: 5px;
background: #000000;
}
.selected-option img {
  width: 20px;
  height: auto;
}

.options-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: #ffffff;
  background: #000000;
  border: 1px solid #444343;
  border-radius: 5px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 10;
}

.options-list.show {
  display: block;
}

.option {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}

.option img {
  width: 20px;
  height: auto;
}

.option:hover {
  background: #111111;
}
#country-code {
  background-image: url('https://flagcdn.com/w40/br.png');
  background-repeat: no-repeat;
  background-position: 5px center;
  background-size: 20px;
  padding-left: 30px;
}


.avaliacoes{
  justify-content:center ;
  align-items: center;
  
  padding: 100px;
  color: #212529;
  background-color: #ffffff;
  text-align: center;
 
}
.avaliacoes-div {
  cursor: pointer;
  justify-content: center;
  display: flex;
  border-bottom: 6px solid transparent; /* Torna a borda invisível */
  border-image: linear-gradient(to right,#ff9ded, #17d4ff, #0078c9) 1; /* Aplica o degradê à borda */
}

.avaliacoes-div img {
  transition: 0.2s;
  width: 700px;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}

.avaliacoes-div img:hover {
  filter: brightness(0.7);
  transform: scale(1.1);  transition: 0.2s;
}

.cs-fullscreen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.cs-fullscreen-image {
  max-width: 90%;
  max-height: 90%;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.cs-fullscreen-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cs-fullscreen-overlay.active .cs-fullscreen-image {
  transform: scale(1);
}

.avaliacoes h2{
  font-weight: 900;
}

  /* Aplicar cores nas fontes do site */
  body {
    color: var(--primary-font-color);
  }
  
  h1, h2, h3, h4, h5, h6 {
    color: var(--accent-font-color); /* Usando a cor de destaque para títulos */
  }
  
  p {
    color: var(--secondary-font-color); /* Cor para parágrafos */
  }
  .primeira-div {
    position: relative;
    height: 100vh;
    margin-top: 0px;
    width: 100%;
}
.div-continua {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%;
  background: #ffffff;
  padding: 10px 0;
}
.div-continua-container {
  display: flex;
  gap: 20px;
  animation: scroll-left 85s linear infinite;
}
.div-continua img{
  width: 150px;
}
.div-continua-item {
  min-width: 200px;
  height: 70px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
@keyframes scroll-left {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.div-continua-container {
  display: flex;
  width: max-content;
  animation: scroll-left 85s linear infinite;
}
.video-div {
  width: 100%;
  padding: 0;
  overflow: hidden; /* Oculta qualquer conteúdo fora da área visível */
  position: relative; /* Garante a posição da div em relação ao conteúdo */
}

.video-div-video {
  width: 100%;
  height: 100%; /* Inicialmente com altura 100% */
}

.video-div video {
  width: 100%;
  height: 100%; /* Inicialmente com altura 100% */
  transition: height 0.5s ease-out; /* Transição suave de altura */
  object-fit: cover; /* Garante que o vídeo cubra a área disponível */
}

.servicos-carrossel-container {
  position: relative;
  width: 80%;
  margin: auto;
  overflow: hidden;
}

.servicos-carrossel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.servicos-div {
  margin-bottom: 50px;
  min-width: 100%;
  flex: 0 0 auto;
  text-align: center;
}
.align-clientes{
  display: inline;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
}
.align-clientes h2{
  color: #fff;
  font-weight: 900;
  margin-bottom: 30px;
}
.align-clientes img{
  width: 100px;
  margin-left: 20px;
  margin-right: 20px;
}
.servicos-div img {
  width: 1000px;
 height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

/* Botões de navegação */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0);
  color: rgb(0, 0, 0);
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
  z-index: 10; /* Garante que fique sobre as imagens */
}

/* Aproximando as setas das imagens */
.prev { left: 10%; } /* Reduzido de 10px para 5px */
.next { right: 10%; } /* Reduzido de 10px para 5px */

/* Ajuste no hover */
.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #0dcaf0;
  transition: 0.2s;
}

.div-titulo{
  font-weight: 800;
  width: 400px;
 
  display: inline;
  justify-content: center;
  text-align: center;
  align-items:center ;
  padding: 50px 10px;
  
}
.div-titulo h2{
  font-size: 44px;
}
.div-titulo p{ font-size: 17px;
font-weight: 200;
}
.div-titulo hr{
  width: 10%;
  justify-content: center;
  display: flex;
  align-items: center;
  text-align: center;
}
.video-div-titulo{
  display: flex;
  justify-content: center;
  text-align: left;
  padding: 50px 10px;
  
}.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px; /* Tamanho do ícone */
  background: rgba(0, 0, 0, 0.5); /* Fundo semitransparente para o botão */
  color: white;
  border: none;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1;
  display: none; /* Ocultar o botão enquanto o vídeo não está pausado */
}

video:paused + .play-button {
  display: block; /* Exibir o botão de play apenas quando o vídeo estiver pausado */
}
.video-div-titulo h2 {
  
  color: #000000;
  font-size: 2.5rem;
}
.video-div hr {
  width: 20%;
  opacity: 1;
  border-radius: 20px;
  border: none;
  height: 3px; /* A altura da linha */
  background: linear-gradient(to right,#ff82e8, #17d4ff,  #0c59ff); /* Degradê de cores */
}#hr {
  width: 10%;
  opacity: 1;
  border-radius: 0px;
  border-top: 2px solid #0b111e;
}
.video-div #hr {
  width: 100%;
  opacity: 1;
  border-radius: 0px;
  border-top: 3px solid #555;
}
  /* Estilo para o vídeo de background */
  .primeira-div-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }

  /* Estilo para o texto */
  .primeira-div-texto {
    position: absolute;
    top: 50%;
    left: 0;
    padding-left: 250px;
    transform: translateY(-50%);
    z-index: 1;
    color: white;
  }
  .primeira-div-texto img{
    width: 70px;
  }

  .primeira-div-texto h1 {
    font-size:5rem;
    font-weight: 700;
}

  .primeira-div-texto h3 {
    font-size: 3rem;
  }

  .primeira-div-texto hr {
    width: 20%;
    opacity: 1;
    border-radius: 20px;
    border: none;
    height: 3px; /* A altura da linha */
    background: linear-gradient(to right,#ff82e8, #17d4ff,  #0c59ff); /* Degradê de cores */
    
}
.services-titles a{
  color: #0dcaf0;
  transition: 0.2s;
}
.services-titles a:hover{
  color: #125866;
  transition: 0.2s;
}
  .primeira-div-texto .texto-interativo {
    font-size: 5rem;
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
  }

  /* Adiciona o cursor piscando */
  .primeira-div-texto .texto-interativo::after {
    content: "I";
    color: #ffffff;
    animation: blink-caret 0.75s step-end infinite;
}

  /* Animação do cursor de digitação */
  @keyframes blink-caret {
    50% {
      opacity: 0;
    }
  }

  /* Estilo para o ícone da seta */
  .primeira-div-icone {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 2;
  }

  /* Estilo para os ícones das redes sociais */
  .primeira-div-icones {
    position: absolute;
    top: 30%;
    right: 20%;
    gap: 30px;
    z-index: 2;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .primeira-div-icones span a{
    writing-mode: vertical-rl;
    text-decoration: none;
    margin: 5px 0;
    color:#ffffff;
    font-weight: 100;
    transition: 0.2s;
  }
  .primeira-div-icones #instagram a:hover{
    color: #17d4ff;
    cursor: pointer;
    transition: 0.2s;
  }
  .primeira-div-icones #linkedin a:hover{
    color: #e83dff;
    cursor: pointer;
    transition: 0.2s;
  }
  .primeira-div-icones #facebook a:hover{
    color: #ff8d22;
    cursor: pointer;
    transition: 0.2s;
  }
  .primeira-div-icone h2{
    font-weight: 900;
    color: #fff;
  }

  .primeira-div-icone h3 {
    color: #ffffff;
}  .primeira-div-icone span {
  color: #0dcaf0;
}
  .cases-div {
    margin-top: -150px;
    padding: 100px;
}
.contato-rapido-div {
  background-color: #000000;
  padding: 100px;
}
.contato-rapido-div-branca {
  background-color: #1d1f1f;
  border-radius: 50px;
  padding: 100px;
  color: #fff;
  align-items: center;
  display: flex
;
  justify-content: center;
}
.contato-rapido-div-esquerda {
  width: 45%;
  margin-right: 100px;
}

.contato-rapido-div-esquerda h2 {
  margin: 0;
  font-size: 45px;
  font-weight: 900;
}.contato-rapido-div-esquerda p {
  margin: 0;
  color: #cfcfcf;
  font-weight:200;
  font-size: 1.5rem;
}
#bandeira{
padding-left: 10px !important;
  border-radius: 50px;
}

.contato-rapido-div-esquerda hr {
  width: 20%;
  opacity: 1;
  border-radius: 20px;
  border: none;
  height: 3px; /* A altura da linha */
  background: linear-gradient(to right,#ff82e8, #17d4ff,  #0c59ff); /* Degradê de cores */
}
.contato-rapido-div-direita input, .contato-rapido-div-direita textarea {
  padding: 10px;
  margin-bottom: 15px;
  width: 100%;
  background-color: #ffffff00;
  border: none;
  color: #fff;
  border-radius: 0px;
  outline: none; /* Garante que nenhum contorno apareça */
  box-shadow: none; /* Evita sombras extras */
  border-bottom: 2px solid #ffffff;
}.contato-rapido-div-direita input {
  padding: 10px;
  margin-bottom: 15px;
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #ffffff;
  outline: none; /* Remove o contorno padrão */
  box-shadow: none; /* Remove qualquer sombra que possa ser aplicada */
  transition: border-bottom 0.3s ease-in-out;
}.contato-rapido-div-direita input:hover {
  border-bottom: 2px solid #000000;
  transition: border-bottom 0.3s ease-in-out;
 }
 .contato-rapido-div-direita input:active {
  border-bottom: 2px solid #000000;
  transition: border-bottom 0.3s ease-in-out;
 } .contato-rapido-div-direita textarea:active {
  border-bottom: 2px solid #000000;
  transition: border-bottom 0.3s ease-in-out;
 }
 .contato-rapido-div-direita textarea:hover {
  border-bottom: 2px solid #000000;
  transition: border-bottom 0.3s ease-in-out;
 }
.contato-rapido-div-direita input::placeholder {
 color: #fff;
}
.contato-rapido-div-direita textarea::placeholder {
  color: #fff;
 }

.contato-rapido-div-direita input:focus {
  border-bottom: 2px solid #ffffff; /* Aumenta a borda inferior e muda para branco */
  outline: none; /* Garante que nenhum contorno apareça */
  box-shadow: none; /* Evita sombras extras */
}


.contato-rapido-div-esquerda .icone {
  font-size: 24px; /* Altere o tamanho do ícone conforme necessário */
}

.contato-rapido-div-direita {
  width: 45%;
}

.contato-rapido-div-direita form {
  display: flex;
  flex-direction: column;
}

.contato-rapido-div-direita label {
  margin-bottom: 5px;
}

.insta-div-text button {
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  border: none;
  width: 100%;
  border-radius: 50px;
  z-index: 998;
  transition: 0.2s;
  cursor: pointer;
}
#logo-contato1{
  width: 150px;
}

#logo-contato{
  margin-left: 100px;
  width: 500px;
}
.insta-div-text button:hover {
  background-color: rgb(255, 255, 255);
  color: #000000;
  transition: 0.2s;
}

.contato-rapido-div-direita button {
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  border: none;
  width: 30%;
  border-radius: 50px;
  transition: 0.2s;
  cursor: pointer;
}
.contato-rapido-div-direita button:hover {
  background-color: rgb(255, 255, 255);
  color: #000000;
  transition: 0.2s;
}
  .cases-div-title h2 {
    text-align: left;
    margin-bottom: 50px;
  }
  .cases-div-title span {
   color: #17d4ff;
  }
  
  .cases-div-content {
    display: flex
;
    flex-wrap: wrap;
    gap: 80px;
    justify-content: center;
   
}
  
  .cases-div-item {
    width: 30%;
    text-align: left;
   
  }
  .cases-div-item h3{
    font-weight: 700;  color: #555;
  }
  
  .cases-div-item img {
    height: 500px;
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
  }
  .cases-div-item img {
    transition: filter 0.3s ease; /* Adiciona transição suave */
    transition: 0.2s;
  }
  
  .cases-div-item img:hover {
    cursor: pointer;
   transform: scale(1.1);
   transition: 0.2s;
  }
  
  
  .cases-div-item h3 {
    font-size: 18px;
    margin-top: 10px;
  }
  .cases-div-title h2{
    font-weight: 700;
  }
  .social-section{
    margin-top: 20px;
    margin-bottom: 20px;
    gap: 30px;
    cursor: pointer;
  }
  .social-section i{
    text-decoration: none;
    color: #f0f0f0;
    margin-right: 20px;
    transition: 0.2s;
  }
  .social-section i:hover{
    color: #17d4ff;
    transition: 0.2s;
  }
  .section .btn-section {
    margin-top: 10px;
    border-radius: 50px;
    padding: 10px 20px;
    border: 2px solid #000000;
    background-color: #ffffff;
    color: rgb(0, 0, 0);
   
    font-weight: 700;
    transition: 0.2s;
    cursor: pointer;
  } .section #blue {
    
    border: 2px solid #47bde4;
   
  }
  .section button:hover {
    transition: 0.2s;
    border: 2px solid #17d4ff;
    color: #fff;
    background-color: #000000;
  }
  .cases-div-item button {
    margin-top: 10px;
    border-radius: 50px;
    padding: 10px 10px;
    background-color: #17d4ff00;
    color: #17d4ff;
    border: 2px solid #17d4ff;
    font-weight: 700;
    width: 110px;
    transition: 0.2s;
    cursor: pointer;
  }
  .align-div{
    margin-left: 20px;
  }

  .cases-div-item button:hover {
    transition: 0.2s;
    color: #fff;
    background-color: #17d4ff;
  }
/* Estilo do botão de rolar para cima */
.up-div {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  border-radius: 5px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-text{
  width: 30%;
}
/* Efeito de entrada */
.up-div.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Efeito de saída com animação mais fluida */
.up-div.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Efeito hover */
.up-div:hover {
  background-color: rgba(0, 0, 0, 0.9);
}
.contato-rapido-div-esquerda i{
  font-size: 55px;
  transition: 0.2s;
  color: #ffffff;
}
.contato-rapido-div-esquerda i:hover{
  font-size: 55px;
  transition: 0.2s;
  color: #272727;
  transform: scale(1.1);
}
  
  /* Estilos gerais do footer */
  .footer {
    background-color: #ffffff;
    color: #212529;
    padding: 40px 20px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
  align-items: self-start;
}
.footer-logo-img {
  width: 100px;
  margin-bottom: 15px;
}
.footer-social i{
  color: #17d4ff;
  transition: 0.2s; 
  font-size: 20px;
}
.footer-social i:hover{
  color: #0f4753;
  font-size: 20px;
  transition: 0.2s;
}
.footer-social a {
  margin: 0 5px;
}
.footer-solutions li a{
  font-size: 13px !important;
}
.footer-ggdigital li a{
  font-size: 13px !important;
}
.footer-social img {
  width: 24px;
  transition: opacity 0.3s;
}

.footer-social img:hover {
  opacity: 0.7;
}

/* Segunda div (Imagem quadrangular) */
.footer-image img {
  width: 120px;
  height: 120px;
  object-fit: cover;
}

/* Terceira div (Título e Parágrafo) */
.footer-text h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.footer-text p {
  color: #555;
}

/* Quarta e quinta div (Soluções e GGDigital) */
.footer-solutions, .footer-ggdigital {
  max-width: 200px;
}

.footer-solutions h2, .footer-ggdigital h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-solutions ul, .footer-ggdigital ul, .footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-solutions li, .footer-ggdigital li {
  margin-bottom: 5px;
}

.footer-solutions a, .footer-ggdigital a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}.footer-solutions a, .footer-links a {
  color: #555;
  text-decoration: none;
  transition: color 0.3s;
}
.footer-solutions h2, .footer-ggdigital h2, .footer-links h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-links li a {
  font-size: 13px !important;
}
.footer-solutions a:hover, .footer-ggdigital a:hover {
  color: #17d4ff;
}.footer-links a:hover{
  color: #17d4ff;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #000000;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  z-index: 9999;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  display: flex
;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.whatsapp-icon {
  width: 24px;
  height: 24px;
}
@keyframes whatsapp-shake {
  0% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  50% { transform: translateX(2px); }
  75% { transform: translateX(-2px); }
  100% { transform: translateX(0); }
}
.whatsapp-btn:hover {
  animation: whatsapp-shake 0.5s;
}

   .container1 {
  width: 100%;
  height: 300vh;
  margin-top: -10px;
  cursor: none;
  position: relative;
}

.section {
  width: 100%;
  height: 60vh;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container1 h3{
  font-weight: 900;
  font-size: 3rem;
}
.container1 .text{
  margin-left: 10%;
}
.azul {
  color: #fff;
  background: #0d1117;
 
}

.verde {
  color: #fff;
  background: #000000;
}
.vermelho {
  color: #fff;
  background: #0d1117;
  z-index: 1;
}

  .slider-container {
    width: 100%;
   
     }
    
  
.slider {
  display: flex;
  width: 300%;
  transition: transform 0.4s ease-in-out;
}

.slide {
  width: 100vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  flex-shrink: 0;
}


.align {
  margin-top: -100px;
  display: flex
;
  justify-content: center;
  align-items: center;
}

.slide .texto {
  width: 50%;
  margin-left: 10%;
  margin-right: 10%;
  padding: 20px;
}
.slide .imagem {
  width: 100%;
  height: 60vh;
  display: flex
;
  justify-content: center;
}
.slide .imagem video {
  margin-right: -30px;
  width: 100%;
 height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.slide .imagem img {
  width: 100%;
  height: 100%;
  margin-right: -30px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
  }

  .footer-solutions, .footer-ggdigital {
      margin-top: 20px;
  }
}

  @media (max-width: 1200px) {
    .navbar-class-container {
        display: none;
    }
    .primeira-div-texto h3 {
      font-size: 1.2rem;
  }
    .primeira-div-icones {
      position: absolute;
      top: 30%;
      right: 12%;
      gap: 30px;
      z-index: 2;
      text-transform: uppercase;
      display: flex
  ;
      flex-direction: column;
      align-items: center;
  }
  .primeira-div-icones span {
    writing-mode: vertical-rl;
    text-decoration: none;
    margin: 5px 0;
    color: #555;
    transition: 0.2s;
    font-size: 12px;
}
#div-sobre {
  position: relative;
  background-color: #ffffff ;
  background-size: cover;
  color: #000000;
  display: grid
;
  align-items: center;
  justify-content: center;
  z-index: -1;
}
#down {
  padding: 40px;
  height: 100%;
}
#logo-contato {
  margin-left: 0px;
  width: 100px;
}
.sobre-separacao{
  display: none;
}
.sobre-imagens img {
  width: 50px;
  height: auto;
}
.insta-div-background {
  position: relative;
  background: url(../assets/back.png) no-repeat center center fixed;
  background-size: cover;
  height: 100%;
  display: flex
;
  align-items: center;
  justify-content: center;
}
.insta-div-content {
  display: grid
;
  justify-content: center;
  justify-content: c;
  margin: 0 auto;
  color: white;
}
.insta-div-right{
  display: none;
}
.insta-div-text button {
  padding: 10px 20px;
  background-color: #0dcaf0;
  color: white;
  border: none;
  width: 100%;
  border-radius: 50px;
  z-index: 998;
  transition: 0.2s;
  cursor: pointer;
}
.sobre-texto i {
  font-size: 55px;
  color: #df70df;
  font-weight: 900;
  padding-bottom: 10px;
}.insta-div-text i {
  color: #0dcaf0;
  font-size: 55px;
  font-weight: 900;
  padding-bottom: 10px;
}
.insta-div-left {
  display: flex
;
padding: 40px;
  gap: 15px;
  align-items: center;
  width: 100%;
}
.insta-div-left img{
  display: none;
}
.sobre-div {
  display: grid
;
  align-items: center;
  justify-content: center;
  background-color: #050505;
  color: #fff;
  gap: 30px;
  padding: 40px;
  text-align: left;
}
  
    .primeira-div-texto {
      position: absolute;
      top: 50%;
      left: 0;
      width: 240px;
      padding-left: 10%;
      transform: translateY(-50%);
      z-index: 1;
      color: white;
  }
  .primeira-div-texto h1 {
    font-size: 1.5rem;
    font-weight: 700;
}
.navbar-class-mobile button {
  background: none;
  color: #fff;
  border: none;
  font-size: 24px;
  cursor: pointer;
}
.navbar-class-mobile-menu {
  position: fixed;
  top: 0;
  right: -250px;
  text-align: left;
  width: 250px;
  padding-left: 50px;
  height: 100vh;
  background: white;
  transition: right 0.3s;
  display: flex
;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 50px;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
}
.primeira-div-texto .texto-interativo {
  font-size: 1.5rem;
  white-space: nowrap;
  overflow: hidden;
  display: inline-block;
}  .div-continua-item {
  min-width: 80px;
  height: 40px;
  background: #fff;
  display: flex
;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}
.div-continua img {
  width: 50px;
}
.cases-div-item {
  width: 100%;
  text-align: left;
}
.cases-div-item img {
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.video-div {
  width: 100%;
 
  padding: 40px;
}
.video-div-titulo h2 {
  font-weight: 700;
  color: #555;
  font-size: 1rem;
}
.cases-div {
  margin-top: 5px;
  padding: 40px;
}
.cases-div-content {
  display: grid
;
  flex-wrap: wrap;
  gap: 70px;
  gap: 20px;
}
.contato-rapido-div {
  background-color: #0b111e;
  padding: 40px;
}
.align-clientes img {
  width: 50px;
  margin-left: 20px;
  margin-right: 20px;
}.container1 {
  overflow: hidden; /* Evita que elementos ultrapassem a tela */
  max-width: 100vw;height: 100%;
}

.slider-container {
  width: 100%;
  overflow: hidden; /* Evita overflow lateral */
}

.slider {
  display: flex;
  width: 300%; /* 3 slides, ajuste conforme necessário */
  transition: transform 0.5s ease-in-out;
}.avaliacoes-div {
  cursor: pointer;
  justify-content: center;
  display: flex
;
  border-bottom: 6px solid transparent;
  border-image: linear-gradient(to right, #ff9ded00, #ff9ded00, #ff9ded00) 1;
}
.dropdown {
  margin-top: 20px;
  background-color: #333;
  width: 300px;
  max-width: 500px;
  border-radius: 8px;
  padding: 10px;
  max-height: 300px;
  overflow-y: auto;
}

.slide {
  min-width: 100vw; /* Garante que cada slide ocupe toda a tela */
  box-sizing: border-box; /* Previne margens extras */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.imagem img,
.imagem video {
  max-width: 100%;
  height: auto;
  display: block;
}

.align-clientes h2 {
  color: #fff;
  font-weight: 900;
  font-size: 17px;
  margin-bottom: 10px;
}
.contato-rapido-div-branca {
  
  border-radius: 50px;
  padding: 40px;
  color: #fff;
  align-items: center;
 display: grid;
  justify-content: center;
}
.contato-rapido-div-esquerda {
  width: 100%;
  margin-right: 0px;
}#arrow-br{
  font-size: 2rem; 
}

.contato-rapido-div-esquerda p {
  margin: 0;
  color: #fff;
  font-weight: 600;
  font-size: 1.0rem;
}
.contato-rapido-div-direita {
  width: 100%;
}
.contato-rapido-div-direita button {
  padding: 10px 20px;
  background-color: #000000;
  color: white;
  border: none;
  width: 100%;
  border-radius: 5px;
  transition: 0.2s;
  cursor: pointer;
}
.slider {
  display: flex;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}

.contato-rapido-div-esquerda i {
  font-size: 25px;
  transition: 0.2s;
  color: #ffffff;
}
.contato-rapido-div-direita textarea {
  padding: 10px;
  margin-bottom: 15px;
  width: 100%;
  background-color: #ffffff00;
  border: none;
  color: #fff;
  height: 150px;
  border-radius: px;
  outline: none;
  box-shadow: none;
  border-bottom: 2px solid #ffffff;
}
.avaliacoes {
  justify-content: center;
  align-items: center;
  padding: 40px;
  color: #212529;
  background-color: #ffffff;
  text-align: center;
  border-bottom: 6px solid #17d4ff;
}.footer-links {
  display: flex
;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  width: 100%;
  align-items: center;
}
.footer-logo {
  display: flex
;
  flex-direction: column;
  align-items: center;
  text-align: left;
  padding: 20px;
  width: 100%;
  align-items: center;
}.contato-rapido-div-esquerda h2 {
  margin: 0;
  font-size: 25px;
  font-weight: 900;
}
.footer-logo {
  display: flex
;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  width: 100%;
  align-items: center;
}
.div-titulo p {

  padding: 20px;
}
.div-titulo h2 {
  font-size: 24px;
  padding: 20px;
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #25d366;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  z-index: 9999;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  display: flex
;
  align-items: center;
  gap: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}
.footer-solutions, .footer-ggdigital {
  margin-top: 40px;
  width: 100%;
  padding: 20px;
  text-align: center;
  align-items: center;
  max-width: 100%;
}
.avaliacoes-div img {
  width: 100%;
  transition: transform 0.3s ease, filter 0.3s ease;
  cursor: pointer;
}
.footer-text {
  width: 100%;
  padding: 20px;
  text-align: center;
}
body {
  overflow-x: hidden !important;
}

.avaliacoes-div {
    cursor: pointer;
    justify-content: center;
    display: inline;
}
.section .btn-section {
  margin-top: 10px;
  border-radius: 50px;
  font-size: 10px;
  padding: 10px 20px;
  border: 2px solid #000000;
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  font-weight: 700;
  transition: 0.2s;
  cursor: pointer;
}
.container1 h3 {
  font-weight: 900;
  font-size: 1.4rem;
}
.section {
  width: 100%;
  height: 700px;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}.slide {
  width: 100vw;
  display: inline;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  flex-shrink: 0;
}
.slide .texto {
  width: 100%;
  margin-left: 0%;
  margin-right: 0%;
  padding: 20px;
}
.slide .imagem {
  width: 100%;
  height: 200px;
  display: flex
;
  justify-content: center;
}    .services-titles {
  position: absolute;
  top: 35%;
  left: 5%;
  text-align: left;
  width: 40%;
  z-index: 200;
}
.align {
  margin-top: -10px;
  display: flex
;
  justify-content: center;
  align-items: center;
}
.services-titles p {
  display: none;
  margin-left: 0%;
  font-size: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, 0);
  opacity: 0;
  transform: translateY(-20px);
  color: #000000;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.services {
  position: relative;
  width: 100%;
  justify-content: center;
  display: block;
  margin: auto;
  height: 800px;
  overflow: hidden;
}

}@media (max-width: 900px) {
  .services-titles {
      position: absolute;
      top: 35%;
      left: 5%;
      text-align: left;
      width: 80%;
      z-index: 200;
  }
}