:root {
  --bg: #0a0a0a;
  --bg-soft: #111111;
  --gold: #c9a14a;
  --gold-strong: #e0bc69;
  --gold-soft: rgba(201, 161, 74, 0.18);
  --off-white: #f4efe6;
  --text: #f6f0e7;
  --muted: #cbbfae;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
  --radius: 22px;
  --transition: 0.35s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #070707 0%, #0c0c0c 100%);
  color: var(--text);
  overflow-x: hidden;
  position: relative;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
button {
  font: inherit;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.16;
  z-index: -1;
}

.bg-glow-1 {
  width: 260px;
  height: 260px;
  background: var(--gold);
  top: 100px;
  left: -60px;
}

.bg-glow-2 {
  width: 320px;
  height: 320px;
  background: #8a6d2b;
  right: -80px;
  top: 260px;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    background: rgba(8, 8, 8, 0.72);
    border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, #9d7423 100%);
  color: #111;
  display: grid;
  place-items: center;
  font-weight: 800;
  box-shadow: 0 0 24px rgba(201, 161, 74, 0.28);
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--off-white);
}

.menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu a {
  color: var(--muted);
  transition: var(--transition);
}

.menu a:hover {
  color: var(--off-white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: #141414;
  box-shadow: 0 12px 28px rgba(201, 161, 74, 0.22);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(201, 161, 74, 0.28);
}

.btn-dark {
  background: transparent;
  color: var(--off-white);
  border: 1px solid rgba(201, 161, 74, 0.3);
}

.btn-dark:hover,
.btn-outline:hover {
  background: rgba(201, 161, 74, 0.08);
  border-color: rgba(201, 161, 74, 0.55);
}

.btn-outline {
  color: var(--off-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.btn-full {
  width: 100%;
}

.hero {
  padding: 64px 0 28px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 36px;
  min-height: calc(100vh - 120px);
}

.eyebrow,
.section-tag {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(201, 161, 74, 0.1);
  border: 1px solid rgba(201, 161, 74, 0.25);
  color: var(--gold-strong);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.98;
  margin: 18px 0 18px;
  max-width: 760px;
}

.hero-content h1 span {
  color: var(--gold-strong);
  position: relative;
}

.hero-content p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 620px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-item {
  min-width: 160px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.trust-item strong {
  display: block;
  color: var(--gold-strong);
  font-size: 18px;
  margin-bottom: 4px;
}

.trust-item span {
  color: var(--muted);
  font-size: 14px;
}

.hero-card {
  position: relative;
  min-height: 500px;
}

.floating-card {
  position: absolute;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid rgba(201, 161, 74, 0.16);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.card-main {
  top: 30px;
  right: 10px;
  width: min(100%, 420px);
  padding: 34px;
  animation: floatY 5s ease-in-out infinite;
}

.card-main .tag {
  display: inline-block;
  padding: 8px 12px;
  background: rgba(201, 161, 74, 0.12);
  color: var(--gold-strong);
  border-radius: 999px;
  margin-bottom: 18px;
  font-size: 13px;
  font-weight: 700;
}

.card-main h3 {
  font-size: 30px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--off-white);
}

.card-main p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
}

.mini-link {
  color: var(--gold-strong);
  font-weight: 700;
}

.card-small {
  padding: 18px 22px;
  color: var(--off-white);
  animation: floatY 6s ease-in-out infinite;
}

.card-small strong {
  color: var(--gold-strong);
}

.card-small-1 {
  left: -40px;
  top: 110px;
}

.card-small-2 {
  left: 60px;
  bottom: 110px;
}

.ticker {
  margin-top: 32px;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 50px;
  padding: 16px 0;
  animation: tickerMove 22s linear infinite;
}

.ticker-track span {
  color: var(--gold-strong);
  font-weight: 700;
  white-space: nowrap;
  position: relative;
}

.ticker-track span::after {
  content: "•";
  margin-left: 50px;
  color: rgba(255,255,255,0.3);
}

.section {
  padding: 100px 0;
}

.section-light {
  background: linear-gradient(180deg, #f4efe6 0%, #eee7db 100%);
  color: #171717;
}

.section-dark {
  background: transparent;
}

.section-head {
  margin-bottom: 42px;
}

.section-head.center {
  text-align: center;
}

.section-head h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  margin: 14px 0 12px;
}

.section-head p {
  max-width: 700px;
  color: inherit;
  opacity: 0.78;
  line-height: 1.7;
}

.section-head.center p {
  margin: 0 auto;
}

.highlight-grid,
.offers-grid,
.stores-grid,
.trust-grid {
  display: grid;
  gap: 24px;
}

.highlight-grid {
  grid-template-columns: repeat(3, 1fr);
}

.highlight-card {
  background: #fffaf1;
  border: 1px solid rgba(201, 161, 74, 0.2);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.highlight-card:hover,
.offer-card:hover,
.store-card:hover,
.trust-card:hover {
  transform: translateY(-6px);
}

.badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(201, 161, 74, 0.12);
  color: #7a5911;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 16px;
}

.highlight-card h3,
.offer-card h3,
.trust-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
}

.highlight-card p,
.offer-card p,
.store-card p,
.trust-card p {
  line-height: 1.7;
  opacity: 0.84;
}

.offers-grid {
  grid-template-columns: repeat(3, 1fr);
}

.offer-card {
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(201, 161, 74, 0.14);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.offer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.offer-label,
.offer-store {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
}

.offer-label {
  background: rgba(201, 161, 74, 0.15);
  color: var(--gold-strong);
}

.offer-store {
  background: rgba(255,255,255,0.05);
  color: var(--off-white);
}

.coupon-box {
  margin: 20px 0;
  padding: 16px;
  border-radius: 16px;
  border: 1px dashed rgba(201, 161, 74, 0.35);
  background: rgba(201, 161, 74, 0.06);
  color: var(--gold-strong);
  font-weight: 800;
  text-align: center;
  letter-spacing: 0.04em;
}

.stores-grid {
  grid-template-columns: repeat(4, 1fr);
}

.store-card {
  display: block;
  background: #fffaf1;
  color: #151515;
  border-radius: 22px;
  border: 1px solid rgba(201, 161, 74, 0.18);
  padding: 26px;
  box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.store-logo {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--gold) 0%, #8f6821 100%);
  color: #131313;
  font-weight: 800;
  font-size: 22px;
}

.store-card h3 {
  margin-bottom: 12px;
  font-size: 24px;
}

.store-card span {
  display: inline-block;
  margin-top: 16px;
  color: #8b6820;
  font-weight: 700;
}

.ebook-section {
  position: relative;
}

.ebook-box {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 34px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(201, 161, 74, 0.16);
  box-shadow: var(--shadow);
}

.ebook-content h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  margin: 14px 0 16px;
}

.ebook-content p {
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
}

.ebook-list {
  list-style: none;
  margin-top: 24px;
  display: grid;
  gap: 14px;
}

.ebook-list li {
  position: relative;
  padding-left: 26px;
  color: var(--off-white);
}

.ebook-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold-strong);
}

.ebook-form {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebook-card {
  width: 100%;
  max-width: 420px;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201, 161, 74, 0.14);
}

.ebook-card h3 {
  font-size: 26px;
  margin-bottom: 18px;
}

.ebook-card input {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.03);
  padding: 0 16px;
  color: var(--off-white);
  margin-bottom: 14px;
  outline: none;
}

.ebook-card input::placeholder {
  color: rgba(255,255,255,0.5);
}

.ebook-card small {
  display: block;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 12px;
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trust-card {
  background: #fffaf1;
  border-radius: 22px;
  border: 1px solid rgba(201, 161, 74, 0.2);
  padding: 28px;
  box-shadow: 0 16px 34px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.footer {
  padding: 36px 0 44px;
  background: #080808;
  border-top: 1px solid var(--line);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  margin-bottom: 12px;
}

.footer p {
  color: var(--muted);
  max-width: 420px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: var(--muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold-strong);
}

.reveal {
  animation: fadeUp 0.9s ease both;
}

.delay-1 {
  animation-delay: 0.15s;
}

.delay-2 {
  animation-delay: 0.3s;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .hero-grid,
  .ebook-box,
  .highlight-grid,
  .offers-grid,
  .stores-grid,
  .trust-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-card {
    min-height: 420px;
  }

  .menu {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero-grid,
  .ebook-box,
  .highlight-grid,
  .offers-grid,
  .stores-grid,
  .trust-grid,
  .footer-wrap {
    grid-template-columns: 1fr;
    display: grid;
  }

  .nav {
    min-height: 70px;
  }

  .nav .btn-outline {
    display: none;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-card {
    min-height: 360px;
  }

  .card-main {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
  }

  .card-small-1,
  .card-small-2 {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .section {
    padding: 72px 0;
  }

  .hero-content p,
  .section-head p {
    font-size: 16px;
  }

  .footer-links {
    gap: 12px;
  }
}/*imagens das marcas*/
 .store-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.store-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: #fff;
  padding: 5px;
}