/* ─────────────────────────────────────────
   AURA IMPORTS — DARK GOLD LUXURY SITE
   ───────────────────────────────────────── */

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

:root {
  --bg:               #0e0d0c;
  --bg-2:              #161412;
  --btn:               #1c1916;
  --btn-hover:         #262119;
  --btn-primary:       linear-gradient(135deg, #caa15a 0%, #e8c987 45%, #b8863f 100%);
  --btn-primary-hover: linear-gradient(135deg, #d6ae64 0%, #f2d493 45%, #c4913f 100%);
  --border:            rgba(212,175,110,.18);
  --ink:               #f3ecdd;
  --ink-soft:          #cbbb98;
  --ink-dim:           #8a7c62;
  --accent:            #d4af6e;
  --accent-soft:       #a9834a;
}

html, body {
  height: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* ── SOFT RADIAL GRADIENT BG ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 85% 100%, rgba(184,134,63,.12) 0%, transparent 60%),
    linear-gradient(160deg, #131110 0%, #0a0908 100%);
  z-index: 0;
  pointer-events: none;
}

/* ── NOISE GRAIN ── */
.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
}

/* ── SUBTLE GLOW ── */
.bg-glow {
  display: none;
}

/* ── LAYOUT ── */
main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  padding: 56px 28px 44px;
  display: flex;
  flex-direction: column;
}

/* ── HEADER ── */
header {
  text-align: center;
  margin-bottom: 28px;
  animation: rise 0.65s cubic-bezier(.22,.68,0,1.15) both;
}

.brand-logo {
  display: block;
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto 26px;
  filter: drop-shadow(0 4px 18px rgba(212,175,110,.18));
}

.subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}

.tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: .2px;
  color: var(--ink-soft);
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ── RULE ── */
.rule {
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 26px auto 30px;
  border-radius: 2px;
  animation: rise 0.6s .08s cubic-bezier(.22,.68,0,1.15) both;
}

/* ── BUTTONS ── */
nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
}

.btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: 12px;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.16s ease,
    box-shadow 0.16s ease,
    background 0.16s ease;
  position: relative;
  overflow: hidden;
  animation: rise 0.55s cubic-bezier(.22,.68,0,1.15) both;
}

.btn:active { transform: scale(0.983); }

/* PRIMARY — gold gradient pill (main CTAs) */
.btn--primary {
  background: var(--btn-primary);
  border: 1px solid rgba(212,175,110,.25);
  box-shadow:
    0 2px 10px rgba(0,0,0,.35),
    0 6px 20px rgba(184,134,63,.18);
}

.btn--primary:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184,134,63,.28), 0 2px 10px rgba(0,0,0,.4);
}

.btn--primary .btn__icon { background: rgba(14,13,12,.18); color: #1c1712; }
.btn--primary .btn__label { color: #1c1712; font-weight: 700; }
.btn--primary .btn__arrow { color: #1c1712; }

/* GHOST — dark card with gold border */
.btn--ghost {
  background: var(--btn);
  border: 1px solid var(--border);
}

.btn--ghost:hover {
  background: var(--btn-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0,0,0,.4);
  border-color: rgba(212,175,110,.35);
}

.btn--ghost .btn__icon  { color: var(--accent); }
.btn--ghost .btn__label { color: var(--ink); }
.btn--ghost .btn__arrow { color: var(--ink-dim); }

/* stagger */
nav .btn:nth-child(1) { animation-delay: .14s; }
nav .btn:nth-child(2) { animation-delay: .20s; }
nav .btn:nth-child(3) { animation-delay: .26s; }
nav .btn:nth-child(4) { animation-delay: .32s; }
nav .btn:nth-child(5) { animation-delay: .38s; }
nav .btn:nth-child(6) { animation-delay: .44s; }

/* INTERNALS */
.btn__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(212,175,110,.08);
  transition: transform 0.16s ease;
}

.btn:hover .btn__icon {
  transform: scale(1.06);
}

.btn__label {
  flex: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .1px;
}

.btn__arrow {
  font-size: 17px;
  font-weight: 300;
  transition: transform 0.16s ease, opacity 0.16s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(4px);
}

/* ── FOOTER ── */
footer {
  text-align: center;
  animation: rise 0.5s .5s ease both;
}

.footer-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(212,175,110,.35);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: rgba(212,175,110,.75);
}

/* ── ACESSIBILIDADE / SEO (conteúdo lido por leitores de tela e crawlers, sem alterar o visual) ── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ── KEYFRAMES ── */
@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 400px) {
  main { padding: 40px 20px 32px; }
  .brand-logo { max-width: 210px; margin-bottom: 20px; }
  .btn__label { font-size: 13px; }
}
