/* ==========================================================================
   RF MODAS - Link na Bio
   Paleta: preto profundo + dourado da marca
   ========================================================================== */

:root {
  --bg:          #0A0A0B;
  --bg-2:        #101012;
  --surface:     rgba(255, 255, 255, 0.038);
  --surface-2:   rgba(255, 255, 255, 0.058);
  --line:        rgba(212, 175, 55, 0.16);
  --line-soft:   rgba(255, 255, 255, 0.08);

  --gold:        #D4AF37;
  --gold-lt:     #F0D77B;
  --gold-dk:     #9C7A1E;
  --gold-grad:   linear-gradient(135deg, #F0D77B 0%, #D4AF37 42%, #A9821F 100%);

  --wa:          #25D366;
  --wa-dk:       #128C7E;

  --txt:         #F4F2ED;
  --txt-2:       rgba(244, 242, 237, 0.66);
  --txt-3:       rgba(244, 242, 237, 0.44);

  --r-lg:        22px;
  --r-md:        16px;
  --r-sm:        12px;

  --shadow:      0 18px 40px -18px rgba(0, 0, 0, 0.9);
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--txt);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.55;
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  padding-bottom: calc(84px + env(safe-area-inset-bottom));
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; -webkit-tap-highlight-color: transparent; }
ul { list-style: none; }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* ---------- brilho de fundo ---------- */
.glow {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(90px);
}
.glow-top {
  top: -180px; left: 50%; transform: translateX(-50%);
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.20) 0%, transparent 70%);
}
.glow-bottom {
  bottom: -220px; right: -140px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.10) 0%, transparent 70%);
}

/* ---------- container ---------- */
.page {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  padding: 40px 20px 24px;
}

/* ==========================================================================
   CABECALHO
   ========================================================================== */
.hero-head { text-align: center; margin-bottom: 42px; }

.logo-ring {
  width: 118px; height: 118px;
  margin: 0 auto 18px;
  border-radius: 50%;
  padding: 3px;
  background: var(--gold-grad);
  box-shadow: 0 0 34px -6px rgba(212, 175, 55, 0.42);
}
.logo {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: #000;
}

.brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-sub {
  font-size: 0.72rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--txt-3);
  margin-top: 4px;
}

.brand-local {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 7px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-size: 0.79rem;
  color: var(--txt-2);
}
.ico-inline { width: 14px; height: 14px; flex-shrink: 0; color: var(--gold); }

/* ==========================================================================
   BLOCO 1 - OFERTA HEROI (PERSONALIZADAS)
   ========================================================================== */
.hero-offer {
  position: relative;
  padding: 28px 22px 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(212, 175, 55, 0.11) 0%, transparent 60%),
    var(--bg-2);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  overflow: hidden;
}
.hero-offer::before {
  content: '';
  position: absolute; inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.7;
}

.eyebrow {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 5px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.07);
  margin-bottom: 14px;
}

.hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.35rem;
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: 0.01em;
}
.hero-title .gold {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  margin-top: 12px;
  font-size: 0.94rem;
  color: var(--txt-2);
}

.hero-points { margin: 18px 0 22px; display: grid; gap: 9px; }
.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--txt-2);
}
.tick {
  width: 17px; height: 17px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.14);
  border: 1px solid var(--line);
  position: relative;
}
.tick::after {
  content: '';
  position: absolute;
  left: 5px; top: 3px;
  width: 4px; height: 8px;
  border: solid var(--gold);
  border-width: 0 1.8px 1.8px 0;
  transform: rotate(45deg);
}

/* ---------- CTA principal ---------- */
.cta-primary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dk) 100%);
  color: #fff;
  box-shadow: 0 12px 26px -10px rgba(37, 211, 102, 0.6);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.cta-primary .ico { width: 26px; height: 26px; flex-shrink: 0; }
.cta-label { display: flex; flex-direction: column; line-height: 1.3; }
.cta-label strong { font-size: 1.02rem; font-weight: 700; }
.cta-label small { font-size: 0.76rem; opacity: 0.86; }

.cta-primary:hover, .cta-primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px -10px rgba(37, 211, 102, 0.7);
}
.cta-primary:active { transform: translateY(0) scale(0.985); }

/* ==========================================================================
   BLOCOS GERAIS
   ========================================================================== */
.block { margin-bottom: 40px; }

.block-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.block-sub {
  font-size: 0.83rem;
  color: var(--txt-3);
  margin-top: 2px;
  margin-bottom: 18px;
}

/* ==========================================================================
   BLOCO 2 - CATEGORIAS
   ========================================================================== */
.cat-grid { display: grid; gap: 11px; }

.cat-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 11px 14px 11px 11px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.cat-card:hover, .cat-card:focus-visible {
  border-color: var(--line);
  background: var(--surface-2);
  transform: translateX(3px);
}

.cat-thumb {
  width: 58px; height: 58px;
  flex-shrink: 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: #000;
  border: 1px solid var(--line-soft);
}
.cat-thumb img { width: 100%; height: 100%; object-fit: cover; }

.cat-info { flex: 1; min-width: 0; display: flex; flex-direction: column; }
.cat-name { font-size: 0.98rem; font-weight: 600; }
.cat-desc {
  font-size: 0.78rem;
  color: var(--txt-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chev {
  width: 8px; height: 8px;
  flex-shrink: 0;
  border: solid var(--gold);
  border-width: 1.6px 1.6px 0 0;
  transform: rotate(45deg);
  opacity: 0.65;
}

/* ==========================================================================
   BLOCO 3 - LOJA FISICA
   ========================================================================== */
.store-card {
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  background: var(--bg-2);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.store-photo {
  position: relative;
  aspect-ratio: 16 / 11;
  background: #000;
}
.store-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 32%; }
.store-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 45%, rgba(16, 16, 18, 0.95) 100%);
}

.store-body { padding: 16px 18px 18px; }

.store-addr { font-size: 0.98rem; font-weight: 600; line-height: 1.4; }
.store-addr .muted { font-weight: 400; font-size: 0.85rem; color: var(--txt-3); }

.store-hours {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--txt-2);
}

.store-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px; }

.btn-outline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 10px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: rgba(212, 175, 55, 0.06);
  color: var(--gold-lt);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-outline .ico { width: 16px; height: 16px; flex-shrink: 0; }
.btn-outline:hover, .btn-outline:focus-visible { background: rgba(212, 175, 55, 0.13); }
.btn-outline:active { transform: scale(0.98); }

/* ==========================================================================
   BLOCO 4 - CANAIS
   ========================================================================== */
.links { display: grid; gap: 11px; }

.link-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 15px;
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  background: var(--surface);
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease), transform 0.25s var(--ease);
}
.link-row:hover, .link-row:focus-visible {
  border-color: var(--line);
  background: var(--surface-2);
  transform: translateX(3px);
}

.link-ico {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #fff;
}
.link-ico svg { width: 21px; height: 21px; }
.wa-ico { background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dk) 100%); }
.ig-ico { background: linear-gradient(45deg, #F09433 0%, #DC2743 50%, #BC1888 100%); }

.link-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.35; }
.link-txt strong { font-size: 0.97rem; font-weight: 600; }
.link-txt small {
  font-size: 0.78rem;
  color: var(--txt-3);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ==========================================================================
   RODAPE
   ========================================================================== */
.foot { text-align: center; padding-top: 12px; }
.foot-logo { width: 44px; height: 44px; margin: 0 auto 10px; border-radius: 50%; opacity: 0.5; }
.foot p { font-size: 0.72rem; color: var(--txt-3); letter-spacing: 0.05em; }

/* ==========================================================================
   BARRA FIXA
   ========================================================================== */
.sticky-wa {
  position: fixed;
  left: 50%;
  bottom: calc(16px + env(safe-area-inset-bottom));
  transform: translateX(-50%) translateY(120%);
  z-index: 50;
  width: calc(100% - 40px);
  max-width: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dk) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease);
  opacity: 0;
}
.sticky-wa svg { width: 21px; height: 21px; flex-shrink: 0; }
.sticky-wa.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.sticky-wa:active { filter: brightness(0.94); }

/* ==========================================================================
   ENTRADA / MOVIMENTO
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .sticky-wa { transition: none; }
}

/* ==========================================================================
   TELAS MAIORES
   ========================================================================== */
@media (min-width: 520px) {
  .page { padding-top: 56px; }
  .hero-title { font-size: 2.6rem; }
}
