/* =========================================================
   VANTAGO — CSS OFICIAL (PWA / RESPONSIVO / SUAVIZADO)
   ========================================================= */

:root {
  --orange: #F84F28;
  --orange-dark: #dd3f1d;
  --black: #000000;
  --white: #ffffff;
  --ink: #111111;
  --muted: #686868;
  --line: #e9e9e9;
  --soft: #f8f9fa;
  --container: 1240px;
  --radius: .375rem;
  --container-max-width: 1240px; 
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(calc(100% - 48px), var(--container-max-width));
  margin-inline: auto;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.max-w-3xl { max-width: 780px; margin-inline: auto; }

/* -------------------------
   Hero
   ------------------------- */

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 45%, rgba(248, 79, 40, .09), transparent 25%),
    linear-gradient(180deg, #fff 0%, #fff 72%, #f5f3ef 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  background-image:
    linear-gradient(rgba(0,0,0,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, black, transparent 80%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(0px);
  pointer-events: none;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__glow--one {
  width: 360px;
  height: 360px;
  right: -160px;
  top: 160px;
  background: rgba(248, 79, 40, .07);
}

.hero__glow--two {
  width: 240px;
  height: 240px;
  left: -140px;
  bottom: 60px;
  background: rgba(248, 79, 40, .035);
}

/* -------------------------
   Navigation
   ------------------------- */

.hero-space { height: 100px }
.bar-header { position: fixed; width: 100%; top: 20px;; z-index: 10 } 
.header-desktop { background: #fff; border-radius: .375rem; padding: 12px 24px; box-shadow: 0 0 8px #00000014 }

.nav {
  position: relative;
  z-index: 20;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 25px;
  font-weight: 760;
  letter-spacing: -1.1px;
}

.brand__mark {
  width: 34px;
  height: 30px;
  color: var(--orange);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: auto;
  margin-right: 42px;
}

.nav__links a {
  position: relative;
  font-size: 14px;
  font-weight: 520;
  color: #505050;
  transition: color .2s ease;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 0;
  height: 1px;
  background: var(--orange);
  transition: width .2s ease;
}

.nav__links a:hover {
  color: var(--black);
}

.nav__links a:hover::after {
  width: 100%;
}

/* Hamburguer Button */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 30;
}

.menu-toggle span {
  width: 100%;
  height: 2.5px;
  background: var(--ink);
  border-radius: 4px;
  transition: transform 0.3s ease;
}

/* Sidebar Mobile (Esquerda para Direita) */
.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(4px);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
  opacity: 1;
  pointer-events: auto;
  box-shadow: 10px 0 30px rgba(0,0,0,0.1);
}

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  max-width: 80vw;
  background: #ffffff;
  z-index: 50;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 10px 0 30px rgba(0,0,0,0);
  padding: 24px;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.sidebar__close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
}

.sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
}

.sidebar__link {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}

.sidebar__footer {
  margin-top: auto;
  padding-top: 20px;
}

.w-full { width: 100%; }

/* -------------------------
   Buttons
   ------------------------- */

.button {
  border: 0;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  padding: 0 21px;
  border-radius: .375rem;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1), background .2s ease;
}

.button svg {
  width: 18px;
  height: 18px;
}

.button--small {
  min-height: 43px;
  padding-inline: 18px;
  border-radius: .375rem;
  font-size: 13px;
}

.button--primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 10px 28px rgba(248, 79, 40, .22);
}

.button--primary:hover {
  transform: translateY(-2px);
  background: var(--orange-dark);
  box-shadow: 0 14px 34px rgba(248, 79, 40, .28);
}

.button--outline {
  border: 1px solid #dedede;
  color: #222;
  background: rgba(255,255,255,.7);
}

.button--outline:hover {
  border-color: #bdbdbd;
  transform: translateY(-1px);
}

.button--ghost {
  color: #222;
  background: transparent;
}

.button--ghost:hover {
  background: #f4f4f4;
}

/* -------------------------
   Hero content
   ------------------------- */

.hero__content {
  position: relative;
  z-index: 5;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 40px;
  padding-top: 42px;
  padding-bottom: 45px;
}

.hero__copy {
  max-width: 610px;
  padding-bottom: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  margin-bottom: 24px;
  border: 1px solid #ededed;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: #4b4b4b;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .1px;
  box-shadow: 0 8px 25px rgba(0,0,0,.025);
}

.eyebrow--center { margin-inline: auto; }

.eyebrow__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(248,79,40,.10);
}

h1 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(52px, 5.2vw, 76px);
  line-height: .99;
  letter-spacing: -4.2px;
  font-weight: 780;
}

h1 span {
  display: block;
  color: var(--orange);
}

.hero__description {
  max-width: 560px;
  margin: 27px 0 0;
  color: #5e5e5e;
  font-size: 18px;
  line-height: 1.62;
  letter-spacing: -.15px;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 34px;
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
}

.trust__avatars { display: flex; }

.trust__avatars span {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  margin-left: -7px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: #151515;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
}

.trust__avatars span:first-child { margin-left: 0; background: var(--orange); }
.trust__avatars span:nth-child(2) { background: #3d3d3d; }
.trust__avatars span:nth-child(3) { background: #8b8b8b; }
.trust__avatars span:last-child { background: #eee; color: #555; }

.hero__trust strong, .hero__trust small { display: block; }
.hero__trust strong { font-size: 12px; font-weight: 750; }
.hero__trust small { margin-top: 3px; color: #7a7a7a; font-size: 11px; }

/* -------------------------
   Product visual
   ------------------------- */

.hero__visual {
  position: relative;
  min-height: 570px;
  display: grid;
  place-items: center;
  perspective: 1300px;
}

.visual__halo {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(248,79,40,.13), rgba(248,79,40,0) 67%);
}

.dashboard {
  position: relative;
  z-index: 3;
  width: min(100%, 560px);
  min-height: 475px;
  overflow: hidden;
  border: 1px solid #dedede;
  border-radius: 22px;
  background: #fff;
  box-shadow:
    0 45px 90px rgba(0,0,0,.12),
    0 10px 28px rgba(0,0,0,.07);
  transform: rotateY(-7deg) rotateX(2deg) rotateZ(1deg);
  /* Transição ultra-suave ao tirar o mouse */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dashboard__topbar {
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  border-bottom: 1px solid #eee;
}

.dashboard__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 750;
}

.dashboard__crown {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #fff3ef;
  color: var(--orange);
}

.dashboard__crown svg { width: 19px; height: 17px; }

.dashboard__profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.profile__name { color: #777; font-size: 10px; }

.profile__avatar {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 10px;
  font-weight: 750;
}

.dashboard__body { padding: 22px; }

.welcome {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  border-radius: 16px;
  background: #111;
  color: #fff;
}

.welcome small { color: #a8a8a8; font-size: 10px; }

.balance {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-top: 7px;
}

.balance strong {
  font-size: 39px;
  line-height: 1;
  letter-spacing: -2px;
}

.balance span { color: #aaa; font-size: 11px; }

.balance__crown {
  color: var(--orange);
  font-size: 31px;
  opacity: .95;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 11px;
}

.stat {
  padding: 14px;
  border: 1px solid #ededed;
  border-radius: 13px;
  background: #fff;
}

.stat__label, .stat small {
  display: block;
  color: #8b8b8b;
  font-size: 9px;
}

.stat strong {
  display: block;
  margin: 5px 0 2px;
  font-size: 20px;
  letter-spacing: -.6px;
}

.dashboard__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 2px 11px;
}

.dashboard__section-head strong { font-size: 12px; }

.dashboard__section-head a {
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
}

.activity {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 4px;
  border-bottom: 1px solid #f0f0f0;
}

.activity__symbol {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #fff2ee;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
}

.activity strong, .activity small { display: block; }
.activity strong { font-size: 10px; }
.activity small { margin-top: 3px; color: #929292; font-size: 8px; }
.activity b { color: var(--orange); font-size: 10px; }

.reward-preview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 17px;
  padding: 13px 15px;
  border-radius: 13px;
  background: #fff4f0;
}

.reward-preview small, .reward-preview strong { display: block; }
.reward-preview small { color: #a66c5e; font-size: 8px; }
.reward-preview strong { margin-top: 4px; font-size: 10px; }

.reward-preview > span {
  width: 27px;
  height: 27px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: 14px;
}

/* Floating cards */

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(0,0,0,.11);
  backdrop-filter: blur(10px);
  /* Transição ultra-suave ao tirar o mouse */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.floating-card small, .floating-card strong { display: block; }
.floating-card small { color: #888; font-size: 8px; }
.floating-card strong { margin-top: 3px; font-size: 13px; }

.floating-card__icon, .reward__icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.floating-card--points { top: 92px; left: 0; }
.floating-card--reward { right: -5px; bottom: 78px; }

.reward__icon {
  background: #111;
  font-size: 11px;
  font-weight: 800;
}

.hero__bottom {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 26px;
  color: #8a8a8a;
  font-size: 11px;
  font-weight: 520;
}

.bottom__line {
  height: 1px;
  flex: 1;
  background: #e8e8e8;
}

/* Floating cards */

.floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e7e7e7;
  border-radius: 14px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 18px 40px rgba(0,0,0,.11);
  backdrop-filter: blur(10px);
  animation: float 5s ease-in-out infinite;
}

.floating-card small,
.floating-card strong {
  display: block;
}

.floating-card small {
  color: #888;
  font-size: 8px;
}

.floating-card strong {
  margin-top: 3px;
  font-size: 13px;
}

.floating-card__icon,
.reward__icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  font-size: 17px;
  font-weight: 500;
}

.floating-card--points {
  top: 92px;
  left: 0;
}

.floating-card--reward {
  right: -5px;
  bottom: 78px;
  animation-delay: -2.1s;
}

.reward__icon {
  background: #111;
  font-size: 11px;
  font-weight: 800;
}

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

/* -------------------------
   Seções Complementares
   ------------------------- */

.section {
  padding: 100px 0;
  position: relative;
}

.section--soft {
  background: #fafafa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section__head {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 56px;
}

.section__tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--orange);
  margin-bottom: 12px;
}

.section__title {
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -2px;
  font-weight: 780;
  margin-top: 0;
}

.section__subtitle {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin-top: 14px;
}

.grid {
  display: grid;
  gap: 24px;
}

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

/* Cards com Transição Ultra-Suave */
.card {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0,0,0,.03);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease, box-shadow 0.4s ease;
  will-change: transform;
}

.card:hover {
  border-color: rgba(248, 79, 40, 0.4);
  box-shadow: 0 20px 48px rgba(248, 79, 40, 0.08);
}

.card__icon {
  font-size: 32px;
  margin-bottom: 18px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card__icon .thumbX { filter:grayscale(1); }

.card h3 {
  font-size: 20px;
  font-weight: 750;
  margin: 0 0 6px;
  letter-spacing: -0.5px;
}

.card__accent {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 12px;
}

.card__text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.feature-box {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.feature-box:hover {
  transform: translateY(-3px);
  border-color: #d0d0d0;
}

.feature-box__num {
  font-size: 11px;
  font-weight: 800;
  color: var(--orange);
  background: #fff3ef;
  padding: 4px 8px;
  border-radius: 6px;
}

.feature-box h4 {
  font-size: 16px;
  font-weight: 750;
  margin: 16px 0 6px;
}

.feature-box p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

.tags-cloud {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 40px;
}

.tags-cloud span {
  color: var(--ink);
  background: #f0f0f0;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
  margin: 3px;
}

.rewards-grid {
  max-width: 1000px;
  margin-inline: auto;
}

.reward-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reward-card__badge {
  font-size: 10px;
  font-weight: 750;
  text-transform: uppercase;
  color: var(--orange);
  background: #fff3ef;
  padding: 4px 8px;
  border-radius: 6px;
  display: inline-block;
}

.reward-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 14px 0 2px;
  letter-spacing: -1px;
}

.reward-card p {
  color: var(--muted);
  font-size: 12px;
  margin: 0;
}

.reward-card__foot {
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reward-card__foot strong {
  font-size: 14px;
  color: var(--orange);
}

.reward-card__btn {
  font-size: 11px;
  font-weight: 750;
  background: var(--ink);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 8px;
}

.journey-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.journey-step {
  background: #fff;
  border: 1px solid var(--line);
  padding: 24px 20px;
  border-radius: 18px;
  width: 180px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0,0,0,.02);
}

.journey-step__circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  font-size: 14px;
}

.journey-step strong { display: block; font-size: 13px; }
.journey-step small { color: var(--muted); font-size: 11px; margin-top: 4px; display: block; }
.journey-arrow { color: #ccc; font-size: 20px; font-weight: bold; }

.journey-quote {
  font-size: 20px;
  font-weight: 750;
  color: var(--orange);
  margin-top: 48px;
  font-style: italic;
}

.partner-box {
  background: linear-gradient(135deg, #ffffff 0%, #fcfbfb 100%);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.04);
}

.partner-box h2 {
  font-size: 32px;
  letter-spacing: -1.5px;
  margin: 12px 0;
}

.partner-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.partner-list li {
  font-size: 13px;
  font-weight: 700;
  color: #333;
  margin-bottom: 8px;
}

.partner-card-demo {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.partner-card-demo__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.partner-card-demo__icon { font-size: 28px; }
.partner-card-demo p { font-size: 12px; color: var(--muted); line-height: 1.5; margin: 0; }

.league-mockup {
  max-width: 440px;
  margin: 0 auto 32px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.06);
  text-align: left;
}

.league-mockup__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 12px;
  margin-bottom: 16px;
}

.league-mockup__header strong { font-size: 15px; }
.league-mockup__header span { font-size: 11px; color: var(--muted) }

.league-mockup__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  text-align: center;
}

.league-mockup__stats div {
  background: #f9f9f9;
  padding: 10px;
  border-radius: 10px;
}

.league-mockup__stats strong { display: block; font-size: 15px; color: var(--ink); }
.league-mockup__stats small { font-size: 9px; color: var(--muted); }

.quote-text {
  font-size: 18px;
  font-weight: 700;
  color: #444;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.plan-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
  border-color: #ccc;
}

.plan-card--featured {
  border: 2px solid var(--orange);
  box-shadow: 0 15px 35px rgba(248, 79, 40, 0.12);
}

.plan-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 10px;
}

.plan-card h4 { font-size: 16px; margin: 0 0 6px; }
.plan-card__limit { font-size: 12px; color: var(--muted); margin: 0 0 24px; }

.section--cta {
  background: linear-gradient(180deg, #ffffff 0%, #fff7f5 100%);
  border-top: 1px solid var(--line);
}

.site-footer {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 12px;
}

.site-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.site-footer__tagline {
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

/* -------------------------
   RESPONSIVIDADE E MOBILE EXCELÊNCIA
   ------------------------- */

@media (max-width: 1050px) {
  .nav__links, .nav__cta-desktop { display: none; }
  .menu-toggle { display: flex; }

  .hero__content {
    grid-template-columns: 1fr;
    padding-top: 24px;
    gap: 20px;
  }

  .hero__copy {
    max-width: 100%;
    text-align: center;
    margin-inline: auto;
    padding-bottom: 0;
  }

  .hero__description { margin-inline: auto; }
  .hero__actions, .hero__trust { justify-content: center; }

  .grid--3 { grid-template-columns: 1fr; }
  .partner-box { grid-template-columns: 1fr; padding: 32px; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-arrow { display: none; }
  .journey-flow { flex-direction: column; }
  .journey-step { width: 100%; }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .hero { min-height: auto; }
  .nav { height: 52px; }

  h1 {
    font-size: clamp(38px, 10vw, 56px);
    letter-spacing: -2px;
  }

  .hero__description {
    font-size: 15px;
    line-height: 1.5;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button { width: 100%; }

  .hero__trust {
    text-align: left;
    justify-content: center;
  }

  /* Ajuste Fino do Hero no Mobile */
  .hero__visual {
    min-height: auto;
    margin-top: 30px;
    padding-bottom: 20px;
  }

  .dashboard {
    width: 100%;
    min-height: auto;
    transform: none !important;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }

  .floating-card {
    margin-bottom: 12px;
    justify-content: center;
  }

  .floating-card--points, .floating-card--reward {
    top: auto
  }

  .stats { gap: 6px; }
  .stat { padding: 10px 6px; }
  .stat strong { font-size: 16px; }

  .hero__bottom { padding-bottom: 20px; }
  .bottom__line { display: none; }
}

@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
}


/* =========================================================
   MODAL MODERNO & DESCONTRAÍDO — CREATING MY LEAGUE
   ========================================================= */

/* Backdrop com Animação Ultra-Rápida (180ms) */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(17, 17, 17, 0.45);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s cubic-bezier(0.16, 1, 0.3, 1), 
              visibility 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Card do Modal */
.modal-card {
  background: #ffffff;
  border-radius: 28px;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 32px 32px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  transform: scale(0.95) translateY(10px);
  transition: transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
  transform: scale(1) translateY(0);
}

/* Botão Fechar */
.modal-card__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f4f4f4;
  border: none;
  font-size: 14px;
  color: #666;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s, transform 0.2s;
}

.modal-card__close:hover {
  background: #eaeaea;
  transform: scale(1.05);
}

/* Cabeçalho */
.modal-card__header {
  text-align: center;
  margin-bottom: 28px;
}

.modal-card__header h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--ink);
}

.modal-card__header p {
  margin: 6px 0 0;
  font-size: 13px;
  color: var(--muted);
}

/* Formulário Minimalista (Underline Only) */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group-clean {
  position: relative;
  display: flex;
  flex-direction: column;
}

.form-group-clean label {
  font-size: 11px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
  margin-bottom: 4px;
  transition: color 0.2s;
}

/* Input com Apenas Borda Inferior */
.input-underline {
  width: 100%;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  border-radius: 0;
  padding: 8px 30px 8px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: transparent;
  outline: none;
  transition: border-color 0.2s ease;
}

.input-underline:focus {
  border-bottom-color: var(--orange);
}

.form-group-clean:focus-within label {
  color: var(--orange);
}

/* Ícone de Check de Validação */
.input-valid-icon {
  position: absolute;
  right: 4px;
  bottom: 8px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #22c55e;
  color: #ffffff;
  font-size: 10px;
  font-weight: 900;
  display: grid;
  place-items: center;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.2s ease, transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  pointer-events: none;
}

/* Exibe o ícone de verificado quando o campo estiver válido */
.form-group-clean.is-valid .input-valid-icon {
  opacity: 1;
  transform: scale(1);
}

.form-group-clean.is-valid .input-underline {
  border-bottom-color: #22c55e;
}

/* Caixa de Aviso Leve e Descontraída (Tom Laranja Suave) */
.modal-info-box-soft {
  background: #fff5f2;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.modal-info-box-soft span {
  font-size: 20px;
  line-height: 1;
}

.modal-info-box-soft p {
  font-size: 12px;
  line-height: 1.5;
  color: #55403a;
  margin: 0;
  font-weight: 500;
}

/* Custom Scrollbar Interno */
.modal-card::-webkit-scrollbar {
  width: 6px;
}
.modal-card::-webkit-scrollbar-thumb {
  background: #e0e0e0;
  border-radius: 10px;
}

/* Badge comemoração modal sucesso */
.success-icon-badge {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #fff5f2;
  border: 2px solid #ffe3db;
  display: grid;
  place-items: center;
  font-size: 32px;
  margin: 0 auto;
  animation: popSuccess 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popSuccess {
  0% { transform: scale(0.3) rotate(-15deg); opacity: 0; }
  70% { transform: scale(1.1) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}


/* =========================================================
   NOVAS SEÇÕES - HEROS
   ========================================================= */

.section-hero {
  width: 100%;
  background: #202020;
  display: grid;
  grid-template-columns: 1fr 1fr; 
  overflow: hidden; 
}

.section-hero .col-text {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  padding-left: max(20px, calc((100vw - var(--container-max-width)) / 2));
  padding-right: 60px; 
  padding-top: 60px;
  padding-bottom: 60px;
}

.section-hero .col-text .bar-text {
  max-width: 540px; 
}

.section-hero .col-text .bar-text .section__title { 
  color: var(--orange); 
  margin-bottom: 1rem; 
}

.section-hero .col-text .bar-text .section__subtitle { 
  color: var(--white); 
}


.section-hero .col-full-image {
  width: 100%;
  height: 100%;
  max-height: 900px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.section-hero .col-full-image .thumb-hero {
  object-fit: cover; 
  object-position: right center;
  width: 100%;
  height: 100%;
  max-height: 900px;
  margin-right: 0;
}

@media (max-width: 992px) {
  .section-hero {
    grid-template-columns: 1fr;
    height: auto;
  }
  
  .section-hero .col-text {
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .section-hero .col-full-image {
    max-height: 500px;
  }

  .section-hero .col-full-image .thumb-hero {
    object-fit: contain; 
  }
}

/* =========================================================
   PAINEL DASHBOARD — MERCADO DE RECOMPENSAS
   ========================================================= */

.rewards-dashboard {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 24px;
  max-width: 1040px;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.06);
}

/* Topbar do Painel */
.rewards-dashboard__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
  background: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}

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

.rewards-dashboard__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #111111;
  color: #ffffff;
  display: grid;
  place-items: center;
}

.rewards-dashboard__user small {
  display: block;
  font-size: 10px;
  color: var(--muted);
}

.rewards-dashboard__user strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 750;
}

.rewards-dashboard__balance {
  display: flex;
  align-items: center;
  gap: 10px;
}

.balance-badge {
  background: #fff4f0;
  border: 1px solid #ffe2d9;
  padding: 6px 14px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
}

.balance-badge span {
  color: var(--orange);
}

.reset-pts-btn {
  background: #f4f4f4;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--muted);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.reset-pts-btn:hover {
  background: #e9e9e9;
  color: var(--ink);
  transform: rotate(90deg);
}

/* Nav em Abas */
.rewards-dashboard__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: #fafafa;
  border-bottom: 1px solid #f0f0f0;
  overflow-x: auto;
}

.rewards-dashboard__nav .tab-btn {
  background: transparent;
  border: none;
  padding: 8px 16px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.rewards-dashboard__nav .tab-btn:hover {
  color: var(--ink);
  background: #f0f0f0;
}

.rewards-dashboard__nav .tab-btn.active {
  background: #ffffff;
  color: var(--orange);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Body & Grid Interna */
.rewards-dashboard__body {
  padding: 28px;
}

.reward-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.reward-card:hover {
  transform: translateY(-3px);
  border-color: #d8d8d8;
  box-shadow: 0 12px 28px rgba(0,0,0,0.05);
}

.reward-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.reward-card__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff3ef;
  color: var(--orange);
  display: grid;
  place-items: center;
}

.reward-card__badge {
  font-size: 10px;
  font-weight: 750;
  color: var(--muted);
  background: #f4f4f4;
  padding: 4px 10px;
  border-radius: 6px;
}

.reward-card__content h3 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 4px;
}

.reward-card__content p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}

.reward-card__foot {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #f4f4f4;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.reward-card__foot strong {
  font-size: 13px;
  color: var(--orange);
}

.reward-card__btn {
  font-size: 11px;
  font-weight: 750;
  background: var(--ink);
  color: #ffffff;
  border: none;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.reward-card__btn:hover {
  background: var(--orange);
}

/* Card Resgatado */
.reward-card.redeemed {
  border-color: #22c55e !important;
  background: #f0fdf4 !important;
}

.reward-card.redeemed .reward-card__btn {
  background: #22c55e !important;
  cursor: default;
}

.voucher-code {
  display: block;
  font-size: 10px;
  font-weight: 800;
  color: #15803d;
  background: #dcfce7;
  padding: 4px 8px;
  border-radius: 6px;
  margin-top: 8px;
  text-align: center;
  border: 1px dashed #86efac;
}

@media (max-width: 760px) {
  .rewards-dashboard__topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .rewards-dashboard__balance {
    width: 100%;
    justify-content: space-between;
  }
  .rewards-dashboard__body {
    padding: 16px;
  }
}