/* H10 STORE — Link Premium
   Edite as cores principais abaixo, se necessário. */

:root {
  --bg: #030303;
  --panel: rgba(13, 13, 13, 0.88);
  --panel-2: rgba(20, 15, 8, 0.72);
  --gold: #d8a63b;
  --gold-light: #ffd978;
  --gold-dark: #7b4f06;
  --text: #f5f5f2;
  --muted: #bdb9b0;
  --border: rgba(216, 166, 59, 0.7);
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.55);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -10%, rgba(210, 143, 24, 0.15), transparent 32%),
    linear-gradient(180deg, #030303 0%, #050505 55%, #010101 100%);
  color: var(--text);
  font-family: "Montserrat", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.15;
  z-index: -3;
  background-image:
    linear-gradient(rgba(255,255,255,.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.015) 1px, transparent 1px);
  background-size: 34px 34px;
}

.ambient {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.12;
  pointer-events: none;
  z-index: -2;
  background: var(--gold);
}

.ambient-one {
  top: 10%;
  left: -170px;
}

.ambient-two {
  right: -180px;
  bottom: 8%;
}

.page-shell {
  width: min(100%, 520px);
  margin: 0 auto;
  min-height: 100vh;
  padding: 36px 22px 30px;
  position: relative;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 12px 8px;
  border: 1px solid rgba(216, 166, 59, 0.45);
  border-radius: 44px;
  pointer-events: none;
  box-shadow:
    inset 0 0 30px rgba(216, 166, 59, 0.04),
    0 0 26px rgba(216, 166, 59, 0.05);
}

.hero {
  position: relative;
  z-index: 1;
  padding: 28px 18px 22px;
  text-align: center;
}

.logo-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 44px;
}

.logo-main {
  font-size: clamp(70px, 20vw, 104px);
  line-height: .8;
  font-weight: 900;
  letter-spacing: -7px;
  color: transparent;
  background:
    linear-gradient(115deg, #6f4300 0%, #ffe29a 18%, #bd7810 37%, #fff1bd 55%, #aa6505 74%, #f7cf73 100%);
  -webkit-background-clip: text;
  background-clip: text;
  filter: drop-shadow(0 5px 12px rgba(0,0,0,.75));
}

.logo-store {
  margin-top: 10px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 13px;
  margin-left: 13px;
  color: var(--gold-light);
}

.logo-sub {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #f1f1ef;
}

.logo-sub span {
  display: block;
  width: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.hero-copy .eyebrow {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1px;
}

.hero h1 {
  margin: 2px 0 8px;
  font-size: clamp(51px, 14vw, 76px);
  line-height: .89;
  font-weight: 900;
  letter-spacing: -4px;
  color: transparent;
  background: linear-gradient(180deg, #ffe8a9 0%, #e7b34e 34%, #a86808 100%);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 16px 40px rgba(169, 101, 6, .16);
}

.gold-line {
  width: 72px;
  height: 2px;
  margin: 18px auto;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.hero-description {
  max-width: 410px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.75;
  color: #e0ded9;
}

.links {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 10px;
}

.premium-link {
  display: grid;
  grid-template-columns: 68px 1fr 34px;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 15px 16px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background:
    linear-gradient(120deg, rgba(222, 164, 54, .08), transparent 32%),
    linear-gradient(180deg, rgba(18,18,18,.95), rgba(8,8,8,.96));
  box-shadow: var(--shadow);
  text-decoration: none;
  color: var(--text);
  transform: translateZ(0);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  overflow: hidden;
  position: relative;
}

.premium-link::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -45%;
  width: 34%;
  transform: rotate(17deg);
  background: linear-gradient(90deg, transparent, rgba(255,229,159,.18), transparent);
  transition: left .7s ease;
}

.premium-link:hover::before {
  left: 125%;
}

.premium-link:hover {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  box-shadow: 0 20px 65px rgba(0,0,0,.65), 0 0 22px rgba(216,166,59,.12);
}

.link-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(216,166,59,.4);
  border-radius: 50%;
  font-size: 31px;
  color: var(--gold-light);
  background: radial-gradient(circle at 30% 25%, rgba(255,220,137,.1), rgba(0,0,0,.2));
}

.link-copy {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.link-copy strong {
  font-size: 17px;
  letter-spacing: .2px;
  color: #f2c963;
}

.link-copy span {
  font-size: 13px;
  color: #e2e0db;
}

.link-arrow {
  display: grid;
  place-items: center;
  color: var(--gold-light);
  font-size: 18px;
}

.benefits {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  padding: 22px 14px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr;
  gap: 10px;
  align-items: stretch;
  border: 1px solid rgba(216,166,59,.35);
  border-radius: 20px;
  background: rgba(9,9,9,.82);
}

.benefit {
  min-width: 0;
  text-align: center;
}

.benefit i {
  display: block;
  margin-bottom: 10px;
  font-size: 23px;
  color: var(--gold-light);
}

.benefit span,
.benefit strong {
  display: block;
  font-size: 9px;
  line-height: 1.45;
}

.benefit span {
  color: #e3e0d8;
}

.benefit strong {
  color: #fff;
  font-weight: 600;
}

.separator {
  background: linear-gradient(180deg, transparent, rgba(216,166,59,.4), transparent);
}

footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 34px 10px 16px;
}

.socials {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
}

.socials a {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 22px;
  background: rgba(9,9,9,.9);
  transition: .25s ease;
}

.socials a:hover {
  transform: translateY(-3px);
  background: rgba(216,166,59,.12);
  box-shadow: 0 0 18px rgba(216,166,59,.14);
}

.city {
  margin: 0 0 8px;
  font-size: 18px;
  letter-spacing: 1px;
  color: #e8b74e;
}

.brand-footer,
.copyright {
  margin: 6px 0;
  color: #aaa69f;
  font-size: 11px;
  letter-spacing: .5px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  z-index: 20;
  background: #111;
  color: var(--gold-light);
  border: 1px solid var(--gold);
  text-decoration: none;
  font-size: 27px;
  box-shadow: 0 12px 36px rgba(0,0,0,.55);
  transition: transform .2s ease;
}

.floating-whatsapp:hover {
  transform: scale(1.06);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1);
}

@media (max-width: 420px) {
  .page-shell {
    padding-left: 16px;
    padding-right: 16px;
  }

  .premium-link {
    grid-template-columns: 58px 1fr 26px;
    min-height: 94px;
    padding: 13px;
  }

  .link-icon {
    width: 54px;
    height: 54px;
    font-size: 27px;
  }

  .link-copy strong {
    font-size: 15px;
  }

  .link-copy span {
    font-size: 12px;
  }

  .benefits {
    gap: 6px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .benefit span,
  .benefit strong {
    font-size: 8px;
  }
}
