/* Importação de fontes do Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Abhaya+Libre:wght@400;500;600;700;800&family=Aboreto&display=swap");

/* Configuração de fontes customizadas */
body {
  font-family: "Abhaya Libre", serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Abhaya Libre", serif;
  font-weight: 700;
}

.font-aboreto {
  font-family: "Aboreto", cursive;
}

.font-abhaya {
  font-family: "Abhaya Libre", serif;
}

/* Estilos globais personalizados */
* {
  scroll-behavior: smooth;
}

/* Estilo para links em texto */
.text-link {
  color: #af7507;
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.text-link:hover {
  color: #f7ca0b;
  border-bottom-color: #f7ca0b;
}

/* Estilo para botões */
.btn-primary {
  background-color: #af7507;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background-color: #8d5f06;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(175, 117, 7, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #af7507;
  padding: 0.75rem 2rem;
  border-radius: 0.375rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  border: 2px solid #af7507;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: #af7507;
  color: white;
  transform: translateY(-2px);
}

/* Divisores elegantes */
.divider-gold {
  height: 2px;
  background: linear-gradient(90deg, transparent, #af7507, transparent);
  margin: 2rem 0;
}

/* Cards com hover suave */
.card-elegant {
  transition: all 0.3s ease;
  border: 1px solid rgba(175, 117, 7, 0.1);
}

.card-elegant:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: #af7507;
}

/* Overlay para imagens */
.overlay-dark {
  background: linear-gradient(
    135deg,
    rgba(31, 31, 31, 0.85) 0%,
    rgba(31, 31, 31, 0.7) 100%
  );
}

/* Animação suave para elementos */
.fade-in {
  animation: fadeIn 0.8s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Menu mobile */
.mobile-menu {
  transition: all 0.3s ease;
}

.mobile-menu.hidden {
  display: none;
}

/* Placeholder para imagens */
.img-placeholder {
  background: linear-gradient(135deg, #f0e5cc 0%, #e8d9b8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #af7507;
  font-weight: 600;
}
