@charset "UTF-8";
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  position: relative;
}

.banner {
  position: relative;
  height: 60vh;
  background: url("../images/banner-opt-2.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  /* Overlay escuro para melhorar a legibilidade */
  /* Ajuste no conteúdo para garantir que fica acima do overlay */
}
.banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}
.banner .container {
  position: relative;
  z-index: 1;
}
.banner .service-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.banner .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  font-size: 1rem;
}
.banner .service-item i {
  margin-bottom: 5px;
  color: white;
}

.navbar {
  background-color: #06408a;
}
.navbar .navbar-toggler {
  background-color: white !important;
}
.navbar ul li a {
  text-wrap: none;
  padding: 1rem !important;
  text-transform: uppercase;
  text-align: center;
  display: block;
  font-size: 1.2rem;
  border-radius: 10px;
}
.navbar ul li a:hover {
  background-color: #0058cb;
  color: white;
}

#about {
  background-color: #06408a;
  color: white !important;
}

#services {
  padding: 2rem 0;
}
#services .card {
  background-color: transparent;
  box-shadow: none;
  border: 0;
  height: 220px;
  border-radius: 0rem;
}
#services .card .bi {
  background-color: #1e2a47; /* Fundo azul escuro */
  color: white; /* Cor do ícone branco */
  border-radius: 50%; /* Faz o fundo ficar circular */
  padding: 0px; /* Espaço ao redor do ícone */
  margin-bottom: 20px; /* Espaçamento entre o ícone e o título */
  display: inline-block; /* Permite que o ícone seja tratado como inline */
  width: 60px; /* Largura do círculo */
  height: 60px; /* Altura do círculo */
  line-height: 60px; /* Alinha o ícone verticalmente no centro */
  font-size: 32px; /* Tamanho do ícone */
}

.testimonials {
  background: #f8f9fa;
  padding: 60px 0;
  text-align: center;
}
.testimonials .testimonial-item {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.testimonials .testimonial-item p {
  font-size: 1.2rem;
  font-style: italic;
  color: #333;
}
.testimonials .testimonial-author {
  font-weight: bold;
  margin-top: 10px;
}

.contact-section {
  background: #06408a;
  color: white !important;
}
.contact-section a {
  color: white;
}
.contact-section input,
.contact-section textarea {
  background-color: transparent;
  border-color: white;
  color: white;
}
.contact-section .contact-section h2 {
  color: #007bff;
}
.contact-section .list-unstyled li {
  padding: 5px 0;
}

.floating-btns {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px; /* Espaço entre os botões */
}

#useful-links {
  background: #f8f9fa;
}
#useful-links h2 {
  color: #007bff;
}
#useful-links .list-group-item a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
}
#useful-links .list-group-item a:hover {
  text-decoration: underline;
  color: #0056b3;
}

.floating-btn {
  width: 55px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 26px;
  border-radius: 50%;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* Cores para cada botão */
.whatsapp-btn {
  background: #25d366;
}

.phone-btn {
  background: #007bff;
}

.sms-btn {
  background: #ff9800;
}

/* Efeito hover */
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.3);
}

/*# sourceMappingURL=main.css.map */
