.fade-in {
  opacity: 0;
  transition: opacity 3s ease-in-out;
}

.fade-in.visible {
  opacity: 1;
}

.full-screen {
  height: 100vh; /* Ocupa a tela inteira verticalmente */
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-custom {
  background-image: url('assets/background1.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Torna o plano de fundo imóvel */
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bg-custom-blue {
  background-color: #b79f8f;
}
.bg-custom-blue-hover:hover {
  background-color: #988478;
}

.bg-custom-dark-blue {
  background-color: #403630;
}

.focus-ring-custom-blue:focus {
  outline: 4px solid #0c3745; /* Um tom mais escuro para o anel de foco */
  outline-offset: 2px;
}
.text-custom-blue {
  color: #884031;
}

.text-custom-lapis-lazuli {
  color: #317988;
}

.bg-custom-lapis-lazuli {
  background-color: rgba(183, 159, 143, 0.15);
}

.bg-custom-light-blue {
  background-color: rgba(183, 159, 143, 0.1);
}

.img-standard {
  width: 100%;
  height: 100%;
  max-height: 300px;
  max-width: 400px;
  object-fit: cover;
}

.img-landing {
  width: 100%;
  height: 75%;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.text-custom-black {
  color: #3b3b46;
}

.whatsapp-icon {
  position: fixed;
  bottom: 10%;
  right: 10%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.whatsapp-icon:hover {
  background-color: rgb(0, 255, 0);
}

.custom-shadow {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

h1::after {
  content: '';
  display: block;
  width: 40px;
  padding-top: 3px;
  border-bottom: 2px solid #f3d75a;
}

#custom-icon-text {
  margin-left: 5px;
  color: lightgray;
}
