/* ============================= */
/* FOOTER ULTRA FINO */
/* ============================= */

.site-footer {
  width: 100%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);

  padding: 8px 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  position: relative;
  font-family: 'Cinzel', serif;
  color: #f5f5f5;
}

/* TEXTO CENTRAL */
.footer-left {
  font-size: 15px;
  letter-spacing: 2px;      /* sensação de letra mais fina */
  font-weight: 300;         /* ULTRA FINA */
  text-align: center;
  text-transform: uppercase;
}

/* LOGO À DIREITA */
.footer-right {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
}

/* LOGO KOMMYKUH */
.footer-right a img {
  height: 32px;             /* LOGO MENOR */
  width: auto;
  opacity: 0.85;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* HOVER NA LOGO */
.footer-right a:hover img {
  transform: scale(1.05);
  opacity: 1;
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .site-footer {
    padding: 6px 20px;
  }

  .footer-left {
    font-size: 13px;
    padding-right: 40px;
  }

  .footer-right {
    right: 20px;
  }

  .footer-right a img {
    height: 28px;
  }
}
