body {
      scroll-behavior: smooth;
      padding-bottom: 130px;
    }
section {
      padding: 80px 0;
    }
.navbar {
 background: #666;
    }
.navbar-brand, .nav-link {
      color: #fff !important;
    }
.hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      background-color: black;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      color: #ECECFB;
      padding-top: 60px;
    }

.bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;

  filter: brightness(30%);
}

.hero .bg-video {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.30; /* aqui define quão sutil fica o vídeo de fundo da página */
    z-index: 0;
}

.hero .hero-content {
  position: relative;
  z-index: 2;

#formulario {
  scroll-margin-top: 80px;
}
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1030; /* acima de conteúdos normais */
}

/* Icone flutuante do whatsapp */
#whatsapp-icon {
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 9999;
  font-size: 30px;
  cursor: grab;
  text-decoration: none;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  touch-action: none;

/* Sliders de depoimentos de clientes */  
}
.reviews-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.reviews-track {
  display: flex;
  width: max-content;
  animation: scroll-reviews 35s linear infinite;
}

.review-card {
  flex: 0 0 auto;
  margin: 0 15px;
}

.review-card img {
  height: 220px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: transform 0.1s ease;
}

.review-card img:hover {
  transform: scale(1.05);
}

/* Animação do slider*/
@keyframes scroll-reviews {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Pausar o slider quando passar com o mouse por cima */
.reviews-track:hover {
  animation-play-state: paused;
}
  .language-container {
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      flex-direction: column;
      color:#ECECFB;
    }
    .logo {
      max-height: 180px;
      margin-bottom: 30px;
    }

    /* Botões de selecionar a linguagem do site */
    .btn-language {
      width: 200px;
      margin: 10px;
    }
    .bg-video-index {
      position: fixed;
      top: 0;
      left: 0;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      z-index: -1;
      object-fit: cover;
      opacity: 0.30;
    }
    .subtitle {
      font-size: 0.8rem;
      font-style: italic;
      color: #ccc;
      margin-top: -8px;
      margin-bottom: 20px;
    }

  .contact-icons {
  display: flex;
  justify-content: center;
  gap: 30px;
}

.contact-link {
  width: 60px;
  height: 60px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.contact-link:hover {
  transform: scale(1.1);
}

.phone {
  background-color: #194485;
  position: relative;
}

.whatsapp {
  background-color: #25D366;
  position: relative;
}

/* Efeito Pulse WhatsApp */
.pulse::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(37, 211, 102, 0.6);
  animation: pulse 2.5s infinite;
  z-index: -1;
}

.phone.pulse::after {
  background-color: rgba(25, 68, 133, 0.6);
}

/* Botão flutuante LIGAR */
#call-icon {
  position: fixed;
  bottom: 80px;
  left: 20px;
  width: 60px;
  height: 60px;
  background-color: #194485;
  color: #fff;
  border-radius: 50%;
  font-size: 26px;
  z-index: 9999;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: transform 0.2s ease;
}

#call-icon:hover {
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/*Métodos de Pagamento*/
.payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  
}

.payment-methods img {
  height: 25px;
  width: auto;
  object-fit: contain;
  filter: brightness(0.9);
  transition: transform 0.2s ease;
}

.payment-methods img:hover {
  transform: scale(1.1);
}



