:root {
  --gold: #c9a961;
  --gold-light: #d8bd7a;
  --gold-dark: #a8893f;
  --ink: #0c0d0b;
  --white: #ffffff;
  --muted: rgba(255, 255, 255, 0.55);
}

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

html, body {
  min-height: 100%;
}

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 20px;
  position: relative;
  background: var(--ink) url('assets/fundo.png') center / cover no-repeat fixed;
}

/* Escurecimento forte sobre a foto, como na referência */
.overlay {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(12, 13, 11, 0.25) 0%, rgba(12, 13, 11, 0.5) 60%, rgba(8, 9, 7, 0.68) 100%);
  z-index: 0;
}

.wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ---------- Marca ---------- */
.brand {
  text-align: center;
  margin-bottom: 30px;
}

.logo {
  width: 300px;
  max-width: 78%;
  height: auto;
  filter: drop-shadow(0 6px 26px rgba(201, 169, 97, 0.28));
}

.tagline {
  margin-top: 16px;
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Card ---------- */
.card {
  width: 100%;
  background: linear-gradient(180deg, rgba(16, 17, 14, 0.82) 0%, rgba(10, 11, 9, 0.86) 100%);
  border: 1px solid rgba(201, 169, 97, 0.2);
  border-radius: 8px;
  padding: 34px 30px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
}

.links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ---------- Botões de link (pill com contorno) ---------- */
.link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 17px 24px;
  border-radius: 999px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 169, 97, 0.45);
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.link:hover {
  transform: translateY(-2px);
  background: rgba(201, 169, 97, 0.1);
  border-color: var(--gold);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.4);
}

.link .icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
}

.link .icon svg {
  width: 100%;
  height: 100%;
}

/* CTA principal (Mais informações) — contorno dourado, ícone em círculo */
.link--cta {
  margin-top: 6px;
  padding: 19px 26px;
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold-light);
}

.link--cta .icon {
  width: 26px;
  height: 26px;
  padding: 5px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  color: var(--gold-light);
}

.link--cta:hover {
  background: rgba(201, 169, 97, 0.12);
  border-color: var(--gold-light);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(201, 169, 97, 0.3);
}

/* ---------- Footer ---------- */
.footer {
  margin-top: 30px;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 1.5px;
  color: var(--muted);
  text-align: center;
}

/* ---------- WhatsApp flutuante ---------- */
.wpp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 5;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.wpp-float svg {
  width: 32px;
  height: 32px;
}

.wpp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.5);
}

/* ---------- Responsivo ---------- */
@media (max-width: 480px) {
  body { padding: 36px 16px; }
  .card { padding: 26px 20px; }
  .link {
    font-size: 0.78rem;
    letter-spacing: 2px;
    padding: 15px 18px;
  }
  .tagline { letter-spacing: 3px; font-size: 0.74rem; }
  .wpp-float { width: 52px; height: 52px; }
  .wpp-float svg { width: 28px; height: 28px; }
}
