* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
html {
  height: 100%;
}

/* ── Age Gate ─────────────────────────────────── */

.age-gate {
  min-height: 100vh;
  background-image: url("../imagens/vinhasIndex.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.age-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 4, 0.6);
}

.age-gate-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  max-width: 520px;
  width: 100%;
  padding: 2rem 1rem;
}

/* ── Logo ─────────────────────────────────────── */

.brand-logo {
  max-width: 460px;
  width: 90%;
  height: auto;
  margin-bottom: 2.4rem;
}

/* ── Texto ────────────────────────────────────── */

.age-title {
  font-family: "Baskervville", serif;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin-bottom: 0.7rem;
  color: #fff;
}

.age-subtitle {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(0.75rem, 2vw, 0.88rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ── Botões ───────────────────────────────────── */

.btn-age {
  font-family: "Baskervville", serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  color: #fff;
  background-color: #7b1a2d;
  border: none;
  border-radius: 0;
  padding: 0.9rem 0;
  width: 100%;
  cursor: pointer;
}

.btn-age:hover,
.btn-age:focus,
.btn-age:active {
  background-color: #7b1a2d;
  color: #fff;
  outline: none;
}

/* ── Ecrã de acesso negado ────────────────────── */

.denied-screen {
  display: none;
  min-height: 100vh;
  background: #080808;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.denied-screen.active {
  display: flex;
}

.denied-logo {
  height: 60px;
  margin-bottom: 1.5rem;
  opacity: 0.5;
}

.denied-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 1rem;
}
