:root {
  --bg-main: #994133;
  --text-light: #f2dfc9;
  --text-soft: rgba(242, 223, 201, 0.85);
  --button-bg: #f2dfc9;
  --button-text: #994133;
}

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

body {
  font-family: Georgia, "Times New Roman", serif;
  background: var(--bg-main);
  color: var(--text-light);
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

.hero__inner {
  max-width: 720px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* 🔥 LOGO AJUSTADA */
.logo {
  width: min(240px, 55vw);
  height: auto;
  margin-bottom: 18px;

  /* disfarça fundo do jpeg */
  mix-blend-mode: lighten;
}

/* LOCAL */
.location {
  font-size: 16px;
  letter-spacing: 0.05em;
  color: var(--text-soft);
  margin-bottom: 10px;
}

/* TÍTULO */
.headline {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 12px;
}

/* SUB */
.subheadline {
  font-size: clamp(20px, 2.5vw, 28px);
  margin-bottom: 12px;
}

/* TEXTO */
.description {
  font-size: clamp(16px, 2.2vw, 20px);
  color: var(--text-soft);
  max-width: 520px;
  margin-bottom: 24px;
}

/* BOTÃO */
.btn-vip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-text);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: 0.2s;
}

.btn-vip:hover {
  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 600px) {
  .logo {
    width: min(200px, 70vw);
  }

  .headline {
    font-size: 34px;
  }

  .subheadline {
    font-size: 20px;
  }
}