body {
  font-family: 'Sora', sans-serif;
  background: #040C2C;
  color: white;
  position: relative;
  overflow-x: hidden; /* Garante que nada cause rolagem horizontal */
}

.restodosite {
  background-color: #040C2C;
  padding: 50px 0; /* Adiciona espaçamento vertical para melhor visualização */
  color: white; /* Garante que o texto seja legível no fundo escuro */
}

/* Opcional: Estilize os títulos para melhor contraste */
.restodosite h2, .restodosite h3 {
    color: white;
}

/* Se necessário, ajuste outros elementos dentro da section */
.restodosite .container {
    max-width: 1200px; /* Ajuste a largura máxima do conteúdo */
    margin: 0 auto; /* Centraliza o conteúdo */
}

html, body {
  overflow-x: hidden;
  width: 100%;
}


body::before {
  content: '';
  position: absolute;
  top: -200px;
  left: -300px;
  width: 800px;
  height: 500px;
  background: linear-gradient(to right, #0437A9, rgba(4, 55, 169, 0));
  filter: blur(200px);
  z-index: 1;
}

body::after {
  content: '';
  position: absolute;
  top: 1000px;
  right: -300px;
  width: 600px; /* Reduzi a largura */
  height: 400px; /* Reduzi a altura */
  background: linear-gradient(to left, #0437A9, rgba(4, 55, 169, 0));
  filter: blur(180px); /* Reduzi o blur */
  z-index: 1;
}

@media (max-width: 768px) {
  body::before {
    top: -50px;
    left: -50px; /* Ajusta para não ultrapassar */
    width: 250px;
    height: 150px;
    filter: blur(80px);
  }

  body::after {
    top: 1500px; /* Mantém alinhado */
    right: -50px; /* Ajuste para evitar overflow */
    width: 200px; /* Reduzi mais */
    height: 120px; /* Reduzi mais */
    filter: blur(60px); /* Menos blur */
  }
}

.diferenciais-luz {
  position: absolute;
  top: 20%; /* Move para cima */
  left: 16%; /* Move para a direita */
  transform: translateY(-50%);
  width: 800px; /* Ajuste o tamanho conforme necessário */
  height: 300px; /* Ajuste o tamanho conforme necessário */
  background: linear-gradient(to right, #0437A9, rgba(4, 55, 169, 0));
  filter: blur(150px);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 768px) {
  .diferenciais-luz {
      width: 250px;
      height: 150px;
      filter: blur(80px);
      left: 60%; /* Ajuste para telas menores */
      top: 10%; /* Ajuste para telas menores */
  }
}



/* Estilo geral da navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: center; /* Centralizar todos os itens */
  padding: 12px 30px;
  z-index: 1030;
  border-radius: 20px;
  color: #EEEEEE;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1300px; /* Ajuste para limitar a largura da navbar */
  background: rgba(0, 20, 50, 0.5) !important; /* Azul petróleo escuro com 50% de opacidade */
  backdrop-filter: blur(10px); /* Mantém o efeito suave */
  -webkit-backdrop-filter: blur(10px); /* Compatibilidade com Safari */
  margin-top: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15); /* Borda sutil */
}

/* Logo */
.navbar-brand {
  flex: 0 0 auto;
}

.navbar-brand img {
  max-height: 25px;
}

/* Navegação central */
.navbar-center {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 15px; /* Reduzido para alinhar melhor */
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center; /* Centraliza os itens */
  gap: 20px; /* Ajuste o valor para o espaçamento desejado */
}

.navbar-nav .nav-item {
  margin: 0; /* Remove as margens individuais dos itens */
}

.navbar-nav .nav-link {
  color: #747474;
  font-size: 16px;
  padding: 4px 6px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
  text-align: center;
  margin: 0; /* Remove as margens individuais dos links */
}

.navbar-nav .nav-link:hover {
  transform: scale(1.2);
  color: #032a7a;
}

/* Botões */
.navbar-buttons {
  display: flex;
  gap: 8px; /* Aumentado o espaçamento entre os botões */
}

.btn {
  border-radius: 10px;
  padding: 8px 8px;
  font-size: 12px;
  font-weight: 500;
  gap: 6px;
}

.btn-consultoria {
  background-color: #0437A9;
  color: white;
  border: none;
  transition: background-color 0.5s ease, transform 0.4s ease;
  width: 150px;
}

.btn-consultoria:hover {
  background-color: #032a7c;
  transform: scale(1.1);
}

.btn-whatsapp {
  background-color: none;
  color: #ffffff;
  transition: background-color 0.5s ease, transform 0.4s ease;
  width: 125px;
  border-color: #d8d8d8 !important;
}

.btn-whatsapp:hover {
  background-color: #25D366;
  border-color: #25D366;
  color: black;
  transform: scale(1.1);
}

body {
  padding-top: 80px;
}

.navbar-brand {
  margin-right: auto;
}
  
  /* Animação de surgimento deslizando da direita */
  @keyframes navbarSlideInFromRight {
    0% {
      transform: translateX(100%); /* Começa fora da tela, à direita */
      opacity: 0;
    }
    100% {
      transform: translateX(-50%); /* Chega à posição final (normal) */
      opacity: 1;
    }
  }
  
  /* Aplica a animação na navbar */
  .navbar {
    animation: navbarSlideInFromRight 1.0s ease-out;
    animation-delay: 0.2s; /* Ajuste o delay conforme necessário */
  }
  
  /* Caso deseje que o efeito seja mais suave ao retornar a página */
  body {
    animation: fadeInBody 0.8s ease-out;
  }
  
  @keyframes fadeInBody {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  
  /* Responsividade para 1150px a 1400px */
  @media (min-width: 1150px) and (max-width: 1400px) {
    .navbar {
        box-sizing: border-box;
        width: calc(100% - 40px); /* Largura com margens */
        min-height: 70px;
        margin: 10px 0px;
        padding: 10px 15px;
        border-radius: 20px;
        justify-content: space-between;
        align-items: center;
    }
  
    .navbar-nav {
        gap: 18px; /* Ajuste para o espaçamento entre itens */
    }
  
    .navbar-nav .nav-item {
        margin: 0 3px; /* Reduzindo margem horizontal */
    }
  
    .navbar-nav .nav-link {
        font-size: 14px; /* Reduzindo tamanho da fonte */
        padding: 7px 0; /* Menor padding vertical */
    }
  
    .btn-consultoria {
      font-size: 10px; /* Reduz tamanho da fonte */
      padding: 8px 4px; /* Reduz padding */
      width: 130px; /* Ajusta largura */
      border-radius: 7px;
    }
  
    .btn-whatsapp {
      font-size: 10px; /* Reduz tamanho da fonte */
      padding: 8px 4px; /* Reduz padding */
      width: 130px; /* Ajusta largura */
      border-radius: 7px;
    }
  }
  
  @media (min-width: 1399px) and (max-width: 1400px) {
    .navbar {
        box-sizing: border-box;
        width: calc(100% - 40px); /* Largura com margens */
        min-height: 70px;
        margin: 10px 0px;
        padding: 10px 15px;
        border-radius: 20px;
        justify-content: space-between;
        align-items: center;
    }
  
    .navbar-nav {
        gap: 40px; /* Ajuste para o espaçamento entre itens */
    }
  
    .navbar-nav .nav-item {
        margin: 0 3px; /* Reduzindo margem horizontal */
    }
  
    .navbar-nav .nav-link {
        font-size: 14px; /* Reduzindo tamanho da fonte */
        padding: 7px 0; /* Menor padding vertical */
    }
  
    .btn-consultoria {
      font-size: 10px; /* Reduz tamanho da fonte */
      padding: 8px 4px; /* Reduz padding */
      width: 130px; /* Ajusta largura */
      border-radius: 7px;
    }
  
    .btn-whatsapp {
      font-size: 10px; /* Reduz tamanho da fonte */
      padding: 8px 4px; /* Reduz padding */
      width: 130px; /* Ajusta largura */
      border-radius: 7px;
    }
  }
  
  @media (min-width: 1151px) and (max-width: 1199px) {
    .navbar {
        box-sizing: border-box;
        width: calc(100% - 40px); /* Largura com margens */
        min-height: 70px;
        margin: 10px 0px;
        padding: 8px 10px; /* Ajusta padding geral */
        border-radius: 20px;
        justify-content: space-between;
        align-items: center;
    }
  
    .navbar-nav {
        gap: 4px; /* Reduz ainda mais o espaçamento entre itens */
    }
  
    .navbar-nav .nav-item {
        margin: 0 1px; /* Reduz margem horizontal */
    }
  
    .navbar-nav .nav-link {
        font-size: 14px; /* Reduz tamanho da fonte */
        padding: 5px 0; /* Reduz padding vertical */
    }
  
    .btn-consultoria {
      font-size: 10px; /* Reduz tamanho da fonte */
      padding: 8px 4px; /* Reduz padding */
      width: 130px; /* Ajusta largura */
      border-radius: 7px;
    }
  
    .btn-whatsapp {
      font-size: 10px; /* Reduz tamanho da fonte */
      padding: 8px 4px; /* Reduz padding */
      width: 130px; /* Ajusta largura */
      border-radius: 7px;
    }
  }
  
  
  /* Responsividade para 992px a 1150px */
  @media (min-width: 992px) and (max-width: 1150px) {
    .navbar {
        box-sizing: border-box;
        width: calc(100% - 40px); /* Largura com margens */
        min-height: 70px;
        margin: 10px 0px;
        padding: 8px 10px; /* Ajusta padding geral */
        border-radius: 20px;
        justify-content: space-between;
        align-items: center;
    }
  
    .navbar-nav {
        gap: 4px; /* Reduz ainda mais o espaçamento entre itens */
    }
  
    .navbar-nav .nav-item {
        margin: 0 1px; /* Reduz margem horizontal */
    }
  
    .navbar-nav .nav-link {
        font-size: 14px; /* Reduz tamanho da fonte */
        padding: 5px 0; /* Reduz padding vertical */
    }
  
    .btn-consultoria {
        font-size: 10px; /* Reduz tamanho da fonte */
        padding: 8px 4px; /* Reduz padding */
        width: 130px; /* Ajusta largura */
        border-radius: 7px;
    }
  
    .btn-whatsapp {
      font-size: 10px; /* Reduz tamanho da fonte */
      padding: 8px 4px; /* Reduz padding */
      width: 130px; /* Ajusta largura */
      border-radius: 7px;
    }
  }
  
  /* Responsividade para 992px a 993px */
  @media (min-width: 992px) and (max-width: 993px) {
    .navbar {
      padding: 5px;
    }
  
    .navbar-nav {
      gap: 0px;
    }
  
    .navbar-nav .nav-link {
      font-size: 14px;
      padding: 4px 0;
    }
  
    .navbar-brand img {
      max-height: 20px;
    }
  
    .btn-consultoria,
    .btn-whatsapp {
      font-size: 10px;
      padding: 8px;
      width: 130px;
    }
  }
  
  /* Responsividade para telas menores que 991px */
  @media (max-width: 991px) {
    .navbar {
      flex-direction: column;
      align-items: flex-start;
      max-width: 85%;
    }
  
    .navbar-brand img {
      max-width: 150px;
    }
  
    .navbar-brand img {
      max-height: 16px;
    }
  
    .navbar-nav {
      flex-direction: column;
      align-items: center;
      margin-top: 20px;
    }
  
    /* Garante que o botão toggle padrão apareça inicialmente */
    .navbar-toggler .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
      width: 30px;
      height: 30px;
      display: block;
      transition: all 0.3s ease; /* Suaviza a animação */
    }
  
    /* Quando a navbar for expandida, o botão vira um X */
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M6 6l18 18M6 24L24 6'/%3e%3c/svg%3e");
      transform: rotate(180deg); /* Pequena rotação para suavizar a transição */
    }
  
    .navbar-toggler {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 60px;
      height: 40px;
      border: none;
      background: transparent;
      transition: transform 0.3s ease;
    }
  
    .navbar-toggler:hover {
      transform: scale(1.3);
    }
  
    .navbar-toggler:focus,
    .navbar-toggler:active {
      outline: none;
      box-shadow: none;
    }
  
    .navbar-nav .nav-link {
      margin: 5px 0;
      text-align: center;
    }
  
    .btn-whatsapp {
      margin-top: 10px;
      align-items: center;
      justify-content: center;
      margin-bottom: 25px;
    }
  
    .btn-consultoria {
      margin-top: 10px;
      margin-right: 6px;
    }
  
    .btn-whatsapp img {
      width: 22px;
      margin-bottom: 3px;
      margin-right: 3px;
    }
  
    .btn-consultoria,
    .btn-whatsapp {
      text-align: center;
      font-size: 16px;
      padding: 5px 4px;
      width: 200px;
    }
  }
  

/* Animação para abrir a navbar */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
  
  /* Animação para abrir a navbar */
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

 /* Hero Section - Estilos padrão (para telas maiores) */
.hero-section {
  text-align: center;
  padding: 50px 0;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #333;
}

.hero-title .highlight {
  color: #0437A9;
}

.hero-subtitle {
  font-size: 1.2rem;
  margin: 1rem 0;
  color: #666;
}

/* Estilos para o container dos botões */
.hero-buttons {
  position: relative; /* Importante para o z-index funcionar */
  display: inline-flex; /* Garante que os botões fiquem lado a lado */
  gap: 10px; /* Espaçamento entre os botões */
}

/* Estilos para o botão WhatsApp */

.hero-title {
  color: white !important;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 500 !important;
}

.selected-word {
  background-color: #0437A9;
  color: white;
  position: relative;
  z-index: 2; /* Garante que a palavra selecionada esteja acima da imagem */
}

.cursor-start,
.cursor-end {
  position: absolute;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: white;
}

.cursor-start {
  left: -5px;
}

.cursor-end {
  right: -5px;
}

.ball-top,
.ball-bottom {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  left: -2px;
}

.ball-top {
  top: -6px;
}

.ball-bottom {
  bottom: -6px;
}

@media (max-width: 1400px) and (min-width: 768px) {
  .selected-word .cursor-start .ball-top,
  .selected-word .cursor-start .ball-bottom,
  .selected-word .cursor-end .ball-top,
  .selected-word .cursor-end .ball-bottom {
      display: none;
  }

  .selected-word .cursor-start {
      left: -2px;
  }

  .selected-word .cursor-end {
      right: -2px;
  }
}

.hero-whatsapp {
  background-color: transparent;
  border: 1px solid white;
  color: white;
  transition: background-color 0.3s ease, color 0.3s ease;
  font-size: 1.2rem;
  padding: 15px 30px;
  border-radius: 18px;
  margin-left: 15px;
  z-index: 2; /* Garante que o WhatsApp fique na frente */
}

.hero-whatsapp:hover {
  background-color: #25D366;
  color: black;
}

.hero-button img {
    transition: transform 0.3s ease; /* Adiciona uma transição suave */
}

.hero-button:hover img {
    animation: arrowAnimation 1.5s ease-in-out; /* Inicia a animação */
}

@keyframes arrowAnimation {
    0%, 100% {
        transform: translateY(0); /* Posição inicial e final */
    }
    10%, 30%, 50% {
        transform: translateY(-5px); /* Move a seta para cima */
    }
    20%, 40%, 60% {
        transform: translateY(0); /* Retorna a seta para a posição original */
    }
}

/* Estilos para o botão Consultoria Gratuita */
.hero-button {
  z-index: 1; /* Garante que a Consultoria fique atrás */
}

.hero-title,
.hero-subtitle,
.hero-button,
.hero-whatsapp,
.text-muted {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-title.show,
.hero-subtitle.show,
.hero-button.show,
.hero-whatsapp.show,
.text-muted.show {
  opacity: 1;
  transform: translateX(0);
}

/* Ajustes para a coluna da imagem (col-md-6) */
.col-md-6:last-child { /* Seleciona a segunda coluna md-6 */
  position: relative; /* Essencial para posicionar a imagem absolutamente dentro dela */
  display: flex; /* Para ajudar a centralizar o conteúdo, se necessário */
  align-items: center; /* Centraliza verticalmente o conteúdo da coluna */
  justify-content: center; /* Centraliza horizontalmente o conteúdo da coluna */
  height: 100%; /* Garante que a coluna tenha altura para a centralização funcionar */
}

/* NOVO: Estilos para a imagem na Hero Section */
.hero-graphic {
  position: absolute; /* Permite posicionar a imagem livremente */
  width: 180%; /* Aumenta a largura da imagem para cobrir mais. */
  left: 25%; /* Alinha o lado esquerdo da imagem ao centro da coluna */
  top: 50%; /* Alinha o topo da imagem ao centro da coluna */
  transform: translate(-50%, -50%); /* Ajusta para centralizar a imagem perfeitamente */
  max-width: none; /* Garante que a imagem não seja limitada pelo Bootstrap */
  z-index: 0; /* Coloca a imagem atrás de outros elementos */
}

/* Ajuste do z-index para os elementos de texto e botões para que fiquem acima da imagem */
.hero-section .container .row .col-md-6:first-child {
    z-index: 1; /* Garante que a coluna do texto esteja acima da imagem */
    position: relative; /* Necessário para z-index funcionar */
}

/* Garante que o texto dentro da primeira coluna esteja acima da imagem */
.hero-title,
.hero-subtitle,
.hero-button,
.hero-whatsapp,
.text-muted {
  z-index: 2; /* Garante que estes elementos estejam sempre acima da imagem */
  position: relative; /* Necessário para z-index funcionar */
}

/* Media Query para telas menores (ex: smartphones) */
@media (max-width: 767.98px) {
    .hero-section {
        text-align: left;
        padding: 20px 20px;
        margin-top: 5px !important;
    }

    .hero-title {
        font-size: 30px !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
        margin-top: 25px;
        margin-bottom: 30px;
    }

    .hero-button,
    .hero-whatsapp {
        font-size: 16px !important;
        padding: 10px 20px;
        width: 100%;
        border-radius: 20px;
        text-align: center;
    }

    .hero-whatsapp {
        margin-top: 20px;
    }

    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Ajustes específicos para a imagem em telas pequenas */
    .hero-graphic {
        position: static; /* Remove o posicionamento absoluto em telas pequenas */
        width: 150%; /* Volta a imagem para o tamanho normal em telas pequenas */
        margin-top: 30px; /* Mantém um espaçamento em cima */
        margin-left: -42%; /* Remove o deslocamento para a esquerda */
        top: auto; /* Remove o posicionamento top */
        left: auto; /* Remove o posicionamento left */
        transform: none; /* Remove a transformação de centralização */
        z-index: auto; /* Remove o z-index específico para telas pequenas */
    }

    /* Reseta os ajustes para a coluna da imagem em telas pequenas */
    .col-md-6:last-child {
      position: static;
      display: block;
      align-items: flex-start;
      justify-content: flex-start;
      height: auto;
    }

    /* Reseta o z-index para a coluna do texto em telas pequenas */
    .hero-section .container .row .col-md-6:first-child {
        z-index: auto;
        position: static;
    }

    /* Reseta o z-index para os elementos de texto e botões em telas pequenas */
    .hero-title,
    .hero-subtitle,
    .hero-button,
    .hero-whatsapp,
    .text-muted {
      z-index: auto;
      position: static;
    }
}

@media (max-width: 768px) {
  .conheca-montagna {
      margin-top: auto;
  }

  .titulo-principal {
      text-align: left !important;
      font-size: 30px !important;
  }

  .paragrafo-descricao {
      text-align: left;
  }
}

@media (max-width: 768px) {
  .titulo-secao {
      font-size: 2rem;
  }
}

/* Media Query para telas menores (ex: smartphones) */
@media (max-width: 767.98px) {
    .hero-section {
        text-align: left;
        padding: 20px 20px;
        margin-top: 5px !important;
    }

    .hero-title {
        font-size: 30px !important;
    }

    .hero-subtitle {
        font-size: 16px !important;
        margin-top: 25px !important;
        margin-bottom: 30px !important;
    }

    .hero-section {
      display: flex; /* Garante que os elementos fiquem em colunas */
      flex-direction: column; /* Empilha o texto e a imagem verticalmente */
      align-items: center; /* Centraliza horizontalmente */
  }

  .hero-graphic {
      margin-top: 30px; /* Aumenta o espaçamento acima da imagem */
  }

    .hero-button,
    .hero-whatsapp {
        font-size: 16px !important;
        padding: 10px 20px;
        width: 100%;
        border-radius: 20px;
        text-align: center;
        margin-left: 0; /* Remove a margem esquerda */
    }

    .hero-whatsapp {
        padding: 15px ;
        margin-top: 20px;
    }

    .hero-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {

  .hero-section {
      text-align: left;
      padding: 20px 20px;
      margin-top: 5px !important;
  }

  .hero-title {
      font-size: 27px !important;
  }

  .hero-subtitle {
      font-size: 14px !important;
      margin-top: 25px;
      margin-bottom: 30px;
  }
  
}

/* Ajustes para telas entre 1200px e 992px */
@media (max-width: 1200px) and (min-width: 992px) {
  .hero-buttons {
    display: flex;
    flex-direction: column; /* Mantém os botões empilhados */
    align-items: center; /* Centraliza os botões */
    gap: 24px; /* Mantém o espaçamento adequado */
  }

  .hero-button,
  .hero-whatsapp {
    width: 100%; /* Faz os botões ocuparem a mesma largura */
    max-width: 300px; /* Limita o tamanho para evitar excesso */
    text-align: center;
  }

  .hero-whatsapp {
    margin: 24px 0 0 0; /* Adiciona espaçamento superior sem afetar o alinhamento */
    align-self: center; /* Garante alinhamento exato */
  }

  /* NOVO: Ajustes para a imagem em telas menores - ALTERADO APENAS AQUI */
  .hero-graphic {
    width: 215%; /* Aumentado de 175% para 215% para ficar ainda maior */
    left: 38%;   /* Ajustado para 38% para equilibrar o novo tamanho maior */
    top: 50%; 
    transform: translate(-50%, -50%); 
    margin: 0; 
  }
}


/* Ajustes para telas entre 992px e 768px */
@media (max-width: 992px) and (min-width: 768px) {
  .hero-section {
    text-align: center;
    padding: 40px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.3rem;
    margin-top: 15px;
    margin-bottom: 25px;
  }

  /* Ajuste do container dos botões */
  .hero-buttons {
    display: flex;
    flex-direction: column; /* Garante alinhamento vertical */
    justify-content: center;
    align-items: center;
    gap: 20px; /* Mantém o espaçamento uniforme */
  }

  .hero-button,
  .hero-whatsapp {
    width: 100%;
    max-width: 300px; /* Mantém o tamanho uniforme para ambos os botões */
    padding: 12px 25px;
    font-size: 1.1rem;
    text-align: center;
  }

  .hero-whatsapp {
    margin: 0; /* Remove qualquer deslocamento lateral */
    margin-top: 25px; /* Mantém o espaçamento adequado entre os botões */
    display: flex;
    justify-content: center; /* Garante alinhamento perfeito */
  }

  .hero-graphic {
    position: absolute; /* Mantém o posicionamento absoluto */
    width: 300%; /* Ajusta a largura para telas menores de desktop. Experimente valores. */
    left: 10%;
    top: 100%;
    transform: translate(-50%, -50%);
    margin: 0; /* Remove quaisquer margens antigas */
  }
}

/* Seção "Sobre Nós" */

.sobrenos {
  margin-top: 108px !important;
  margin-bottom: 100px;
}

.sobre-nos {
  margin-top: 10px;
}

.sobrenos {
  margin-top: 20px;
  padding: 50px 0;
  background: #040C2C;
  color: #ffffff;
}

/* Estilização da imagem */
.empresa-imagem {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
}

/* Título da seção */
.sobrenos h2 {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: left;
}

/* Grupo de botões */
.sobrenos .btn-group {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: flex-start;
}

/* Estilização dos botões */
.sobrenos .btn-group .btn {
  background-color: #001C59;
  border: none;
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 12px !important;
  transition: 0.3s ease-in-out;
}

/* Efeito hover e botão ativo */
.sobrenos .btn-group .btn:hover,
.sobrenos .btn-group .btn.active {
  background-color: #154cdb;
}

.sobrenos {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 0.5s ease-out;
}

.sobrenos.fade-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .sobrenos .btn-group {
      flex-direction: row;
      flex-wrap: nowrap;
      overflow-x: auto;
  }

  .sobrenos .btn-group .btn {
      width: auto;
      white-space: nowrap;
      margin-bottom: 0;
      margin-right: 5px;
      font-size: 0.7rem;
      padding: 6px 8px; /* Aumenta o padding vertical */
      border-radius: 8px !important;
  }
}

/* Ocultar a imagem mobile em telas grandes */
.empresa-imagem-mobile {
  display: none;
}

/* Mostrar a imagem mobile e esconder a desktop quando a tela for menor que 992px */
@media (max-width: 991px) {
  .empresa-imagem-mobile {
    display: block;
  }
  .empresa-imagem {
    display: none;
  }
}


/* Diferenciais Section */

.diferencial-item {
  /* ... outras propriedades ... */
  opacity: 0;
  transform: translateX(-50px); /* Começa fora da tela à esquerda */
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.diferencial-item.show {
  opacity: 1;
  transform: translateX(0); /* Move para a posição original */
}

.diferenciais {
  margin-top: 100px;
  padding: 50px 0;
  background: #040C2C;
  color: #ffffff;
}

.diferenciais-imagem {
  width: 100%;
  max-width: 450px;
  height: auto;
  border-radius: 8px;
}

.diferenciais h2 {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: left;
}

.diferenciais-list {
  margin-top: 20px;
}

.diferencial-item {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 15px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.diferencial-header {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  background: rgba(0, 20, 50, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.diferencial-header:hover {
  background: rgba(0, 30, 70, 0.6);
}

.expand-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  transition: transform 0.3s ease;
}

.diferencial-title {
  font-size: 1.2rem; /* Ajuste o tamanho da fonte conforme necessário */
  margin: 0; /* Remove margens padrão do parágrafo */
  flex-grow: 1; /* Permite que o parágrafo ocupe o espaço restante */
  display: flex;
  align-items: center; /* Centraliza verticalmente o texto */
}

.diferencial-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.diferencial-content p {
  padding: 15px 0;
}

.diferencial-item.expanded .expand-icon {
  transform: rotate(45deg);
}

.diferencial-item.expanded .diferencial-content {
  max-height: 500px; /* Ajuste conforme necessário */
}

.expand-icon {
  font-size: 1.5rem;
  margin-right: 15px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Impede que o ícone seja clicável */
}

@media (max-width: 768px) {
  .diferenciais-imagem {
    max-width: 350px;
  }

  .diferenciais h2 {
    font-size: 2rem;
  }
}

/* Ocultar a imagem mobile em telas grandes */
.diferenciais-imagem-mobile {
  display: none;
}

/* Mostrar a imagem mobile e esconder a desktop quando a tela for menor que 992px */
@media (max-width: 991px) {
  .diferenciais-imagem-mobile {
    display: block;
  }
  .diferenciais-imagem {
    display: none;
  }
}



.diferencial-item {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease, transform 0.5s ease, max-height 0.3s ease;
}

/* Quando a barra entra na tela */
.diferencial-item.show {
  opacity: 1;
  transform: translateX(0);
}

/* Quando a barra está expandida */
.diferencial-item.expanded .expand-icon {
  transform: rotate(45deg);
}

.diferencial-content {
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.diferencial-item.expanded .diferencial-content {
  max-height: 500px; /* Ajuste conforme necessário */
  padding: 15px 20px;
}



/* Serviços prestados */

#conteudo {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-top: 20px;
  max-width: 600px;
  text-align: left;
}

.about-section {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 3.6s ease, transform 5.6s ease;
}

.about-section.show {
  opacity: 1;
  transform: translateY(0);
}

.sobrenos {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1.5s ease-out, transform 0.5s ease-out;
}

.sobrenos.fade-in {
  opacity: 1;
  transform: translateY(0);
}

#services {
  background-color: #040C2C;
}

.section-title {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
}

.service-card {
  background: linear-gradient(135deg, #040C2C, #0437A9);
  border-radius: 10px;
  padding: 20px;
  margin: 10px;
  color: #ffffff;
  box-shadow: none;
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h4,
.service-card p {
  text-align: left;
  color: #ffffff;
}

.service-card h4 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 1rem;
  line-height: 1.4;
}

.service-buttons {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}

.service-button,
.service-button-whatsapp {
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 25px;
  margin: 0 10px;
  text-decoration: none;
  color: #ffffff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.service-button {
  background-color: #0437A9;
  border-radius: 15px;
}

.service-button:hover {
  background-color: #0069d9;
  border-color: #ffffff;
}

.service-button-whatsapp {
  background-color: transparent;
  border-radius: 15px;
}

.service-button-whatsapp:hover {
  background-color: #25D366;
  border-color: #ffffff;
  color: black;
}

.money-icon {
  width: 50px;
  margin-bottom: 15px;
  height: auto;
  filter: brightness(0) invert(1);
  mask-image: linear-gradient(to right, #0437A9, #040C2C) !important;
  -webkit-mask-image: linear-gradient(to right, #0437A9, #040C2C) !important;
}

.titulo-principal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.titulo-principal.fade-in-active {
  opacity: 1;
  transform: translateY(0);
}

.service-card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.service-card.fade-in-active {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  transform: translateY(-10px);
  transition: transform 0.3s ease-in-out;
}

@media (max-width: 992px) {
  .sobre-nos-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
  }

  .sobre-nos-image {
    margin-bottom: 20px;
  }

  .sobre-nos-text {
    margin-top: 10px !important;
  }

  .service-card {
    width: 100%; /* Garante que os cards ocupem a largura total */
    margin: 10px 0; /* Ajusta as margens para melhor espaçamento vertical */
    padding: 30px; /* Aumenta o padding nos dispositivos móveis */
  }
}


/* Depoimentos */
#testimonials {
  background-color: #040C2C;
  margin-top: 100px;
  padding: 50px 0;
}

#titulo-testimonials {
  margin-bottom: 50px;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #ffffff;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

#titulo-testimonials.show {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card {
  padding: 40px 60px; /* Aumentei o padding interno para equilibrar com a nova largura */
  border-radius: 20px;
  max-width: 850px; /* EXPANDIDO: De 400px para 850px */
  margin: 20px auto;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 20, 50, 0.5) !important;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s ease, opacity 0.8s ease;
  opacity: 0;
  transform: translateY(20px);
}

.testimonial-card.show {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 20px;
}

.testimonial-text {
  font-size: 16px;
  font-style: italic;
  color: #ddd;
  margin-bottom: 20px;
  line-height: 1.6; /* Melhora a leitura no card largo */
}

.testimonial-name {
  font-weight: bold;
  color: #fff;
  margin-bottom: 5px;
}

/* Correção: Adicionado o ponto (.) que faltava no seletor */
.testimonial-role {
  color: #aaa;
  font-size: 14px;
}

/* Ajustes para o carrossel */
.carousel-inner {
  padding: 0 20px;
}

.carousel-item {
  transition: transform 0.6s ease-in-out;
}

/* Indicadores de navegação (Barrinhas SEM números) */
.carousel-indicators {
  position: static;
  margin-top: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 0;
  list-style: none;
}

.carousel-indicators button {
  width: 35px;
  height: 5px;
  border-radius: 3px;
  background-color: #555;
  margin: 0 6px;
  cursor: pointer;
  border: none;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  background-color: #ffffff;
  opacity: 1;
  width: 50px;
}

/* Responsividade Mobile (Mantida conforme solicitado) */
@media (max-width: 768px) {
  #titulo-testimonials {
      margin-bottom: 30px;
      font-size: 2rem;
  }

  .testimonial-card {
      max-width: 90%;
      margin: 20px auto;
      padding: 50px;
  }

  .carousel-inner {
      padding: 0 10px;
  }

  .carousel-control-prev,
  .carousel-control-next {
      display: none;
  }
}

/* Sessão empresas logo */
.logos-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.logos-slide {
    display: inline-block;
    animation: slide 30s linear infinite;
}

.logos-slide img {
    margin: 0 20px;
}

.logos-wrapper::before,
.logos-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.logos-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #040C2C, transparent); /* Ajustado para a cor do fundo */
}

.logos-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #040C2C, transparent); /* Ajustado para a cor do fundo */
}

@keyframes slide {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}

/* Empresas que já confiam Section */

section {
  margin-top: 50px;
  padding: 20px;
  background-color: #040C2C;
  border-radius: 5px;
}

section h2 {
  color: #FFF;
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 50px;
  text-align: center;
}

.slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  overflow: hidden;
  position: relative;
}

.slider-items {
  display: flex;
  animation: slide 30s linear infinite;
  width: max-content; /* Permitir que o conteúdo se ajuste */
}

.slider-items img {
  margin: 0 20px;
  width: 200px;
}

@keyframes slide {
  0% {
      transform: translateX(0);
  }
  100% {
      transform: translateX(-100%);
  }
}

.gradient-left,
.gradient-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 1;
}

.gradient-left {
  left: 0;
  background: linear-gradient(to right, #040C2C, rgba(4, 12, 44, 0));
}

.gradient-right {
  right: 0;
  background: linear-gradient(to left, #040C2C, rgba(4, 12, 44, 0));
}

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ajustes para Responsividade */
@media (max-width: 768px) {
  section h2 {
      font-size: 2rem;
      margin-bottom: 30px;
  }

  .slider-items img {
      width: 150px;
      margin: 0 10px;
  }

  .gradient-left,
  .gradient-right {
      width: 50px;
  }
}

/* Ajustes específicos para a logo */
.slider-items img {
  max-width: 200px; /* Garante que a logo não ultrapasse 200px em telas maiores */
}

@media (max-width: 480px) {
  .slider-items img {
      max-width: 120px; /* Reduz o tamanho da logo em telas menores */
  }
}

/* Estilos da Sessão de Formulário */
.form-session {
  padding: 50px 0;
  background-color: #040C2C;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form-container {
  background: rgba(0, 20, 50, 0.5);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.form-header {
  text-align: left; /* Alinha o texto à esquerda */
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Garante que os itens fiquem alinhados à esquerda */
}

.form-header img {
  margin-top: 25px;
  width: 150px;
  margin-bottom: 30px;
}

.form-header h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: white;
}

.form-header p {
  font-size: 0.9rem;
  color: white;
  margin-bottom: 20px;
}


.form-container input,
.form-container button,
.form-container select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 15px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
}

.form-container input {
  background-color: rgba(255, 255, 255, 0.8);
}

.form-container button {
  background-color: #007bff;
  color: white;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-bottom: 30px;
}

.form-container button:hover {
  background-color: #0056b3;
}

/* Estilos para os campos de telefone */
.phone-inputs {
  display: flex;
  gap: 10px;
}

.phone-inputs select,
.phone-inputs input {
  flex-grow: 1;
}

/* Ajustes para responsividade em telas menores */
@media (max-width: 768px) {
  .form-container {
    max-width: 90%;
    padding: 20px;
  }
  
  .phone-inputs {
    flex-direction: column;
    gap: 5px;
  }
}


/* Footer */

.footer-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1; /* Garante que o footer não sobreponha outros elementos */
  background: rgba(0, 20, 50, 0.5) !important; /* Azul petróleo escuro com 50% de opacidade */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 60px 40px; /* Aumenta o padding para 60px top/bottom e 40px left/right */
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15); /* Borda sutil */
}

.footer-brand {
  flex: 1;
  text-align: left;
}

.footer-brand .logo {
  max-width: 150px;
  height: auto;
  margin-bottom: 10px;
}

.footer-brand p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.footer-links {
  flex: 1;
  text-align: right;
}

.social-links {
  display: inline-block;
}

.social-links a {
  display: block;
  margin-bottom: 5px;
  color: white;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

.footer-bottom p {
  margin: 5px 0;
  font-size: 0.85rem;
  text-align: left; /* Alinha o texto à esquerda */
  color: white;
}

.footer-legal {
  display: flex;
}

.footer-legal a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-size: 0.85rem;
}

.footer-legal a:hover {
  text-decoration: underline;
}

/* Correção para evitar sobreposição do footer no formulário */
.footer-container {
  position: relative;
  z-index: 1;
}

/* Responsividade */
@media (max-width: 768px) {
  .footer-container {
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 80px 30px; /* Aumenta o padding para 80px top/bottom e 30px left/right na versão mobile */
  }

  .footer-brand,
  .footer-links {
      width: 100%;
      text-align: center;
  }

  .social-links {
      margin-right: 0;
      margin-bottom: 20px;
  }

  .footer-bottom-content {
      flex-direction: column;
      align-items: center;
  }

  .footer-bottom p {
      text-align: center; /* Centraliza o texto em telas menores */
  }

  .footer-legal {
      margin-top: 10px;
      flex-direction: column;
  }

  .footer-legal a {
      margin: 5px 0;
  }
}


