@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Manrope", sans-serif;
}

header .nav-item {
  transition: 0.3s ease-in-out;
  color: #104A8D;
}
header .nav-item .nav-link {
  font-weight: 700;
  color: #104A8D;
  transition: 0.3s ease-in-out;
  text-align: center;
}
header .nav-item:hover {
  background-color: #104A8D;
}
header .nav-item:hover .nav-link {
  color: white !important;
}

.title-section {
  font-size: 2rem;
  font-weight: 700;
  color: #104A8D;
  position: relative;
  padding-left: 8px;
}
.title-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background-color: #F7C70E;
}

.white {
  color: white !important;
}

#main-section {
  min-height: 100vh;
  width: 100%;
  background-image: url("../../img/bg-home.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

#sobre-nos {
  scroll-margin-top: 50px;
}
#sobre-nos .text-sobre-nos {
  font-size: 1.1rem;
  font-weight: 500;
}
#sobre-nos .btn-saiba-mais {
  background-color: #F7C70E;
  font-size: 1.2rem;
  padding: 8px 12px;
  display: block;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
#sobre-nos .btn-saiba-mais:hover {
  transform: scale(1.1);
}

#servicos {
  scroll-margin-top: 50px;
}
#servicos .card-servico {
  background-color: #FFD700;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  color: #000;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}
#servicos .card-servico .card-img-top {
  height: 200px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#servicos .card-servico .card-body {
  padding: 1.5rem;
}
#servicos .card-servico .card-body .card-title {
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
#servicos .card-servico .card-body .card-text {
  font-size: 0.95rem;
}
#servicos .card-servico:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

#identidade {
  scroll-margin-top: 50px;
  min-height: 50vh;
  width: 100%;
  background-image: url("../../img/bg-identidade.png");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-position: center;
}
#identidade .card-identidade {
  border-radius: 18px;
  background: rgba(155, 199, 250, 0.75);
  backdrop-filter: blur(0px);
}
#identidade .card-identidade .card-body .card-title {
  color: white;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 8px;
}
#identidade .card-identidade .card-body .card-text {
  color: white;
  font-size: 1.2rem;
}

#galeria {
  scroll-margin-top: 50px;
}
#galeria .menu-btn {
  width: 100%;
  margin-bottom: 10px;
}
#galeria .cliente-info {
  display: none;
}
#galeria .cliente-info.active {
  display: block;
}
#galeria .img-thumb {
  max-width: 100%;
  height: auto;
  margin-bottom: 10px;
  border-radius: 10px;
}

#fale-conosco {
  background-color: #104A8D;
  scroll-margin-top: 50px;
}
#fale-conosco .card-form {
  background-color: #F7C70E;
}
#fale-conosco .card-form label {
  font-weight: 700;
  font-size: 1rem;
}
#fale-conosco .infos {
  margin-top: 8px;
}
#fale-conosco .infos ul {
  padding-left: 0;
  list-style: none;
}

#footer {
  background-color: white;
}
#footer .copyright {
  font-weight: 700;
}

.owl-arrows button {
  background-color: #104A8D;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.owl-arrows button:hover {
  background-color: #F7C70E;
}

.img-size {
  max-height: 525px;
}

@media (max-width: 767px) {
  .img-size {
    max-height: 525px !important;
  }
}
.socials a {
  transition: transform 0.3s ease;
  display: inline-block;
  cursor: pointer;
}

.socials a:hover {
  transform: scale(1.2);
}

@media (max-width: 767px) {
  #main-section {
    background-image: none;
    background-color: rgba(16, 74, 141, 0.6);
  }
  #identidade {
    background-image: none;
    background-color: rgba(16, 74, 141, 0.6);
  }
}
.btn-saiba-mais {
  background-color: #F7C70E;
  font-size: 1.2rem;
  padding: 8px 12px;
  display: block;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}
.btn-saiba-mais:hover {
  transform: scale(1.1);
}

.botao-flutuante {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ffc107; /* amarelo */
  color: #fff;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
  z-index: 1000;
}

.botao-flutuante:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.4);
}

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