/* Botão de "Solicite mais informações" */
.btn-plus-info {
  width: 100%;
  height: 4rem;
  font-size: x-large;
  background-color: #f0f0f0;
  color: #111111;
  border: solid 2px #111111;
  -webkit-transition: all 0.3s ease 0s; /* Chrome, Safari, versões mais recentes do Opera e Edge */
  -moz-transition: all 0.3s ease 0s; /* Firefox */
  -o-transition: all 0.3s ease 0s; /* Versões antigas do Opera */
  -ms-transition: all 0.3s ease 0s; /* Internet Explorer */
  transition: all 0.3s ease 0s; /* Padrão para navegadores modernos */
  cursor: pointer;
}

.btn-plus-info:hover {
  background-color: #de741c;
  color: #f0f8ff;
  border: solid 1px #f0f8ff;
}




/* Cards */
.card-deck {
  pointer-events: none;
}

.card-deck .card {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  -webkit-transition: linear 0.18s; /* Chrome, Safari, versões mais recentes do Opera e Edge */
  -moz-transition: linear 0.18s; /* Firefox */
  -o-transition: linear 0.18s; /* Versões antigas do Opera */
  -ms-transition: linear 0.18s; /* Internet Explorer */
  transition: linear 0.18s; /* Padrão para navegadores modernos */
  pointer-events: all;
}

.card-deck:hover > :hover {
  opacity: 1;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.212);
}
.card-deck:hover > :not(:hover) {
  opacity: 0.5;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0);
  transform: scale(0.9);
  scale: .9;
}




.lazy-background {
  background-color: #f0f0f0;
}

.title-section {
  font-family: "Lora", serif;
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1.2;
}

.subheading-section {
  font-size: 1.7rem;
  line-height: 1.2;
}

.text-section {
  font-size: 1.1rem;
  line-height: 1.2;
}

.gradient-background {
  border-image: fill 0 linear-gradient(#0003, #000);
}




.background-image-contain {
  background: center/contain no-repeat;
}
.background-image-cover {
  background: center/cover no-repeat;
}




.blurry-effect {
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(13.5px);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  backdrop-filter: blur(13.5px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}




img {
  pointer-events: none;
}



@media (max-width: 575.98px) {
  .lead{
    font-size: 1.1rem;
  }
}