.unifrakturmaguntia-regular {
  font-family: "UnifrakturMaguntia", cursive;
  font-weight: 400;
  font-style: normal;
}

:root {
  --preto: #000000;
  --branco: #ffffff;
  --dourado: #C9A227;
  --bege: #e3c49a;
  --vermelho: #D50000;
  --laranja: #f47927;
  --fonte--principal: "UnifrakturMaguntia", cursive;
  --fonte--secundaria: "Playfair Display", serif;
  --fonte--terciaria: "Oswald", sans-serif;
}


body {
  background-image: url(img/Background-galeria.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.cabecalho {
  position: absolute;
  max-width: 95%;
  width: 95%;
  padding: 10px 0;
  z-index: 1000;
  top: 0%;
  left: 0%;
}

.logo {
  width: 118px;
  height: auto;
}

.cabecalho {
  display: flex;
  font-family: var(--fonte--terciaria);
  justify-content: space-around;
  align-items: center;
  padding: 20px 40px;
  background-color: var(--preto);
  animation: fadeInDown 1s ease-in-out;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.cabecalho__lista {
  display: flex;
  gap: 35px;
  list-style: none;
}

ul li a {
  text-decoration: none;
  color: var(--branco);
  font-size: 24px;
  font-weight: 400;
}

ul li a:hover {
  color: var(--branco);
  transition: color 0.4s ease;
}

.cabecalho__lista li a {
  position: relative;
  transition: color 0.3s ease;
}

.cabecalho__lista li a:hover::after {
  transform: scaleX(1);
}



.galeria {
  text-align: center;
  padding: 90px 20px;
  color: var(--preto);
}

.galeria h1 {
  font-size: 44px;
  font-weight: 600;
  font-family: var(--fonte--principal);
  margin-top: 5rem;
  filter: drop-shadow(2px 2px 2px black);
}

.galeria p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  font-weight: 800;
  color: var(--preto);
  font-family: var(--fonte--terciaria);
}

.grid__galeria {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}

.card__foto {
  background-color: var(--preto);
  width: 300px;
  height: 350px;
  object-fit: cover;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 6px;
  transition: transform 0.4s ease;
  box-shadow: 0 0 10px var(--preto);
}

.card__foto:hover {
  transform: scale(1.05);
}

.card__foto img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
}

.card__foto p {
  margin-top: 10px;
  font-size: 0.9em;
  color: var(--branco);
  font-family: var(--fonte--terciaria);
}





.footer {
  font-family: var(--fonte--secundaria);
  color: var(--branco);
  background: url('img/imagem-bachground-footer.png') center center / cover no-repeat fixed;
  background-attachment: fixed;
  overflow: hidden;
  opacity: 0;
  transition: opacity 1.5s ease;
}

.footer__visible {
  opacity: 1;
}

.footer__background {
  position: relative;
  height: 25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer__titulo {
  font-size: 17rem;
  color: var(--branco);
  mix-blend-mode: difference;
  letter-spacing: 8px;
  font-weight: 900;
  pointer-events: none;
  user-select: none;
  text-align: center;
  transition: color 1s ease, filter 1s ease;
}

.footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  gap: 2rem;
  background-color: rgba(0, 0, 0, 0.5);
}

.footer__redes__sociais p {
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.footer__icons a {
  margin: 0 0.6rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer__icons img {
  width: 32px;
  height: 32px;
  transition: filter 0.3s ease;
}

.footer__icons a:hover img {
  filter: brightness(1.3) sepia(1) hue-rotate(20deg) saturate(2);
  transform: scale(1.1);
}


.footer__links ul {
  font-family: var(--fonte--principal);
  list-style: none;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
}

.footer__links a {
  color: var(--branco);
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__links a:hover {
  color: var(--dourado);
}


.footer__copyright {
  text-align: center;
  padding: 1.5rem;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 1rem;
  color: var(--branco);
}