/* styles.css */
@font-face {
  font-family: 'Montserrat'; /* Name your font family */
  src: url('./fonts/montserrat/Montserrat-VariableFont_wght.ttf'); /* Locate the .ttf file within your directory*/
}

@font-face {
  font-family: 'Lexend';
  src: url('./fonts/lexend/static/Lexend-ExtraLight.ttf');
  src: url('./fonts/lexend/static/Lexend-Light.ttf');
}

/* Regras gerais */
html{
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif !important;
  margin: 0;
  padding: 0;
  color: #f3f3f3;
  background-color: #0a0a0a;
  line-height: 1.6;
}

.oculto{
  display: none;
}

p{
  font-family: 'Lexend', sans-serif !important;
}

button {
  font-family: 'Montserrat';
}

body.light-mode {
  color: #333333; /* Texto mais escuro */
  background-color: #f4f4f4; /* Fundo claro */
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 50px;
  background-color: #101010fb;
  border-bottom: 3px solid #0c55fa;
  position: fixed;
  width: 100%;
  z-index: 10;
}

header a{
  text-decoration: none;
  color: #f3f3f3;
}

body.light-mode header a{
  color: #333333;
}

body.light-mode header{
  background-color: #f4f4f4f5;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 50px;
  margin-left: 100px;
  margin-bottom: 0;
  margin-top: 0;
}

nav li {
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  color: #f3f3f3;
  border-bottom: solid 5px #101010fb;
  padding: 30px 0px;
}

body.light-mode nav li {
  color: #333333;
  border-bottom: solid 5px #f4f4f4cb; 
}

nav li a{
  padding: 20px 15px 20px 15px;
}

nav li:hover{
  border-bottom: solid 5px #0c55fa;
}

body.light-mode nav li:hover{
  border-bottom: solid 5px #0c55fa;
}

.right-section {
  display: flex;
  align-items: center;
  margin-right: 200px;
}

/* Esconde o menu hamburguer em telas grandes */
.menu-toggle {
  display: none;
}

#responsive-menu{
  display: none;
}

/* Menu hamburguer para telas pequenas */
@media (max-width: 850px) {
  .menu-toggle {
    display: block;
    font-size: 28px;
    color: #f3f3f3;
    cursor: pointer;
    margin-right: 10px;
    top: 20px; /* Distância do topo */
    right: 20px; /* Distância da direita */
    z-index: 1100; /* Garantir que fique acima do menu */
  }

  body.light-mode .menu-toggle{
    color: #101010;
  }

  /* Altera o ícone do botão ao abrir o menu */
  .menu-toggle.open {
    transform: rotate(90deg); /* Roda o ícone para indicar "fechar" */
  }

 /* Ajuste de navegação para telas pequenas */
 nav ul {
  display: flex;
  flex-direction: column;
  background-color: #101010;
  position: fixed; /* Fixado na lateral */
  top: 0;
  left: -100%; /* Fora da tela inicialmente */
  width: 50%; /* Define a largura do menu aberto */
  height: 100%; /* Ocupa toda a altura da tela */
  padding-top: 80px; /* Espaço para o header */
  margin: 0;
  text-align: left;
  transition: left 0.3s ease; /* Suave na abertura */
  z-index: 1000; /* Mantém o menu abaixo do botão */
  border: solid 1px #0c0c0c;
}

body.light-mode nav ul{
  background-color: #f4f4f4;
  border: solid 1px #dfdfdf;
}

  nav ul.open {
    left: 0;
  }

  nav li {
    padding: 15px 20px;
    border-bottom: 1px solid #101010;
  }

  nav li a {
    display: block;
    color: #f3f3f3;
    text-align: left;
    padding: 0;
  }

  body.light-mode nav li a {
    color: #333333;
  }

  .right-section {
    margin-right: 0;
  }

  /* Responsividade para bandeiras de idioma */
  .language-switch {
    display: flex;
    justify-content: center;
  }

  .language-switch img {
    width: 20px; /* Reduzindo o tamanho das bandeiras */
    margin-left: 5px;
  }

  #whatsappButton {
    display: none;
  }

  #scrollButton {
    display: none;
  }
}

.theme-switch {
  display: inline-block;
  width: 45px;
  height: 20px;
  background-color: #f3f3f3;
  border-radius: 15px;
  position: relative;
  margin-right: 10px;
  transition: background-color 0.4s;
}

body.light-mode .theme-switch{
  background-color: #101010;
}

.theme-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.theme-switch label {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: #000;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.4s;
}

body.light-mode .theme-switch label {
  background-color: #f4f4f4;
}

.theme-switch input:checked + label {
  transform: translateX(25px);
}

.language-switch {
  height: 20px;
}

.language-switch img {
  width: 30px;
  height: 20px;
  margin-left: 8px;
  cursor: pointer;
  border-radius: 2px;
}

/* Estilo do botão flutuante */
#scrollButton {
  position: fixed;
  bottom: 35%;
  right: 20px;
  z-index: 1000;
  background-color: #f4f4f4;
  border: solid 1px #cecece;
  border-radius: 50%; /* Garante que o botão seja circular */
  width: 50px; /* Define a largura */
  height: 50px; /* Define a altura */
  font-size: 24px; /* Aumenta o tamanho do ícone */
  cursor: pointer;
  display: none; /* Começa escondido */
  transition: background-color 0.3s, transform 0.3s ease-in-out;
  align-items: center;
}

#scrollButton img{
  width: 100%;
  height: auto;
  object-fit: contain;
  margin-top: 5px;
  border-radius: 50px;
}

/* Estilo ao passar o mouse no botão */
#scrollButton:hover {
  transform: scale(1.2);
}

/* Estilo do botão flutuante */
#whatsappButton {
  position: fixed;
  bottom: 43%;
  right: 20px;
  z-index: 1000;
  background-color: #f4f4f4;
  border: solid 1px #cecece;
  border-radius: 50%; /* Garante que o botão seja circular */
  width: 50px; /* Define a largura */
  height: 50px; /* Define a altura */
  font-size: 24px; /* Aumenta o tamanho do ícone */
  cursor: pointer;
  transition: background-color 0.3s, transform 0.3s ease-in-out;
  background-image: url('assets/whatsapp-logo.webp');
  background-size: cover;
  background-position: center;
}

/* Estilo ao passar o mouse no botão */
#whatsappButton:hover {
  transform: scale(1.2);
}

@media (max-width: 1310px) {
  nav li{
    font-size: 18px;
  }

  nav ul {
    margin-left: auto;
    gap: 15px;
  }

  .right-section {
    margin-right: 80px;
    margin-left: auto;
  }

  #whatsappButton {
    display: none;
  }

  #scrollButton {
    display: none;
  }
}

/* Hero section */
.hero {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 80px 0px 80px 0px;
  background-image: radial-gradient(#0c4ad6, #101010 90%);
  background-size: auto 1000px; /* Define o tamanho do gradiente */
  background-position: center center; /* Centraliza o gradiente */
  background-repeat: no-repeat; /* Evita que o gradiente se repita */
  text-align: start;
  height: 500px;
}

body.light-mode .hero{
  background-image: radial-gradient(#bdd3ff, #d9dbff 90%);
}

.hero-first-section{
  text-align: start;
  flex-basis: 55%;
  padding-left: 200px;
  margin-top: 120px;
}

.hero-content {
  max-width: 800px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 20px 0;
  color: #f3f3f3;
  line-height: 1.3;
}

body.light-mode .hero h1{
  color: #333333;
}

.hero p {
  font-size: 18px;
  margin: 0 0 30px 0;
  color: #dddddd;
}

body.light-mode .hero p{
  color: #333333;
}

.hero button {
    padding: 15px 30px;
    background-color: #1a1a1a;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: #f3f3f3;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
    display: inline-flex;
    gap: 15px;
    align-items: center;
}

@media (max-width: 1620px) {
  .rocket-image img {
    width: 130% !important;
  }

  .rocket-image video {
    width: 130% !important;
  }
}

@media (max-width: 1310px) {
  .hero {
    overflow: hidden;
    padding: 80px 0px 0px 0px;
  }

  .hero-first-section {
      padding-left: 0;
      margin-bottom: 20px;
      margin-left: 60px;
  }

  .hero h1 {
      font-size: 26px;
  }

  .hero p {
      font-size: 13px;
  }

  .rocket-image img {
    width: 110% !important;
    margin-top: 60px;
    display: none;
  }

  .rocket-image video {
    width: 110% !important;
    margin-top: 60px;
  }

  .rocket-image {
    flex-basis: 60% !important;
    overflow: hidden;
    height: auto !important;
  }

  .hero button {
    padding: 10px 20px;
  }
}

@media (max-width: 1025px) {
  .hero {
    overflow: hidden;
    padding: 30px 0px 0px 0px;
  }

  .rocket-image {
    flex-basis: 60% !important;
    overflow: hidden;
    height: auto !important;
    margin-bottom: -50px;
  }
}

@media (max-width: 820px) {
  .hero {
      flex-direction: column;
      text-align: center;
      height: auto;
      background-size: auto;
  }

  .hero-first-section {
      padding-left: 0;
      text-align: center;
      margin-left: 0;
      padding: 40px 40px 0px 40px;
      margin-top: 20px;
  }

  .hero h1 {
      font-size: 24px;
  }

  .hero p {
      font-size: 14px;
  }

  .rocket-image img {
      width: 80% !important;
      margin: 0 auto;
      margin-top: 0 !important;
      margin-left: 50px;
  }

  .rocket-image video {
    width: 80% !important;
    margin: 0 auto;
    margin-top: 0 !important;
    margin-left: 50px;
}

  .rocket-image {
    margin: -10px;
    padding: 0;
  }

  .hero button {
      padding: 10px 20px;
      font-size: 22px;
  }
}

@media (max-width: 450px) {
  .rocket-image img {
    width: 70% !important;
  }

  .rocket-image video {
    width: 70% !important;
  }
}

body.light-mode .hero button{
  background-color: #0c4ad6;
  color: #f3f3f3;
}

body.light-mode .hero button:hover{
  background-color: #2f93ff;
}

.hero button:hover {
  background-color: #2f93ff;
}

.hero-first-section img {
  width: 100%;
  max-width: 160px;
  margin-bottom: 40px;
}

@media (max-width: 1000px) {
  #rocket-video {
      display: none;
  }

  #rocket-image {
      display: block;
  }
}

@media (min-width: 1001px) {
  #rocket-video {
      display: block;
  }

  #rocket-image {
      display: none;
  }
}

.rocket-image img {
  width: 100%;
  margin-top: 60px;
}

.rocket-image video {
  width: 100%;
  margin-top: 100px;
}

.rocket-image {
  flex-basis: 45%;
  overflow: hidden;
  height: 660px;
}

/* Sections */
.services, .testimonials{
  padding: 60px 20px;
  background-color: #101010;
  text-align: center;
}

body.light-mode .services, body.light-mode .testimonials{
  background-color: #f4f4f4;
}

/* Advantages Presentation Section */
.advantages-presentation {
  overflow: hidden; /* Esconde o conteúdo fora da área visível */
  background-color: #101010;
}

body.light-mode .advantages-presentation{
  background-color: #d2d2d2;
}

.advantages-presentation-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}

.advantages-presentation-list {
  display: flex;
  gap: 60px; /* Espaçamento entre os itens */
  animation: scroll 30s linear infinite; /* Animação de rolagem contínua */
  width: max-content;
}

.advantages-presentation-list p {
  white-space: nowrap; /* Garante que o texto não quebre em múltiplas linhas */
  font-size: 22px;
  padding: 0;
  margin: 10px;
  font-weight: 300;
}

/* Duplicar os itens visualmente para criar efeito contínuo */
.advantages-presentation-list::after {
  content: attr(data-items);
  display: flex;
}

/* Animação de rolagem horizontal contínua */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Pausa a animação quando o mouse está sobre a lista */
.advantages-presentation-list:hover {
  animation-play-state: paused;
}

@media (max-width: 1310px) {
  .advantages-presentation-list h3 {
    font-size: 18px;
  }
}

/* Services Section */

.services h2, .testimonials h2{
  margin-bottom: 40px;
  font-size: 32px;
}

.services {
  text-align: center;
  padding: 40px 20px;
  background-color: #141414;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 40px;
  margin-left: 10%; /* Ajustado para ficar responsivo */
  margin-right: 10%; /* Ajustado para ficar responsivo */
}

.service-item {
  flex-basis: calc(33.333% - 30px);
  max-width: 300px;
  height: 400px;
  perspective: 1000px;
  background-color: #1c1c1c;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  border-bottom: 4px solid #0b55f9;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

.service-btn-space{
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Animações de saída */
.service-item.exit-left {
  transform: translateX(-100%);
}
.service-item.exit-right {
  transform: translateX(100%);
}


/* Animações de entrada (aparecendo do fundo) */
.service-item.enter-left, 
.service-item.enter-right {
  opacity: 0; /* Invisível inicialmente */
  transform: scale(0.8) translateZ(-50px);
}

.animating {
  pointer-events: none; /* Desabilita interações durante a animação */
}

/* Estilos para as setas */
.carousel-btn {
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 10px;
  cursor: pointer;
  font-size: 24px;
  border-radius: 25px;
}

/* Setas à esquerda */
.prev-btn {
  left: 10px; /* Posiciona à esquerda do carrossel */
}

/* Setas à direita */
.next-btn {
  right: 10px; /* Posiciona à direita do carrossel */
}

body.light-mode .service-item {
  background-color: #bdd3ff;
}

.service-item:hover:not(.animating) {
  transition: transform 0.2s ease;
  transform: translateY(-3px) scale(1.01);
  cursor: pointer;
}

.service-item-title {
  font-weight: bold;
  font-size: 22px;
  margin: 0s;
}

.service-item p {
  margin: 5px 0px 15px 0px;
}

body.light-mode .service-item-title {
  color: #0b55f9;
}

@media (max-width: 1450px) {
  .service-item {
    flex-basis: calc(33.333% - 30px);
    max-width: 250px;
  }
  .service-list {
    margin-left: 0px; /* Ajustado para ficar responsivo */
    margin-right: 0px; /* Ajustado para ficar responsivo */
  }
}

@media (max-width: 1024px) {
  .service-item {
    flex-basis: calc(50% - 20px); /* Ajusta para dois itens por linha */
    max-width: 100%;
  }

  .carousel-btn{
    display: none;
  }
}

/* Para dispositivos móveis */
@media (max-width: 800px) {
  .service-item {
    flex-basis: 70%; /* Um item por linha */
    max-width: 100%;
    padding: 20px;
    margin: 0;
  }

  .service-list {
    margin-left: 10px;
    margin-right: 10px;
  }
}

@media (max-width: 480px) {
  
  .service-list {
    gap: 10px;
  }

  .service-item {
    flex-basis: 100%;
    padding: 20px 10px; /* Reduz o padding em telas muito pequenas */
    height: auto; /* Permite que o tamanho do card seja ajustado ao conteúdo */
  }

  .service-item-title {
    font-size: 18px; /* Reduz o tamanho do título */
  }
}

.service-item-icon {
  width: 50px;
  height: 50px;
  background-color: #0c55fa;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
}

.service-item-icon img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 5px;
}

/* Advantages Section */
.advantages {
  display: flex;
  flex-direction: column;
  padding: 30px;
  /* padding-bottom: 70px; */
  background-color: #0c4ad6;
  text-align: center;
  width: auto;
  margin: 0 auto;
}

body.light-mode .advantages {
  background-color: #bdd3ff;
}

.advantage {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-basis: 26%;
  padding-left: 110px;
  margin-right: 110px;
}

.advantage img {
  width: 36%;
  height: auto;
  border-radius: 10px;
  display: grid;
  margin-top: 40px;
  margin-right: 50px;
}

.advantages-title {
  width: 100%;
  text-align: center !important;
}

.advantages h3 {
  font-size: 32px;
  max-width: 610px;
  line-height: normal;
  margin-top: 5px;
  margin-bottom: 40px;
  margin-bottom: 40px;
  text-align: start;
}

.advantages button {
  padding: 15px 30px;
  background-color: #1a1a1a;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #f3f3f3;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s;
  display: inline-flex;
  gap: 15px;
  align-items: center;
  margin-top: 30px;
}

body.light-mode .advantage button{
  background-color: #0c4ad6;
  color: #f3f3f3;
}

body.light-mode .advantage button:hover{
  background-color: #2f93ff;
}

.detail-item {
  padding-right: 60px;
}

.advantage button:hover {
  background-color: #2f93ff;
}

.advantage-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  text-align: start;
  margin-bottom: 20px;
}

.detail-item h4 {
  font-size: 24px; /* Tamanho ajustado para os títulos */
  margin: 0;
  font-weight: 600;
}

.detail-item p {
  font-size: 16px;
  font-weight: 300 !important;
  margin-top: 5px;
}

@media (max-width: 1500px) {
  .detail-item h4 {
    font-size: 18px; /* Ajuste o tamanho do título */
  }

  .detail-item p {
    font-size: 14px; /* Ajuste o tamanho do texto */
  }
}

/* Responsividade para telas menores (Tablets e smartphones) */
@media (max-width: 1180px) {
  .advantages {
    flex-direction: column; /* Organiza em coluna para melhor visualização */
    align-items: center;
    background-size: auto;
  }

  .advantage {
    padding-left: 0;
    margin-right: 0;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .advantage img {
    max-width: 60%;
    width: 80%;
    margin: 0 auto;
  }

  .advantage h3 {
    font-size: 24px; /* Reduz o tamanho do título em telas menores */
  }

  .advantage button {
    display: none;
  }

  .advantage-details {
    display: none;
  }

  .detail-item {
    padding-right: 0;
    margin-bottom: 20px;
    margin-left: 60px;
    margin-right: 60px;
  }

}

/* Responsividade para telas muito pequenas (Smartphones) */
@media (max-width: 600px) {
  .advantage h3 {
    font-size: 20px; /* Ajuste adicional do título */
  }

  .advantage button {
    padding: 10px 20px;
    font-size: 16px;
  }
}

/* Second Information Section */

.second-info {
  text-align: center;
  padding: 80px 150px;
  background-color: #141414;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

body.light-mode .second-info{
  background-color: #f4f4f4;
}

.second-info p{
  font-size: 16px;
}

.second-info h2{
  line-height: normal;
  font-size: 32px;
  margin: 0;
}

.second-info-first {
  display: flex;
  flex-direction: column;
  align-items: start;
  flex-basis: 50%; /* Define o tamanho da div da imagem */
  text-align: start;
  margin: 30px 0px;
  justify-content: center;
}

.second-info-first button {
  padding: 15px 30px;
  background-color: #0056b3;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #f3f3f3;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-top: 20px;
  display: inline-flex;
  gap: 15px;
  align-items: center;
}

body.light-mode .second-info-first button{
  background-color: #0c4ad6;
  color: #f3f3f3;
}

body.light-mode .second-info-first button:hover{
  background-color: #2f93ff;
}

.second-info-image {
  flex-basis: 30%;
  margin-left: 100px;
}

.second-info-image img{
  width: 100%;
  height: auto;
  max-width: 500px;
}

.second-info-first button:hover {
  background-color: #2f93ff;;
}

.responsive-button button{
  display: none;
  padding: 15px 30px;
  background-color: #0056b3;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #f3f3f3;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-top: 20px;
  gap: 15px;
  align-items: center;
}

/* Responsividade para telas menores (Tablets e smartphones) */
@media (max-width: 1400px) {
  .second-info {
    flex-direction: column; /* Organiza o layout em coluna */
    padding: 30px;
    text-align: center;
  }

  .second-info-first {
    flex-basis: 100%;
    align-items: center; /* Centraliza o conteúdo */
    text-align: center;
    padding-top: 50px;
    margin-left: 40px;
    margin-right: 40px;
  }

  .second-info-first h2 {
    font-size: 28px; /* Ajusta o tamanho do título para telas menores */
  }

  .second-info-first p {
    font-size: 16px; /* Aumenta a fonte do texto para melhor legibilidade */
  }

  .second-info-image {
    flex-basis: 100%;
    margin-left: 0;
    padding-top: 20px;
  }

  .second-info-image img {
    width: 80%; /* Reduz a imagem em telas menores */
    max-width: 400px; /* Limita o tamanho máximo da imagem */
    margin: 0 auto;
  }

  .original-button button {
    display: none;
  }

  .responsive-button button{
    display: inline-flex;   
    margin-top: 60px;
    font-size: 22px;
  }

  .responsive-button {
    text-decoration: none !important;
    margin: auto !important;
  }
}

/* Responsividade para telas muito pequenas (Smartphones) */
@media (max-width: 600px) {
  .second-info {
    padding: 20px;
  }

  .second-info-first h2 {
    font-size: 22px; /* Ajusta ainda mais o tamanho do título */
  }

  .second-info-first p {
    font-size: 14px; /* Ajusta o tamanho do texto */
  }

  .second-info-image img {
    width: 100%; /* Faz a imagem ocupar toda a largura disponível */
    max-width: 350px; /* Ajusta o tamanho máximo da imagem */
  }
}

/* Solutions Section */

.solutions {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Distribui o espaço adequadamente */
  align-items: center;
  padding: 100px;
  background-color: #0c4ad6;
  background-size: auto 1000px; /* Define o tamanho do gradiente */
  background-position: center center; /* Centraliza o gradiente */
  background-repeat: no-repeat; /* Evita que o gradiente se repita */
  text-align: center;
  width: auto;
  margin: 0 auto; /* Centraliza o conteúdo */
}

body.light-mode .solutions {
  background-color: #bdd3ff;
}

.solutions h2{
  line-height: normal;
  font-size: 32px;
  margin: 0;
}

.landings-list {
  display: flex;
  flex-direction: row;
  padding: 50px 50px 70px 50px;
  gap: 30px;
  flex-wrap: wrap; /* Permite que as imagens quebrem linha em telas menores */
  justify-content: center; /* Centraliza as imagens */
}

.landings-list img{
  width: 153px;
  height: auto;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  border-color: transparent;
  box-shadow: 5px 10px 5px 5px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease; /* Suavidade da animação */
}

.landings-list img:hover {
  transform: translateY(-10px) scale(1.05);
  cursor: pointer;
}

.solutions-title {
  max-width: 480px;
}

.solutions button {
  padding: 15px 30px;
  background-color: #1a1a1a;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #f3f3f3;
  font-size: 19px;
  font-weight: bold;
  transition: background-color 0.3s;
  margin-top: 20px 15px;
  display: inline-flex;
  gap: 15px;
  align-items: center;
}

.solutions button:hover {
  background-color: #2f93ff;
}

body.light-mode .solutions button{
  background-color: #0c4ad6;
  color: #f3f3f3;
}

body.light-mode .solutions button:hover{
  background-color: #2f93ff;
}

/* Responsividade para telas menores (Tablets e smartphones) */
@media (max-width: 1400px) {
  .solutions {
    padding: 50px 20px; /* Reduz o padding em telas menores */
  }

  .solutions h2 {
    font-size: 28px; /* Reduz o tamanho do título para tablets */
  }

  .landings-list {
    gap: 20px; /* Reduz o espaçamento entre as imagens */
  }

  .landings-list img {
    max-width: 150px; /* Reduz o tamanho das imagens em tablets */
    width: 150px;
  }

  .solutions button {
    font-size: 22px;
  }

  .solutions-title {
    max-width: 100%; /* Expande a largura do título em telas menores */
  }
}

/* Responsividade para telas muito pequenas (Smartphones) */
@media (max-width: 600px) {
  .solutions {
    padding: 30px 10px; /* Reduz ainda mais o padding */
  }

  .solutions h2 {
    font-size: 22px; /* Ajuste do título para smartphones */
  }

  .landings-list img {
    max-width: 120px; /* Reduz o tamanho das imagens em smartphones */
    width: 120px;
  }

  .landings-list {
    gap: 15px; /* Reduz o espaçamento entre as imagens */
  }
}

/* Testimonials section */
.testimonials {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 50px;
  background-color: #141414;
  text-align: center;
  width: auto;
}

body.light-mode .services, body.light-mode .testimonials-carousel {
  background-color: #f4f4f4;
}

.testimonials-title {
  max-width: 480px;
  padding-bottom: 14px;
  font-size: 20px;
  text-align: center; /* Centraliza o título */
}

.testimonial-cards {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  transition: transform 0.5s ease;
  margin: 20px;
}

.testimonial {
  background-color: #fff;
  color: #333;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.5s ease, opacity 0.5s ease;
  cursor: pointer;
  flex: 1 1 calc(25% - 40px); /* 25% de largura com margem ajustada */
  max-width: 400px; /* Define uma largura máxima */
  text-align: start;
  padding: 25px;
  box-sizing: border-box; /* Inclui padding no cálculo da largura */
}

/* Animação ao passar o mouse */
.testimonial:hover {
  transform: translateY(-10px); /* Move o card 10px para cima */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Aumenta a sombra para dar mais profundidade */
}

.testimonial img {
  border-radius: 50%;
  width: 60px;
  margin-bottom: 10px;
}

.testimonials p{
  color: rgb(69, 69, 69);
  line-height: 20px;
  font-size: 14px;
}

.testimonial h3 {
  margin-top: 40px;
  margin-bottom: 0;
  color: #0c55fa;
}

.company-name {
  text-transform: uppercase;
  margin: 0;
}

.testimonials h2{
  line-height: normal;
  font-size: 32px;
  margin: 0;
}

@media(max-width: 1250px) {
  .testimonial {
    flex: none;
  }
}

/* Responsividade para telas menores (Tablets e smartphones) */
@media (max-width: 1400px) {
  .testimonials {
    padding: 50px 20px; /* Reduz o padding em telas menores */
  }

  .testimonials h2 {
    font-size: 28px; /* Reduz o tamanho do título para tablets */
  }
}

/* Responsividade para telas muito pequenas (Smartphones) */
@media (max-width: 600px) {
  .testimonials {
    padding: 30px 10px; /* Reduz ainda mais o padding */
  }

  .testimonial {
    width: 100%;
    margin: auto;
    font-size: 10px;
  }

  .testimonials h2 {
    font-size: 22px; /* Ajuste do título para smartphones */
  }

  .testimonials h3 {
    margin-top: 0;
  }

  .testimonials p {
    font-size: 12px;
  }

  .testimonial img {
    width: 50px;
    margin-bottom: 10px;
  }
}

/* Contact section*/

.contact-section {
  align-items: center;
  padding: 60px;
  background-color: #0c4ad6;
  background-size: auto 1000px; /* Define o tamanho do gradiente */
  background-position: center center; /* Centraliza o gradiente */
  background-repeat: no-repeat; /* Evita que o gradiente se repita */
  text-align: center;
  width: auto;
  margin: 0 auto; /* Centraliza o conteúdo */
  font-family: 'Lexend', sans-serif !important;
}

body.light-mode .contact-section {
  background-color: #bdd3ff;
}

.contact-content {
  margin: auto;
  display: flex;
  flex-direction: row;
  width: 80%;
}

.contact-section-title {
  font-size: 45px;
  margin: 0;
  margin-bottom: 35px;
  text-align: start;
}

.contact-section-description {
  text-align: start;
  font-size: 16px;
  width: 400px;
  margin-bottom: 40px;
}

.contact-with-icon {
  display: flex;
  flex-flow: row;
}

.contact-with-icon img{
  width: 25px;
}

.label-icon-contact {
  margin: 0px 10px 25px 20px;
  font-size: 16px;
}

.separator-div {
  width: 0.5%;
  height: 450px;
  margin: 30px 50px;
  background-color: #fff;
  border-radius: 10px;
}

.principal-form-contact {
  width: 100%;
}

.principal-form-contact label{
  margin-bottom: 5px;
  text-align: left;
}

.grid {
  display: flex;
  align-content: stretch;
}

.form-group{
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 10px;
}

.form-group input{
  padding: 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ccc;
}

.form-group label{
  font-size: 16px;
  max-width: 320px;
}

textarea {
  resize: none;
  padding: 10px;
  border: 1px solid #ccc;
  font-family: inherit;
   font-size: inherit;
}

.form-btn-talk {
  padding: 10px 20px;
  width: 97%;
  margin: 0px 10px;
  margin-top: 20px;
  background-color: #1a1a1a;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: #f3f3f3;
  font-size: 16px;
  transition: background-color 0.3s;
}

body.form-btn-talk .services {
  background-color: #1a1a1a;
}

.form-btn-talk:hover {
  background-color: #2f93ff;
}

@media (max-width: 1100px) {
  .separator-div {
    display: none;
  }
  .contact-content {
    margin: 20px;
    width: 100%;
  }
}

@media (max-width: 943px) {
  .contact-content {
    margin: auto;
    display: flex;
    flex-direction: column;
  }

  .separator-div{
    display: none;
  }

  .contact-section-description, .contact-with-icon {
   display: none;
  }
  .contact-section-title {
    text-align: center;
  }

  .contact-section-title{
    font-size: 30px;
    margin-bottom: 0;
  }
}

@media (max-width: 500px) {
 .grid{
   display: contents;
  }
}

/* FAQ section */
.faq-section {
  margin: 0 auto;
  background-color: #fff;
  padding: 50px 150px 50px 150px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.faq-section h2{
  line-height: normal;
  font-size: 32px;
  margin-top: 20px;
  margin-bottom: 60px;
  color: #101010;
  font-weight: 800;
}

.faq-container {
  display: flex;
  justify-content: space-between;
}

.faq-left, .faq-right {
  width: 48%;
}

.faq-item {
  margin-bottom: 15px;
}

.faq-question {
  width: 100%;
  background-color: #f4f4f4;
  border: none;
  padding: 15px;
  font-size: 16px;
  display: flex;
  flex-direction: row;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question p{
  font-family: 'Montserrat', sans-serif !important;
  font-weight: 500;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  background-color: #f9f9f9;
  border-left: 3px solid #007BFF;
  margin-top: 5px;
  text-align: start;
}

.faq-answer p {
  font-size: 15px;
  color: #333;
  padding: 10px 0;
  font-family: 'Lexend', sans-serif !important;
  font-weight: 500;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
  .faq-section {
    padding: 40px 80px; /* Reduz o padding nas laterais */
  }

  .faq-container {
    flex-direction: column; /* Empilha as colunas na vertical */
    align-items: center;
  }

  .faq-left, .faq-right {
    width: 100%; /* Faz as colunas ocuparem toda a largura */
  }

  .faq-item {
    margin-bottom: 20px;
  }

  .faq-section h2 {
    font-size: 28px; /* Reduz o tamanho do título */
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 12px; /* Ajusta o padding */
    font-size: 15px; /* Reduz um pouco o tamanho da fonte */
  }
}

/* Responsividade para smartphones */
@media (max-width: 600px) {
  .faq-section {
    padding: 30px 20px; /* Padding menor para telas pequenas */
  }

  .faq-section h2 {
    font-size: 24px; /* Título ainda menor */
    margin-bottom: 30px;
  }

  .faq-question {
    padding: 10px; /* Padding ajustado para telas menores */
    font-size: 14px; /* Tamanho da fonte reduzido */
  }

  .faq-answer p {
    font-size: 13px; /* Fonte um pouco menor para respostas */
  }
}

/* Footer Section */
footer {
  text-align: center;
  padding: 50px 100px 50px 100px;
  background-color: #151515;
  display: flex;
  flex-direction: column;
}

.footer-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: start;
  text-align: start;
  width: 100%;
  margin-bottom: 50px;
}

.footer-columns p {
  max-width: 252px;
  color: rgb(136, 136, 136);
  line-height: normal;
  font-weight: 400;
}

.social-media-icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  max-width: 140px;
}

.social-media-icon a{
  display: inline-block;
  padding: 4px;
  margin: 0; 
  line-height: 0;
}

.social-media-icon img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.social-media-icon {
  background-color: #333333;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0;
  padding: 4px;
}

.social-media-icon:hover {
  background-color: #717171;
}

.social-media-icon:hover {
  cursor: pointer;
}

.footer-menu, .support-menu{
  display: flex;
  flex-direction: column;
}

.footer-menu a, .support-menu a{
  color: rgb(136, 136, 136);
  line-height: normal;
  font-weight: 400;
  margin-bottom: 20px;
}

.footer-menu a:hover, .support-menu a:hover{
  color: rgb(209, 209, 209);
}

.footer-columns div{
  flex-basis: 20%;
}

.social-medias {
  flex-basis: 35% !important;
  align-items: center;
}

.copy-text p{
  text-align: center;
  color: rgb(169, 169, 169);
}

.copy-text a{
  color:#258eff;
}

footer a{
  text-decoration: none;
}

footer h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #f9f9f9;
  font-weight: 800;
}

.contact-form {
  display: flex;
  border: 2px solid rgb(85, 85, 85);  /* Borda */
  transition: border-color 0.6s ease; /* Transição suave de cor da borda */
  border-radius: 15px; /* Arredondar bordas */
  height: 50px;
  width: fit-content;
}

/* Estilo quando o input está focado */
.contact-form.focused {
  border: 2px solid rgb(136, 136, 136); /* Borda */
  transition: border-color 0.6s ease; /* Transição suave de cor da borda */
}

.contact-form.focused.ready {
  border: 2px solid #0c55fa; /* Borda */
  transition: border-color 0.6s ease; /* Transição suave de cor da borda */
}

.contact-form img{
  width: 30px;
  object-fit: contain;
}

.contact-form img:hover{
  cursor: pointer;
}

.contact-button-form{
  border: 0;
  background-color: transparent;
  margin-right: 10px;
}

.contact-form input[type="text"]{
  background-color: transparent;
  font-size: 16px; /* Tamanho da fonte */
  outline: none; /* Remover contorno ao focar */
  border: 0;
  color: #fff;
  flex-basis: 80%;
  padding-left: 15px;
}

.footer-option-menu {
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

/* Responsividade para tablets */
@media (max-width: 1024px) {
  footer {
    padding: 40px 50px;
  }

  .social-medias p{
    text-align: center;
    max-width: none;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .footer-columns div {
    width: 100%;
    text-align: center;
    justify-content: safe;
    margin: auto;
  }

  .footer-menu, .support-menu {
    display: none;
  }

  .social-medias, .contact-menu {
    flex-basis: auto;
  }

  footer h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .contact-form {
    margin: auto;
  }
}

/* Responsividade para smartphones */
@media (max-width: 900px) {
  footer {
    padding: 30px 20px;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
  }

  .footer-columns div {
    width: 100%;
    text-align: center;
  }

  .social-media-icons {
    justify-content: center;
  }

  footer h3 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  .contact-form {
    justify-content: space-between;
  }

  .contact-form input[type="text"] {
    font-size: 11px;
    flex-basis: 40%;
  }

  .contact-form img {
    width: 25px;
  }

  .copy-text p {
    font-size: 12px;
  }
}

/* Responsividade para smartphones */
@media (max-width: 550px) {
  .contact-form {
    height: 30px;
  }

  .contact-form img {
    width: 20px;
  }

  .copy-text a{
    color:#0c82ff !important;
  }
}

.button-whatsapp-icon {
  width: auto !important;
  max-width: 25px !important;
  margin-bottom: 0px !important;
  margin-top: 0px !important;
  border-radius: 0px !important;
}

/* Impedir que o vídeo seja selecionado */
video {
  user-select: none;         /* Desabilita seleção de texto/imagem */
  outline: none;             /* Remove qualquer contorno (outline) */
  -webkit-user-select: none; /* Para navegadores baseados em Webkit */
  -moz-user-select: none;    /* Para navegadores baseados em Gecko (Firefox) */
  -ms-user-select: none;     /* Para Internet Explorer e Edge */
  pointer-events: none;      /* Impede interação direta com o vídeo */
}

video:focus {
  outline: none;             /* Remove borda quando o vídeo recebe foco */
}