* {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none !important;
}

.text-justify {
    text-align:justify !important;
  }

.text-gold {
    color: #B39E4D !important;
}

.btn-gold {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #B39E4D !important;
    background-color: transparent !important;
    border-color: #B39E4D !important;
    border-radius: 5px;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out !important; /* Adicionando uma transição suave */
  }
  /* Adicionando o efeito hover */
  .btn-gold:hover {
    color: #fff !important;
    background-color: #B39E4D !important;
}

.titulo {
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: #B39E4D !important;
}

.bg-dark-blue {
    background-color: #020344 !important;
}

.bg-light-grey {
    background-color: #f1f1f1;
}

.bg-dark-gold {
    background-color: #979797 !important;
}

.paralax-chamada {
    height: 110vh;
    position: relative;
    background-image: url(../img/img-chamada.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

.shadow-white {
    box-shadow: 2px 2px 12px 5px rgba(0, 0, 0, 0.3);
    background-color: rgba(0, 0, 0, 0.3);
}

/* preloader */

.spinner-wrapper {
    background-color: rgba(0, 0, 0, .8);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-hover-zoom {
    transition: transform 0.5s, filter 0.3s; /* Adiciona uma transição suave para transform e filter */
}

/* Quando o mouse passar sobre a imagem, aumente o tamanho */
.img-hover-zoom:hover {
    transform: scale(1.1); /* Aumenta o tamanho em 10% */
    filter: brightness(120%); /* Aumenta o brilho em 10% */
}

  /* efeito entrada */

  .hidden {
    opacity: 0;
    filter: blur(15px);
    transform: translateX(-80%);
    transition: all 1s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
    transition: all 1s;
}