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;

}



/* Animação do slider*/

/* Secção de avaliações Google */
.reviews-header {
  max-width: 780px;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 16px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #fff;
  color: #194485;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.reviews-summary {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #666;
  margin-bottom: 0;
}

.elfsight-reviews-widget {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.testimonial-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 34px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 42px rgba(0,0,0,0.12);
}

.testimonial-stars {
  color: #fbbc04;
  letter-spacing: 2px;
  font-size: 1rem;
  line-height: 1;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.14);
}

.avatar-blue {
  background: #4285F4;
}

.avatar-green {
  background: #0F9D58;
}

.avatar-purple {
  background: #9C27B0;
}

.testimonial-person h5 {
  margin: 0;
  color: #222;
  font-weight: 700;
}

.testimonial-person span {
  display: block;
  color: #777;
  font-size: 0.88rem;
}

.testimonial-card h5 {
  margin-top: 14px;
  margin-bottom: 12px;
  color: #222;
  font-weight: 700;
}

.testimonial-card p {
  color: #666;
  margin-top: 14px;
  margin-bottom: 0;
}

.reviews-actions .btn {
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
}
  .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);
}

.iti {
  width: 100%;
}



