/* ============ Reset & Base ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #ffffff;
  color: #0a0a0a;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', 'Playfair Display', serif; font-weight: 600; line-height: 1.1; letter-spacing: -0.015em; }
em { font-style: italic; }

:root {
  --ink:        #0a0a0a;
  --ink-2:      #1a1a1a;
  --line:       #e6e6e6;
  --line-2:     #ececec;
  --paper:      #ffffff;
  --paper-2:    #fafafa;
  --paper-3:    #f5f2ee;
  --mute:       #6b6b6b;
  --mute-2:     #999999;
  --whatsapp:   #25D366;
  --whatsapp-2: #128C7E;
  --gold:       #b8944b;
  --silver:     #9a9a9a;
  --bronze:     #a56d3e;
}

.wrap { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.wrap--narrow { max-width: 780px; }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 999px; font-weight: 600; font-size: 15px;
  border: 1.5px solid transparent; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* WhatsApp green stays — highest converting */
.btn--primary {
  background: var(--whatsapp); color: #002d1a;
  box-shadow: 0 12px 30px -12px rgba(37, 211, 102, .55), inset 0 1px 0 rgba(255,255,255,.35);
}
.btn--primary:hover { background: #1fc25c; box-shadow: 0 16px 40px -12px rgba(37, 211, 102, .7); }

.btn--dark {
  background: var(--ink); color: #fff;
  border-color: var(--ink);
}
.btn--dark:hover { background: #000; }

.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: #fff; }

.btn--sm { padding: 9px 16px; font-size: 13px; }
.btn--md { padding: 12px 20px; font-size: 14px; }
.btn--lg { padding: 17px 28px; font-size: 16px; }
.btn--xl { padding: 20px 34px; font-size: 17px; font-weight: 700; letter-spacing: -0.005em; }

/* ============ Sticky mobile CTA ============ */
.sticky-cta {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 50;
  padding: 16px 20px; background: var(--whatsapp); color: #002d1a;
  border-radius: 999px; font-weight: 700; font-size: 15px;
  align-items: center; justify-content: center; gap: 10px;
  box-shadow: 0 18px 40px -12px rgba(37, 211, 102, .55), 0 0 0 4px rgba(255,255,255,.9), 0 0 0 5px rgba(0,0,0,.08);
}
@media (max-width: 720px) {
  .sticky-cta { display: flex; }
  body { padding-bottom: 96px; }
}

/* ============ Topbar ============ */
.topbar {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid var(--line);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 14px; padding-bottom: 14px;
}
.brand { display: inline-flex; align-items: center; gap: 14px; }
.brand__logo { height: 20px; width: auto; display: block; }
.brand__divider {
  width: 1px; height: 20px; background: var(--line);
}
.brand__text {
  font-family: 'Inter', sans-serif; font-weight: 500; font-size: 11px;
  letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink);
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 13px; font-weight: 500; color: var(--mute);
  transition: color .15s ease; position: relative;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav a:hover::after { transform: scaleX(1); }

.nav-cta { flex-shrink: 0; }

@media (max-width: 900px) {
  .nav { display: none; }
  .brand__text { display: none; }
  .brand__divider { display: none; }
}
@media (max-width: 720px) {
  .nav-cta { display: none; }
}

/* ============ Hero ============ */
.hero {
  position: relative; overflow: hidden;
  background: #fff;
  padding: 80px 0 100px;
  border-bottom: 1px solid var(--line);
}
.hero__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(600px 300px at 50% 100%, rgba(0,0,0,.03), transparent 70%);
  pointer-events: none;
}

/* Floating bottles */
.hero__bottle {
  position: absolute;
  width: 260px; height: auto;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 30px 30px rgba(0,0,0,.15));
  will-change: transform;
}
.hero__bottle--left {
  left: -20px; top: 44%;
  animation: bottleFloatL 7s ease-in-out infinite;
}
.hero__bottle--right {
  right: -20px; top: 40%;
  animation: bottleFloatR 8s ease-in-out infinite;
  animation-delay: -2s;
}
@keyframes bottleFloatL {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50%      { transform: translateY(-18px) rotate(-1deg); }
}
@keyframes bottleFloatR {
  0%, 100% { transform: translateY(0) rotate(6deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}
@media (max-width: 1240px) {
  .hero__bottle { width: 200px; }
  .hero__bottle--left { left: -50px; }
  .hero__bottle--right { right: -50px; }
}
@media (max-width: 1000px) {
  .hero__bottle { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero__bottle--left, .hero__bottle--right { animation: none; }
}

.hero__inner { position: relative; z-index: 2; text-align: center; max-width: 900px; margin: 0 auto; }

/* Prize hook (topo do hero — H1) */
.prize-hook {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "media";
  gap: clamp(28px, 4vw, 48px);
  margin: 0 auto 56px;
}
.prize-hook__copy {
  grid-area: copy;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  text-align: center;
  max-width: 1080px; margin: 0 auto;
}
.prize-hook__media {
  grid-area: media;
  display: flex; align-items: center; justify-content: center;
  gap: clamp(24px, 5vw, 72px);
  flex-wrap: wrap;
}
.prize-hook__eyebrow {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-family: 'Inter', sans-serif; font-weight: 600;
  font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase;
}
.prize-hook__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600; line-height: 1.08;
  font-size: clamp(36px, 5.6vw, 74px);
  color: var(--ink); letter-spacing: -0.015em;
  max-width: 18ch;
}
.prize-hook__title em {
  font-style: italic; position: relative;
}
.prize-hook__title em::after {
  content: ''; position: absolute; left: 4%; right: 4%; bottom: 0.05em; height: 0.14em;
  background: var(--ink); opacity: 0.12; z-index: -1; border-radius: 2px;
}

.prize-hook__iphone,
.prize-hook__trip {
  height: auto;
  pointer-events: none;
  will-change: transform;
}
.prize-hook__iphone {
  width: clamp(150px, 20vw, 240px);
  filter: drop-shadow(0 30px 40px rgba(200, 90, 20, .35));
  animation: prizeFloatL 6s ease-in-out infinite;
}
.prize-hook__trip {
  width: clamp(280px, 42vw, 520px);
  border-radius: 18px;
  filter: drop-shadow(0 30px 40px rgba(20, 90, 200, .25));
  animation: prizeFloatR 7s ease-in-out infinite;
  animation-delay: -1.5s;
}
@keyframes prizeFloatL {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50%      { transform: translateY(-14px) rotate(-1deg); }
}
@keyframes prizeFloatR {
  0%, 100% { transform: translateY(0) rotate(4deg); }
  50%      { transform: translateY(-12px) rotate(1deg); }
}
@media (max-width: 780px) {
  .prize-hook {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 36px;
  }
  .prize-hook__copy { order: 2; }
  .prize-hook__iphone {
    order: 1;
    max-width: 200px;
    animation: prizeFloatMobile 5s ease-in-out infinite;
  }
  .prize-hook__trip {
    order: 3;
    max-width: min(360px, 100%);
    border-radius: 14px;
    animation: none;
  }
  @keyframes prizeFloatMobile {
    0%, 100% { transform: translateY(0) rotate(-3deg); }
    50%      { transform: translateY(-8px) rotate(1deg); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .prize-hook__iphone, .prize-hook__trip { animation: none; }
}

.hero__lockup {
  display: flex; flex-direction: column; align-items: center;
  margin-bottom: 56px;
}
.hero__lockup-logo {
  height: 92px; width: auto; max-width: 100%;
  margin-bottom: 22px;
}
.hero__lockup-tag {
  display: flex; align-items: center; gap: 18px;
  margin-bottom: 10px;
}
.hero__lockup-line {
  width: 44px; height: 1px; background: var(--ink); opacity: .35;
}
.hero__lockup-text {
  font-family: 'Instrument Serif', 'Cormorant Garamond', serif;
  font-size: 28px; font-weight: 400; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1;
  white-space: nowrap;
}
.hero__lockup-text em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
}
.hero__lockup-sub {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px; letter-spacing: 0.32em; text-transform: uppercase;
  font-weight: 500; color: var(--mute-2);
}
@media (max-width: 700px) {
  .hero__lockup-logo { height: 60px; margin-bottom: 18px; }
  .hero__lockup-text { font-size: 22px; }
  .hero__lockup-line { width: 28px; }
  .hero__lockup-tag { gap: 12px; margin-bottom: 8px; }
  .hero__lockup-sub { font-size: 9.5px; letter-spacing: 0.28em; }
  .hero__lockup { margin-bottom: 40px; }
}
@media (max-width: 420px) {
  .hero__lockup-logo { height: 44px; }
}

/* legacy eyebrow (still used elsewhere if needed) */
.eyebrow {
  display: inline-block; padding: 7px 16px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(22px, 2.6vw, 34px);
  font-weight: 500;
  color: var(--mute);
  max-width: 720px; margin: 0 auto 24px;
  line-height: 1.25;
}
.hero__title em { color: var(--ink); }
.hero__title em {
  font-style: italic;
  position: relative;
}
.hero__title em::after {
  content: ''; position: absolute; left: 4%; right: 4%; bottom: 0.05em; height: 0.14em;
  background: var(--ink); opacity: 0.12; z-index: -1;
  border-radius: 2px;
}
.hero__sub {
  font-size: clamp(16px, 1.7vw, 19px);
  color: var(--mute); max-width: 720px; margin: 0 auto 44px;
}
.hero__sub strong { color: var(--ink); font-weight: 600; }

/* Group CTA — focus point */
.hero__group-cta {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  padding: 28px; margin: 0 auto 40px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 24px;
  max-width: 640px;
  position: relative;
}
.hero__group-cta__label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12.5px; color: var(--ink); font-weight: 500;
  letter-spacing: 0.02em;
}
.pulse-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--whatsapp);
  box-shadow: 0 0 0 0 rgba(37,211,102,.6);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37,211,102,.6); }
  50% { box-shadow: 0 0 0 8px rgba(37,211,102,0); }
}
.hero__group-cta .btn { width: 100%; max-width: 380px; }
.hero__group-cta__second {
  font-size: 13.5px; color: var(--mute);
  transition: color .15s ease;
}
.hero__group-cta__second span { color: var(--ink); font-weight: 500; }
.hero__group-cta__second:hover { color: var(--ink); }

.hero__proof {
  list-style: none; display: flex; flex-direction: column; gap: 8px;
  font-size: 13px; color: var(--mute); align-items: center;
  padding-top: 32px; border-top: 1px solid var(--line);
  max-width: 640px; margin: 0 auto;
}
.hero__proof strong { color: var(--ink); font-weight: 600; }

/* ============ Section base ============ */
.section { padding: 110px 0; }
.section--dark { background: var(--ink); color: #f5f5f5; }
.section--dark .section__title { color: #fff; }
.section--dark .section__eyebrow { color: #fff; opacity: .7; }
.section--dark .lead { color: #c5c5c5; }
.section--dark .lead strong { color: #fff; }

.section--placas {
  background: var(--ink); color: #f5f5f5;
  position: relative; overflow: hidden;
}
.section--placas::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.04), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.03), transparent 50%);
  pointer-events: none;
}
.section--placas > .wrap { position: relative; z-index: 1; }

.section--red { background: var(--paper-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--premios { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section--portfolio { padding: 100px 0 90px; background: var(--paper-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); overflow: hidden; }

.section__eyebrow {
  display: inline-block; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink); font-weight: 700; margin-bottom: 16px;
  opacity: 0.6;
}
.section__eyebrow.center { display: block; text-align: center; }
.section__eyebrow.light { color: #fff; opacity: 0.7; }
.section__title {
  font-size: clamp(30px, 4.5vw, 56px);
  color: var(--ink); margin-bottom: 24px;
  line-height: 1.08;
}
.section__title.center { text-align: center; max-width: 820px; margin-left: auto; margin-right: auto; }
.section__title.light { color: #fff; }
.section__title em {
  font-style: italic;
  position: relative;
}
.section__title.light em::after {
  content: ''; position: absolute; left: 4%; right: 4%; bottom: 0.05em; height: 0.14em;
  background: #fff; opacity: 0.18; z-index: -1; border-radius: 2px;
}
.section__title:not(.light) em::after {
  content: ''; position: absolute; left: 4%; right: 4%; bottom: 0.05em; height: 0.14em;
  background: var(--ink); opacity: 0.1; z-index: -1; border-radius: 2px;
}
.section__sub { font-size: 16px; color: var(--mute); }
.section__sub.center { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section__sub.light { color: #c5c5c5; }
.lead { font-size: 17px; color: var(--mute); margin-bottom: 20px; }
.lead strong { color: var(--ink); font-weight: 600; }

/* ============ Two column ============ */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.pyramid-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px; padding: 32px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.15);
}
.pyramid-card__row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 16px 0; border-bottom: 1px dashed var(--line);
  font-size: 14px;
}
.pyramid-card__row:first-child { padding-top: 0; }
.pyramid-card__row span:first-child { color: var(--mute); }
.pyramid-card__row em { font-style: normal; color: var(--mute-2); text-decoration: line-through; margin-left: 6px; }
.pyramid-card__price { color: var(--ink) !important; font-weight: 500; text-align: right; }
.pyramid-card__price strong {
  color: var(--ink); font-weight: 700; font-size: 17px; margin-left: 4px;
}
.pyramid-card__foot {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--ink);
  font-family: 'Cormorant Garamond', serif; font-size: 22px; font-style: italic;
  text-align: center; color: var(--ink);
}

/* ============ Benefits ============ */
.benefits {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px;
}
@media (max-width: 900px) { .benefits { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .benefits { grid-template-columns: 1fr; } }

.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px; padding: 32px 28px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.benefit:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.15);
}
.benefit__icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--ink); color: #fff;
  display: grid; place-items: center; font-size: 22px;
  margin-bottom: 22px;
}
.benefit h3 { font-size: 24px; color: var(--ink); margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
.benefit p { font-size: 14.5px; color: var(--mute); }
.benefit p em { color: var(--ink); font-style: italic; }

/* ============ Placas Carousel ============ */
.placas-carousel {
  margin-top: 64px;
  position: relative;
  padding: 40px 0 20px;
  /* Fade masks on sides so out-of-focus placas fade into the black bg */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%);
}
@media (max-width: 600px) {
  .placas-carousel {
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  }
}

.placas-track {
  display: flex; gap: 40px;
  overflow-x: auto; overflow-y: visible;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 40px calc(50% - 180px);
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.placas-track::-webkit-scrollbar { display: none; }
@media (max-width: 600px) {
  .placas-track {
    gap: 20px;
    padding: 30px calc(50% - 130px);
  }
}

.placa-slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  scroll-snap-stop: always;
  width: 320px;
  transition: transform .5s cubic-bezier(.2, .7, .2, 1), opacity .5s ease, filter .5s ease;
  transform: scale(.72);
  opacity: .35;
  filter: saturate(.6);
  cursor: pointer;
}
.placa-slide.is-focused {
  transform: scale(1.05);
  opacity: 1;
  filter: saturate(1);
}
@media (max-width: 600px) {
  .placa-slide { width: 240px; }
  .placa-slide { transform: scale(.78); }
  .placa-slide.is-focused { transform: scale(1); }
}
.placa-slide__inner {
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,.9),
    0 0 0 1px rgba(255,255,255,.06);
  transition: box-shadow .5s ease;
  aspect-ratio: 2 / 3;
}
.placa-slide.is-focused .placa-slide__inner {
  box-shadow:
    0 50px 100px -20px rgba(0,0,0,.95),
    0 0 60px -10px rgba(255,255,255,.08),
    0 0 0 1px rgba(255,255,255,.12);
}
.placa-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }

.placas-caption {
  text-align: center; margin-top: 8px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  min-height: 72px;
  transition: opacity .3s ease;
}
.placas-caption__gmv {
  font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 42px; color: #fff; line-height: 1;
  letter-spacing: -0.02em;
}
.placas-caption__prize {
  font-size: 14px; color: rgba(255,255,255,.7); font-weight: 500;
  letter-spacing: 0.02em;
}

.placas-controls {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  margin-top: 32px;
}
.placa-nav {
  width: 44px; height: 44px; border-radius: 50%;
  background: transparent; color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  display: grid; place-items: center;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.placa-nav:hover { background: #fff; color: var(--ink); border-color: #fff; }
.placa-nav:active { transform: scale(.95); }
.placa-nav:disabled { opacity: .3; cursor: not-allowed; }
.placa-nav:disabled:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,.25); }

.placas-dots { display: flex; gap: 8px; }
.placa-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.25);
  border: 0; padding: 0;
  transition: background .2s ease, width .2s ease;
}
.placa-dot.is-active { background: #fff; width: 24px; border-radius: 4px; }

.plaques__cta {
  text-align: center; margin-top: 56px;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.plaques__cta p { color: rgba(255,255,255,.7); font-size: 15px; }
.section--placas .plaques__cta .btn--ghost {
  color: #fff; border-color: #fff;
}
.section--placas .plaques__cta .btn--ghost:hover {
  background: #fff; color: var(--ink);
}

/* ============ Portfólio (marquee) ============ */
.portfolio__head {
  text-align: center;
  max-width: 720px; margin: 0 auto 56px;
}
.portfolio__head .section__title {
  margin-bottom: 20px;
}
.portfolio__chips {
  list-style: none; display: flex; justify-content: center; flex-wrap: wrap; gap: 8px;
  margin-top: 24px;
}
.portfolio__chips li {
  padding: 6px 14px; border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 12px; font-weight: 500; color: var(--ink);
  letter-spacing: 0.02em;
}

.portfolio-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.portfolio-marquee__track {
  display: flex; gap: 24px;
  width: max-content;
  animation: marquee 90s linear infinite;
}
.portfolio-marquee:hover .portfolio-marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .portfolio-marquee__track { animation: none; }
  .portfolio-marquee { overflow-x: auto; }
}

.portfolio-item {
  flex: 0 0 auto;
  width: 180px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 14px 14px;
  display: flex; flex-direction: column; align-items: center;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.portfolio-item:hover {
  transform: translateY(-4px);
  border-color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.15);
}
.portfolio-item img {
  width: 140px; height: 140px; object-fit: contain;
  display: block; margin-bottom: 12px;
}
.portfolio-item figcaption {
  font-size: 11.5px; font-weight: 500; color: var(--mute);
  letter-spacing: 0.01em; text-align: center;
  line-height: 1.3;
}

@media (max-width: 600px) {
  .section--portfolio { padding: 72px 0 68px; }
  .portfolio__head { margin-bottom: 40px; }
  .portfolio-item { width: 140px; padding: 14px 10px 12px; }
  .portfolio-item img { width: 110px; height: 110px; margin-bottom: 8px; }
  .portfolio-item figcaption { font-size: 10.5px; }
  .portfolio-marquee__track { gap: 16px; animation-duration: 70s; }
}

/* ============ Prêmios (poster) ============ */
.premios-poster {
  margin: 56px auto 0;
  max-width: 760px;
  display: flex; flex-direction: column; align-items: center;
}
.premios-poster__frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 60px 120px -40px rgba(0,0,0,.35),
    0 20px 40px -20px rgba(176,26,0,.25),
    0 0 0 1px rgba(0,0,0,.08);
  transform: rotate(-0.6deg);
  transition: transform .4s ease, box-shadow .4s ease;
}
.premios-poster__frame:hover {
  transform: rotate(0);
  box-shadow:
    0 70px 140px -40px rgba(0,0,0,.45),
    0 24px 50px -20px rgba(176,26,0,.35),
    0 0 0 1px rgba(0,0,0,.08);
}
.premios-poster__frame img {
  display: block; width: 100%; height: auto;
}
.premios-poster__caption {
  margin-top: 28px; text-align: center; max-width: 560px;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.premios-poster__tag {
  display: inline-block; padding: 5px 12px; border-radius: 999px;
  background: var(--ink); color: #fff;
  font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
}
.premios-poster__caption p {
  font-size: 15px; color: var(--mute); line-height: 1.55;
}
.premios-poster__caption p strong { color: var(--ink); font-weight: 600; }
.premios-poster__caption a {
  color: var(--ink); text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 1px; text-decoration-color: rgba(0,0,0,.3);
  transition: text-decoration-color .15s ease;
}
.premios-poster__caption a:hover { text-decoration-color: var(--ink); }

.premios-cta {
  margin-top: 40px;
  display: flex; justify-content: center;
}

@media (max-width: 600px) {
  .premios-poster { margin-top: 40px; }
  .premios-poster__frame { transform: rotate(0); border-radius: 14px; }
  .premios-poster__caption { margin-top: 22px; padding: 0 8px; }
  .premios-cta { margin-top: 32px; }
}

/* ============ Steps ============ */
.steps {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.steps--two { grid-template-columns: repeat(2, 1fr); max-width: 840px; margin-left: auto; margin-right: auto; margin-top: 56px; }
@media (max-width: 900px) { .steps, .steps--two { grid-template-columns: 1fr; } }

.step {
  background: #fff; border: 1px solid var(--line);
  border-radius: 20px; padding: 36px 30px;
  display: flex; flex-direction: column; align-items: flex-start;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.step:hover { border-color: var(--ink); box-shadow: 0 20px 40px -20px rgba(0,0,0,.12); }

.step__num {
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 44px;
  color: var(--ink);
  line-height: 1; margin-bottom: 16px;
}
.step h3 { font-size: 24px; color: var(--ink); margin-bottom: 10px; font-family: 'Inter', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
.step p { font-size: 14.5px; color: var(--mute); margin-bottom: 20px; flex: 1; }

/* Dark variant overrides — must come after base rules */
.step--highlight {
  background: var(--ink); color: #fff; border-color: var(--ink);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,.4);
}
.step--highlight .step__num,
.step--highlight h3 { color: #fff; }
.step--highlight p { color: #c5c5c5; }
.step--highlight p strong { color: #fff; }
.step--highlight:hover { border-color: var(--ink); }

/* ============ CTA Final ============ */
.cta-final {
  padding: 110px 0;
  background: var(--ink); color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(600px 300px at 50% 100%, rgba(255,255,255,.08), transparent 60%);
  pointer-events: none;
}
.cta-final > .wrap { position: relative; }
.cta-final__badge {
  display: inline-block; padding: 7px 14px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  color: #fff; margin-bottom: 28px;
}
.cta-final h2 {
  font-size: clamp(32px, 5.2vw, 60px); color: #fff;
  max-width: 820px; margin: 0 auto 20px;
}
.cta-final h2 em {
  font-style: italic; position: relative;
}
.cta-final h2 em::after {
  content: ''; position: absolute; left: 4%; right: 4%; bottom: 0.05em; height: 0.14em;
  background: #fff; opacity: 0.18; z-index: -1; border-radius: 2px;
}
.cta-final p {
  font-size: 17px; color: #c5c5c5; max-width: 620px; margin: 0 auto 36px;
}
.cta-final__ctas {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
}
.cta-final__second {
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: color .15s ease;
}
.cta-final__second span { color: #fff; font-weight: 500; }
.cta-final__second:hover { color: #fff; }

/* ============ FAQ ============ */
.faq { margin-top: 48px; display: flex; flex-direction: column; gap: 12px; }
.faq__item {
  background: transparent;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 14px; padding: 6px 22px;
  transition: border-color .2s ease, background .2s ease;
}
.faq__item[open] {
  border-color: #fff;
  background: rgba(255,255,255,.04);
}
.faq__item summary {
  padding: 20px 0; cursor: pointer; list-style: none;
  font-weight: 600; font-size: 16px; color: #fff;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+'; font-size: 24px; color: #fff; font-weight: 300;
  transition: transform .2s ease;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item p {
  padding: 0 0 22px; color: #c5c5c5; font-size: 15px; line-height: 1.6;
}

/* ============ Footer ============ */
.footer {
  padding: 44px 0; border-top: 1px solid var(--line);
  background: #fff;
}
.footer__inner {
  display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap;
}
.footer .brand__logo { height: 18px; }
.footer .brand__text { color: var(--mute); }
.footer__note { font-size: 13px; color: var(--mute); }

/* ============ Small screens ============ */
@media (max-width: 600px) {
  .section { padding: 76px 0; }
  .hero { padding: 60px 0 76px; }
  .cta-final { padding: 76px 0; }
  .btn--lg, .btn--xl { padding: 16px 22px; font-size: 15px; width: 100%; }
  .pyramid-card { padding: 24px 20px; }
  .premios__col { padding: 28px 22px; }
  .step { padding: 28px 22px; }
  .prize-list__gmv { font-size: 18px; }
  .prize-list li { flex-direction: column; align-items: flex-start; gap: 4px; }
  .prize-list__prize { text-align: left; }
  .plaque { padding: 32px 20px 28px; }
  .plaque__medal { width: 108px; height: 108px; }
  .plaque__medal-inner { font-size: 32px; }
  .plaque__gmv { font-size: 26px; }
  .hero__group-cta { padding: 22px 18px; }
  .cta-final__badge { font-size: 10px; letter-spacing: 0.18em; }
}
