:root {
  --gold: #c9a24d;
  --gold-dark: #a88432;
  --stone: #f3f0ea;
  --stone-dark: #e6e2da;
  --ink: #1a1a1a;
  --muted: #6f6f6f;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Cinzel', sans-serif;
  background: var(--stone);
  color: var(--ink);
  line-height: 1.6;
}

/* HEADER */
header {
  background: var(--stone-dark);
  border-bottom: 1px solid #ddd;

}

.nav {
  max-width: 1200px;
  margin: auto;
  padding: 5px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 220px;
}

nav a {
  margin-left: 32px;
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--ink);
  position: relative;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s;
}

nav a:hover::after {
  width: 100%;
}

/* HERO */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

/* IMAGEM DE FUNDO */
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: blur(1.5px);
 
}

/* OVERLAY PARA CONTRASTE */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(243, 240, 234, 0.6);
  z-index: 2;
}

/* CONTEÚDO POR CIMA */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 40px 20px;
}

.hero h1 {
  font-family: 'Cinzel', serif;
  font-size: 2.8rem;
  letter-spacing: 3px;
  margin-bottom: 24px;
  text-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.hero p {
  color: var(--ink);
  margin-bottom: 36px;
  text-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.btn {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid var(--gold);
  color: white;
  background-color: var(--gold-dark);
  text-decoration: none;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  transition: all 0.3s ease;
  border-radius: 25px;
}

.btn:hover {
  background-color: var(--gold);
  transform: scale(1.05);
}

/* FEATURES */
.features {
  max-width: 1200px;
  margin: auto;
  padding: 80px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}

.feature {
  padding: 32px 20px;
  background: #fff;
  border: 1px solid #e0dccf;
}

.feature h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: var(--gold-dark);
}

.feature p {
  font-size: 0.9rem;
  color: var(--muted);
}
.site-footer {
  background: var(--stone-dark);
  padding: 20px 0;
  text-align: center;
  border-top: 1px solid #ddd;
  margin-top: 60px;
}

.footer-content {
  font-family: 'Cinzel', sans-serif;
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

.site-footer a {
  color: var(--gold-dark);
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}

.site-footer a:hover {
  color: var(--gold);
}
