:root {
  --bg-black: #000000;
  --bg-black-soft: rgba(0, 0, 0, 0.78);
  --text-white: #ffffff;
  --accent: #e54607;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-strong: 0 10px 30px rgba(0, 0, 0, 0.35);
}

/* RESET BÁSICO */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #0a0a0a;
  color: var(--text-white);
  font-family: Arial, Helvetica, sans-serif;
}

/* TOPBAR */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  background: var(--accent);
  overflow: hidden;
  z-index: 9999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-track {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 42px;
  white-space: nowrap;
  width: max-content;
  padding-left: 100%;
  animation: topbarMarquee 22s linear infinite;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: #fff;
}

.topbar-track span {
  opacity: 0.98;
}

@keyframes topbarMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* HEADER */
.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  width: 100%;
  z-index: 9998;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: var(--bg-black-soft);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-strong);
  border-bottom: 1px solid var(--border-soft);
}

.header-inner {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  position: relative;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-img {
  display: block;
  width: auto;
  max-width: 220px;
  max-height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,0.28));
}

/* CTA */
.header-cta {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 24px rgba(229, 70, 7, 0.28);
  transition: transform 0.25s ease, opacity 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover {
  transform: translateY(-50%) scale(1.03);
  box-shadow: 0 14px 30px rgba(229, 70, 7, 0.34);
}

.header-cta:active {
  transform: translateY(-50%) scale(0.98);
}

/* RESPONSIVO */
@media (max-width: 768px) {
  .topbar {
    height: 32px;
  }

  .site-header {
    top: 32px;
  }

  .header-inner {
    min-height: 72px;
    padding: 12px 14px;
  }

  .logo-img {
    max-width: 172px;
    max-height: 42px;
  }

  .header-cta {
    display: none;
  }

  .topbar-track {
    gap: 28px;
    font-size: 11px;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* IMAGEM */
.hero-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
  z-index: 1;
}

/* OVERLAY ESCURO */
.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.7)
  );
  z-index: 2;
}

/* CONTEÚDO */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 700px;
}

/* TÍTULO */
.hero h1 {
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 15px;
}

/* TEXTO */
.hero p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 25px;
}

/* BOTÃO */
.hero-cta {
  display: inline-block;
  background: #e54607;
  color: #fff;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  font-size: 15px;
  box-shadow: 0 10px 25px rgba(229, 70, 7, 0.4);
  transition: 0.3s;
}

.hero-cta:hover {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 26px;
  }

  .hero p {
    font-size: 14px;
  }

  .hero {
    height: 90vh;
  }
}
/* =========================
   FONTES
========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Teko:wght@500;600;700&display=swap');

/* =========================
   VARIÁVEIS
========================= */
:root {
  --bg: #050505;
  --bg-soft: rgba(0, 0, 0, 0.72);
  --bg-soft-2: rgba(0, 0, 0, 0.45);
  --text: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.84);
  --text-muted: rgba(255, 255, 255, 0.68);
  --accent: #e54607;
  --accent-2: #ff6a2a;
  --accent-dark: #b93402;
  --border-soft: rgba(255, 255, 255, 0.08);
  --shadow-dark: 0 15px 40px rgba(0, 0, 0, 0.34);
  --shadow-accent: 0 10px 30px rgba(229, 70, 7, 0.35);
  --radius-btn: 999px;
}

/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

/* =========================
   TOPBAR PREMIUM
========================= */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 34px;
  z-index: 9999;
  overflow: hidden;
  background: linear-gradient(90deg, #c63a05, #e54607);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar-track {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 38px;
  white-space: nowrap;
  width: max-content;
  padding-left: 100%;
  animation: topbarMarquee 22s linear infinite;
}

.topbar-track span {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3px;
  color: #fff;
  text-transform: uppercase;
  opacity: 0.96;
}

@keyframes topbarMarquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =========================
   HEADER
========================= */
.site-header {
  position: fixed;
  top: 34px;
  left: 0;
  width: 100%;
  z-index: 9998;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease, border-color 0.35s ease;
}

.site-header.scrolled {
  background: rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  box-shadow: var(--shadow-dark);
}

.header-inner {
  position: relative;
  width: 100%;
  max-width: 1220px;
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
}

.logo-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.logo-img {
  display: block;
  width: auto;
  max-width: 180px;
  max-height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.14));
}

.header-cta {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(229, 70, 7, 0.34);
  transition: transform 0.22s ease, box-shadow 0.22s ease, opacity 0.22s ease;
}

.header-cta:hover {
  transform: translateY(-50%) scale(1.04);
  box-shadow: 0 14px 30px rgba(229, 70, 7, 0.45);
}

/* =========================
   HERO
========================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 118px;
  background: #000;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
  transform: scale(1.04);
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.04);
  }
  100% {
    transform: scale(1.08);
  }
}

/* overlay mais premium e harmonizado */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(to bottom, rgba(0,0,0,0.18), rgba(0,0,0,0.72)),
    linear-gradient(to right, rgba(0,0,0,0.35), rgba(0,0,0,0.12) 45%, rgba(0,0,0,0.38));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 38%, rgba(120, 50, 255, 0.11), transparent 28%),
    radial-gradient(circle at 50% 72%, rgba(229, 70, 7, 0.08), transparent 30%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 860px;
  text-align: center;
  padding: 0 22px 36px;
  animation: heroFadeUp 0.9s ease both;
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* badge opcional acima da headline */
.hero-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 14px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* headline forte */
.hero h1 {
  font-family: 'Teko', sans-serif;
  font-size: 82px;
  line-height: 0.9;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 12px;
  text-shadow:
    0 8px 22px rgba(0,0,0,0.28),
    0 2px 8px rgba(0,0,0,0.35);
}

/* parte destacada se quiser */
.hero h1 .accent {
  color: #fff;
  text-shadow:
    0 0 14px rgba(229, 70, 7, 0.2),
    0 8px 22px rgba(0,0,0,0.28);
}

/* subheadline premium */
.hero p {
  max-width: 560px;
  margin: 0 auto 24px;
  color: var(--text-soft);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  text-wrap: balance;
}

/* mini benefícios abaixo da subheadline */
.hero-points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.09);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* CTA hero */
.hero-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 34px;
  border-radius: var(--radius-btn);
  background: linear-gradient(180deg, var(--accent-2), var(--accent));
  color: #fff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  box-shadow:
    0 12px 30px rgba(229, 70, 7, 0.38),
    inset 0 1px 0 rgba(255,255,255,0.18);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  animation: pulseBtn 2.2s ease-in-out infinite;
}

.hero-cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 18px 38px rgba(229, 70, 7, 0.48),
    inset 0 1px 0 rgba(255,255,255,0.22);
}

@keyframes pulseBtn {
  0%, 100% {
    box-shadow:
      0 12px 30px rgba(229, 70, 7, 0.38),
      inset 0 1px 0 rgba(255,255,255,0.18);
  }
  50% {
    box-shadow:
      0 18px 40px rgba(229, 70, 7, 0.52),
      0 0 0 8px rgba(229, 70, 7, 0.08),
      inset 0 1px 0 rgba(255,255,255,0.18);
  }
}

/* prova rápida abaixo do botão */
.hero-note {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* indicador de scroll opcional */
.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.hero-scroll .mouse {
  width: 24px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,0.42);
  border-radius: 999px;
  position: relative;
}

.hero-scroll .mouse::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,0.8);
  transform: translateX(-50%);
  animation: scrollDot 1.8s infinite;
}

@keyframes scrollDot {
  0% {
    opacity: 0;
    transform: translateX(-50%) translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

/* =========================
   CLASSES GERAIS PREMIUM
========================= */
.section {
  position: relative;
  padding: 64px 20px;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.reveal-up {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card-premium {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card-premium:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,0.2);
  border-color: rgba(229, 70, 7, 0.24);
}

/* =========================
   RESPONSIVO
========================= */
@media (max-width: 991px) {
  .hero {
    padding-top: 112px;
    min-height: 92vh;
  }

  .hero h1 {
    font-size: 68px;
  }

  .hero p {
    font-size: 14px;
    letter-spacing: 1.8px;
  }

  .logo-img {
    max-width: 168px;
  }
}

@media (max-width: 768px) {
  .topbar {
    height: 32px;
  }

  .site-header {
    top: 32px;
  }

  .header-inner {
    min-height: 70px;
    padding: 10px 14px;
  }

  .logo-img {
    max-width: 146px;
    max-height: 38px;
  }

  .header-cta {
    display: none;
  }

  .topbar-track {
    gap: 28px;
  }

  .topbar-track span {
    font-size: 10px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 108px;
    align-items: center;
  }

  .hero::before {
    background:
      linear-gradient(to bottom, rgba(0,0,0,0.22), rgba(0,0,0,0.76)),
      linear-gradient(to right, rgba(0,0,0,0.18), rgba(0,0,0,0.18));
  }

  .hero-content {
    max-width: 100%;
    padding: 0 18px 36px;
  }

  .hero-badge {
    min-height: 30px;
    padding: 0 12px;
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: 0.9px;
  }

  .hero h1 {
    font-size: 56px;
    line-height: 0.9;
    margin-bottom: 10px;
  }

  .hero p {
    max-width: 310px;
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: 1.4px;
    margin-bottom: 18px;
  }

  .hero-points {
    gap: 8px;
    margin-bottom: 22px;
  }

  .hero-points span {
    min-height: 30px;
    padding: 0 11px;
    font-size: 10px;
  }

  .hero-cta {
    min-height: 54px;
    width: 100%;
    max-width: 320px;
    padding: 0 22px;
    font-size: 14px;
  }

  .hero-note {
    margin-top: 13px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }

  .hero-scroll {
    bottom: 12px;
    font-size: 9px;
  }

  .hero-scroll .mouse {
    width: 22px;
    height: 34px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 50px;
  }

  .hero p {
    max-width: 290px;
    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .hero-cta {
    max-width: 300px;
    min-height: 52px;
    font-size: 13px;
  }

  .logo-img {
    max-width: 136px;
  }
}

/* =========================
   SEÇÃO BENEFÍCIOS SLIDER
========================= */
.benefits-slider-section {
  position: relative;
  padding: 72px 16px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f4 100%);
  overflow: hidden;
}

.benefits-slider-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 70, 7, 0.06) 0%, rgba(229, 70, 7, 0) 70%);
  pointer-events: none;
}

.benefits-slider-section::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -100px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 77, 255, 0.05) 0%, rgba(98, 77, 255, 0) 70%);
  pointer-events: none;
}

.benefits-slider-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.benefits-slider-header {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.benefits-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: #e54607;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.benefits-slider-header h2 {
  margin: 0 0 12px;
  color: #111111;
  font-family: 'Teko', sans-serif;
  font-size: 56px;
  line-height: 0.95;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.benefits-slider-header p {
  max-width: 620px;
  margin: 0 auto;
  color: #5d5d66;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
}

.benefits-slider-wrap {
  position: relative;
  overflow: hidden;
}

.benefits-slider-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.benefit-slide {
  min-width: 100%;
  padding: 10px 2px;
  opacity: 0.65;
  transform: scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.benefit-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.benefit-slide-content {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 28px;
  padding: 34px 24px 26px;
  box-shadow:
    0 20px 40px rgba(10, 10, 10, 0.06),
    0 4px 14px rgba(10, 10, 10, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.benefit-slide-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(229, 70, 7, 0.03), transparent 34%),
    linear-gradient(315deg, rgba(98, 77, 255, 0.03), transparent 34%);
  pointer-events: none;
}

.benefit-slide-number {
  color: rgba(17, 17, 17, 0.08);
  font-family: 'Teko', sans-serif;
  font-size: 110px;
  line-height: 0.8;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: -24px;
  padding-left: 10px;
  user-select: none;
}

.benefit-slide-label {
  display: inline-block;
  margin-bottom: 10px;
  color: #e54607;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.benefit-slide-content h3 {
  margin: 0 0 12px;
  color: #111111;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 800;
  max-width: 560px;
}

.benefit-slide-content p {
  margin: 0;
  color: #5d5d66;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  max-width: 520px;
}

.benefits-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.benefits-arrow {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(17, 17, 17, 0.1);
  background: rgba(255,255,255,0.8);
  color: #111111;
  font-size: 18px;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
}

.benefits-arrow:hover {
  transform: scale(1.05);
  background: #e54607;
  color: #ffffff;
  border-color: #e54607;
}

.benefits-dots {
  display: flex;
  align-items: center;
  gap: 8px;
}

.benefits-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.16);
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease, transform 0.25s ease;
}

.benefits-dot.is-active {
  width: 24px;
  background: #e54607;
}

/* reveal */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* desktop refinado */
@media (min-width: 992px) {
  .benefit-slide {
    padding: 12px 14px;
  }

  .benefit-slide-content {
    min-height: 390px;
    padding: 42px 38px 34px;
    border-radius: 32px;
  }

  .benefit-slide-number {
    font-size: 140px;
    margin-bottom: -36px;
    padding-left: 4px;
  }

  .benefit-slide-content h3 {
    font-size: 38px;
    max-width: 700px;
  }

  .benefit-slide-content p {
    font-size: 16px;
    max-width: 600px;
  }
}

/* mobile */
@media (max-width: 768px) {
  .benefits-slider-section {
    padding: 56px 14px;
  }

  .benefits-slider-header {
    margin-bottom: 22px;
  }

  .benefits-kicker {
    font-size: 10px;
    letter-spacing: 1.8px;
  }

  .benefits-slider-header h2 {
    font-size: 40px;
    line-height: 0.96;
    margin-bottom: 10px;
  }

  .benefits-slider-header p {
    font-size: 14px;
    line-height: 1.6;
  }

  .benefit-slide {
    padding: 6px 1px;
  }

  .benefit-slide-number {
    font-size: 84px;
    margin-bottom: -18px;
    padding-left: 4px;
  }

  .benefit-slide-content {
    min-height: 290px;
    padding: 26px 18px 20px;
    border-radius: 22px;
  }

  .benefit-slide-content h3 {
    font-size: 24px;
    line-height: 1.1;
  }

  .benefit-slide-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .benefits-slider-controls {
    margin-top: 18px;
    gap: 10px;
  }

  .benefits-arrow {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .benefits-dot.is-active {
    width: 20px;
  }
}

/* =========================
   VIDEOS SECTION
========================= */
.videos-section {
  padding: 70px 16px;
  background: #050505;
}

.videos-container {
  max-width: 1100px;
  margin: 0 auto;
}

.videos-header {
  text-align: center;
  margin-bottom: 30px;
}

.videos-header h2 {
  font-family: 'Teko', sans-serif;
  font-size: 54px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.videos-header p {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}

/* GRID */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* CARD VIDEO */
.video-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.3s ease;
}

.video-card:hover {
  transform: scale(1.03);
}

/* VIDEO */
.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {
  .videos-header h2 {
    font-size: 38px;
  }

  .videos-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .video-card {
    min-width: 240px;
  }
}

.video-card {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%);
}

/* TEXTO */
.video-info {
  color: #fff;
  font-size: 13px;
}

.video-info strong {
  display: block;
  font-weight: 800;
}

.video-info span {
  opacity: 0.7;
  font-size: 12px;
}

/* BOTÃO SOM */
.video-sound-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: 0.2s;
}

.video-sound-btn:hover {
  background: #e54607;
}

/* =========================
   STORY SECTION
========================= */
.story-section {
  position: relative;
  padding: 72px 16px;
  background: #ffffff;
  overflow: hidden;
}

.story-section::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -80px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(229, 70, 7, 0.05) 0%, rgba(229, 70, 7, 0) 72%);
  pointer-events: none;
}

.story-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.story-header {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.story-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(17, 17, 17, 0.06);
  color: #4b4b52;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.story-header h2 {
  margin: 0 0 14px;
  color: #151515;
  font-family: 'Teko', sans-serif;
  font-size: 58px;
  line-height: 0.95;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.story-header p {
  max-width: 700px;
  margin: 0 auto;
  color: #67676f;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.story-showcase {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
}

.story-image-wrap {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: #f2f2f2;
  box-shadow:
    0 24px 50px rgba(10, 10, 10, 0.08),
    0 6px 16px rgba(10, 10, 10, 0.04);
}

.story-main-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 580px;
  object-fit: cover;
}

.story-copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.story-copy-block h3 {
  margin: 0 0 12px;
  color: #161616;
  font-size: 36px;
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.4px;
}

.story-copy-block p {
  margin: 0;
  color: #616169;
  font-size: 15px;
  line-height: 1.75;
  font-weight: 500;
}

.story-mini-points {
  display: grid;
  gap: 14px;
}

.story-point {
  padding: 18px 18px;
  border-radius: 20px;
  background: #fafafa;
  border: 1px solid rgba(17, 17, 17, 0.07);
  box-shadow: 0 10px 24px rgba(10, 10, 10, 0.03);
}

.story-point strong {
  display: block;
  margin-bottom: 5px;
  color: #161616;
  font-size: 16px;
  font-weight: 800;
}

.story-point span {
  color: #6a6a72;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

.story-proof {
  padding-top: 4px;
  color: #4c4c54;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 600;
}

.story-proof strong {
  color: #e54607;
  font-weight: 900;
}

/* responsivo */
@media (max-width: 991px) {
  .story-header h2 {
    font-size: 50px;
  }

  .story-showcase {
    grid-template-columns: 1fr;
  }

  .story-main-image {
    min-height: 500px;
  }

  .story-copy-block h3 {
    font-size: 30px;
  }
}

@media (max-width: 768px) {
  .story-section {
    padding: 56px 14px;
  }

  .story-header {
    margin-bottom: 24px;
  }

  .story-kicker {
    font-size: 10px;
    letter-spacing: 1.6px;
    padding: 5px 11px;
  }

  .story-header h2 {
    font-size: 40px;
    line-height: 0.96;
    margin-bottom: 10px;
  }

  .story-header p {
    font-size: 14px;
    line-height: 1.65;
  }

  .story-showcase {
    gap: 18px;
  }

  .story-image-wrap {
    border-radius: 22px;
  }

  .story-main-image {
    min-height: 360px;
  }

  .story-copy {
    gap: 16px;
  }

  .story-copy-block h3 {
    font-size: 24px;
    line-height: 1.08;
    margin-bottom: 10px;
  }

  .story-copy-block p {
    font-size: 14px;
    line-height: 1.65;
  }

  .story-point {
    padding: 16px 15px;
    border-radius: 18px;
  }

  .story-point strong {
    font-size: 15px;
  }

  .story-point span {
    font-size: 13px;
  }

  .story-proof {
    font-size: 13px;
  }
}

.vf-offer-section {
  padding: 28px 14px 18px;
  background: #ffffff;
}

.vf-offer-wrap {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.vf-gallery,
.vf-info {
  min-width: 0;
}

.vf-main-image-wrap {
  position: relative;
  background: #f6f6f7;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 20px;
  overflow: hidden;
}

.vf-main-image-button {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: zoom-in;
}

.vf-main-image {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.vf-zoom-note {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 12px 10px 14px;
  color: #666;
  font-size: 13px;
  line-height: 1.3;
}

.vf-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 10px;
}

.vf-thumb {
  border: 1.5px solid rgba(17,17,17,0.08);
  background: #fff;
  border-radius: 12px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.vf-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.vf-thumb.is-active {
  border-color: #e54607;
  box-shadow: 0 0 0 2px rgba(229,70,7,.08);
}

.vf-highlight {
  color: #b4b4b7;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 8px;
  font-weight: 700;
}

.vf-title {
  margin: 0 0 10px;
  color: #303030;
  font-size: 2rem;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.vf-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-left: 4px;
  border-radius: 999px;
  background: #0086ff;
  color: #fff;
  font-size: 12px;
  vertical-align: middle;
}

.vf-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.vf-stars {
  color: #f3c621;
  letter-spacing: 1px;
  font-size: 18px;
  line-height: 1;
}

.vf-rating-text {
  color: #3f3f3f;
  font-size: 15px;
  font-weight: 500;
}

.vf-price-box {
  margin-bottom: 14px;
}

.vf-old-price {
  color: #949494;
  font-size: 18px;
  line-height: 1.2;
  text-decoration: line-through;
  margin-bottom: 4px;
}

.vf-main-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.vf-main-price {
  color: #19a33b;
  font-size: 2.5rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.vf-discount-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #33bb33;
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px 6px 12px;
  clip-path: polygon(20% 0%,100% 0%,100% 100%,20% 100%,0% 50%);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.vf-installments {
  margin-top: 8px;
  color: #2f2f2f;
  font-size: 18px;
  line-height: 1.3;
}

.vf-economy-tag {
  display: inline-flex;
  margin-top: 8px;
  background: #33bb33;
  color: #fff;
  border-radius: 8px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 800;
}

.vf-pix-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f5f6f7;
  border: 1px solid rgba(17,17,17,0.05);
}

.vf-pix-icon {
  width: 28px;
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #2f2f2f;
  font-weight: 900;
}

.vf-pix-top {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  color: #2f2f2f;
  line-height: 1.1;
}

.vf-pix-top strong {
  font-size: 22px;
}

.vf-pix-top span {
  font-size: 16px;
}

.vf-pix-top small {
  background: #2f2f2f;
  color: #fff;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 700;
}

.vf-pix-sub {
  margin-top: 4px;
  color: #5c5c5c;
  font-size: 14px;
  line-height: 1.3;
}

.vf-option-group {
  margin-top: 6px;
}

.vf-option-label {
  display: block;
  color: #464646;
  font-size: 16px;
  line-height: 1.3;
  margin-bottom: 10px;
  font-weight: 700;
}

.vf-variant-list {
  display: flex;
  gap: 12px;
}

.vf-variant {
  position: relative;
  width: 70px;
  min-width: 70px;
  height: 70px;
  padding: 0;
  border: 1.5px solid rgba(17,17,17,0.12);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, opacity .2s ease;
}

.vf-variant-thumb,
.vf-variant-thumb img {
  display: block;
  width: 100%;
  height: 100%;
}

.vf-variant-thumb img {
  object-fit: cover;
}

.vf-variant.is-selected {
  border-color: #e54607;
  box-shadow: 0 0 0 2px rgba(229,70,7,.08);
}

.vf-variant.is-sold-out {
  opacity: .52;
}

.vf-variant-cross {
  position: absolute;
  inset: 0;
}

.vf-variant-cross::before,
.vf-variant-cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76%;
  height: 2px;
  background: rgba(90,90,90,.95);
  transform-origin: center;
}

.vf-variant-cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.vf-variant-cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.vf-buy-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 58px;
  margin-top: 22px;
  background: linear-gradient(180deg, #36c944, #24b831);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(36,184,49,.26);
  transition: transform .2s ease, opacity .2s ease, box-shadow .2s ease, background .2s ease;
}

.vf-buy-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(36,184,49,.34);
}

.vf-buy-button.is-disabled {
  background: #b6b6b8;
  box-shadow: none;
  pointer-events: none;
}

.vf-safe-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 14px;
  background: #f7f7f8;
  border-radius: 14px;
  border: 1px solid rgba(17,17,17,0.05);
}

.vf-safe-icon {
  width: 38px;
  min-width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.vf-safe-text {
  color: #5b5b5c;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 500;
}

.vf-safe-text strong {
  color: #14b63f;
  font-weight: 900;
}

.vf-payment-icons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.vf-payment-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 58px;
  height: 30px;
  padding: 0 10px;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 8px;
  background: #fff;
  color: #666;
  font-size: 12px;
  font-weight: 700;
}

/* ZOOM */
.vf-zoom-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.86);
  padding: 20px;
}

.vf-zoom-modal.is-open {
  display: flex;
}

.vf-zoom-modal img {
  max-width: min(96vw, 980px);
  max-height: 88vh;
  border-radius: 14px;
}

.vf-zoom-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

/* MOBILE */
@media (max-width: 768px) {
  .vf-offer-section {
    padding: 18px 0 10px;
  }

  .vf-offer-wrap {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 100%;
  }

  .vf-gallery,
  .vf-info {
    padding: 0 14px;
  }

  .vf-main-image-wrap {
    border-radius: 0;
    border-left: 0;
    border-right: 0;
  }

  .vf-title {
    font-size: 2.15rem;
    line-height: 1.16;
  }

  .vf-rating {
    margin-bottom: 12px;
  }

  .vf-rating-text {
    font-size: 14px;
  }

  .vf-old-price {
    font-size: 17px;
  }

  .vf-main-price {
    font-size: 3rem;
  }

  .vf-installments {
    font-size: 16px;
  }

  .vf-economy-tag {
    font-size: 13px;
  }

  .vf-pix-top strong {
    font-size: 18px;
  }

  .vf-pix-top span {
    font-size: 15px;
  }

  .vf-pix-sub {
    font-size: 13px;
  }

  .vf-buy-button {
    min-height: 56px;
    font-size: 17px;
  }

  .vf-safe-text {
    font-size: 15px;
  }

  .vf-payment-icons {
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .vf-title {
    font-size: 1.95rem;
  }

  .vf-main-price {
    font-size: 2.65rem;
  }

  .vf-discount-badge {
    font-size: 13px;
  }

  .vf-variant {
    width: 66px;
    min-width: 66px;
    height: 66px;
  }
}

.vf-safe-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 14px;
  background: #f3f3f4;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.04);
}

.vf-safe-icon {
  width: 54px;
  min-width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vf-safe-icon svg {
  width: 44px;
  height: 44px;
  display: block;
}

.vf-safe-text {
  display: flex;
  flex-direction: column;
  line-height: 1.08;
}

.vf-safe-text span {
  color: #5c5c5c;
  font-size: 14px;
  font-weight: 500;
}

.vf-safe-text strong {
  color: #00bd58;
  font-size: 14px;
  font-weight: 900;
}

.vf-payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-top: 10px;
}

.vf-payment-icons span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 28px;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}

.vf-payment-icons img {
  max-width: 38px;
  max-height: 16px;
  display: block;
}

@media (max-width: 768px) {
  .vf-safe-box {
    padding: 12px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .vf-safe-icon {
    width: 50px;
    min-width: 50px;
    height: 50px;
  }

  .vf-safe-icon svg {
    width: 40px;
    height: 40px;
  }

  .vf-safe-text span,
  .vf-safe-text strong {
    font-size: 13px;
  }

  .vf-payment-icons {
    justify-content: center;
    gap: 6px;
  }

  .vf-payment-icons span {
    width: 50px;
    height: 26px;
  }

  .vf-payment-icons img {
    max-width: 36px;
    max-height: 15px;
  }
}

.vf-payment-icons {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  margin-top: 10px;
}

.vf-flag-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 28px;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  padding: 4px 6px;
}

.vf-flag-item svg {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.vf-safe-box {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin-top: 18px;
  padding: 12px 14px;
  background: #f3f3f4;
  border-radius: 14px;
  border: 1px solid rgba(17, 17, 17, 0.04);
  box-sizing: border-box;
  overflow: hidden;
}

.vf-safe-icon {
  width: 56px;
  min-width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vf-safe-icon svg {
  width: 46px;
  height: 46px;
  display: block;
}

.vf-safe-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.05;
  min-width: 0;
}

.vf-safe-text span {
  color: #5c5c5c;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.vf-safe-text strong {
  color: #00bd58;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.vf-payment-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: nowrap;
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  box-sizing: border-box;
}

.vf-payment-icons::-webkit-scrollbar {
  display: none;
}

.vf-flag-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  min-width: 48px;
  height: 26px;
  padding: 3px 5px;
  border: 1px solid rgba(17,17,17,0.08);
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
}

.vf-flag-item svg {
  max-width: 100%;
  max-height: 100%;
  display: block;
}

@media (max-width: 768px) {
  .vf-safe-box {
    padding: 12px 12px;
    gap: 10px;
    border-radius: 12px;
  }

  .vf-safe-icon {
    width: 52px;
    min-width: 52px;
    height: 52px;
  }

  .vf-safe-icon svg {
    width: 42px;
    height: 42px;
  }

  .vf-safe-text span,
  .vf-safe-text strong {
    font-size: 13px;
  }

  .vf-payment-icons {
    justify-content: flex-start;
    gap: 6px;
  }

  .vf-flag-item {
    width: 46px;
    min-width: 46px;
    height: 25px;
    padding: 3px 4px;
  }
}

.vf-payment-icons {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.vf-payment-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  margin-top: 10px;
  background: transparent;
  border-radius: 0;
  overflow: visible;
}

.vf-payment-icons .vf-flag-item {
  flex: 1 1 0;
  min-width: 0;
  height: 26px;
  padding: 0;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.vf-payment-icons .vf-flag-item svg {
  width: auto;
  height: 18px;
  max-width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .vf-payment-icons {
    gap: 4px;
  }

  .vf-payment-icons .vf-flag-item {
    height: 24px;
  }

  .vf-payment-icons .vf-flag-item svg {
    height: 17px;
  }
}

.vf-payment-icons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px; /* ↓ diminui espaço entre eles */
  width: 100%;
  margin-top: 10px;
}

.vf-payment-icons .vf-flag-item {
  flex: 1;
  height: 32px; /* ↑ aumenta altura */
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0;
}

/* 🔥 AQUI É O PRINCIPAL */
.vf-payment-icons .vf-flag-item svg {
  height: 22px; /* ↑ aumenta ícone */
  width: auto;
  display: block;
}

@media (max-width: 768px) {
  .vf-payment-icons {
    gap: 0px;
  }

  .vf-payment-icons .vf-flag-item {
    height: 30px;
  }

  .vf-payment-icons .vf-flag-item svg {
    height: 200px;
  }
}

.features-section {
  padding: 50px 16px;
  background: #ffffff;
}

.features-container {
  max-width: 1000px;
  margin: auto;
}

/* HEADER */
.features-header {
  text-align: center;
  margin-bottom: 25px;
}

.features-header h2 {
  font-family: 'Teko', sans-serif;
  font-size: 42px;
  color: #111;
}

.features-header p {
  font-size: 13px;
  color: #666;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* CARD */
.feature-card {
  background: #fafafa;
  border-radius: 16px;
  padding: 16px;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.05);
}

/* ICON */
.feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(229,70,7,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  stroke: #e54607;
}

/* TEXT */
.feature-card h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-card p {
  font-size: 12px;
  color: #666;
}

/* DESKTOP */
@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.features-section {
  padding: 34px 16px 38px;
  background: #ffffff;
}

.features-container {
  max-width: 1000px;
  margin: auto;
}

/* HEADER */
.features-header {
  text-align: center;
  margin-bottom: 18px;
}

.features-header h2 {
  font-family: 'Teko', sans-serif;
  font-size: 34px;
  line-height: 0.95;
  letter-spacing: 0.2px;
  color: #111;
  margin: 0 0 8px;
}

.features-header p {
  font-size: 12px;
  color: #666;
  line-height: 1.35;
  margin: 0;
}

/* GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

/* CARD */
.feature-card {
  background: #fafafa;
  border-radius: 14px;
  padding: 13px 12px 12px;
  text-align: left;
  border: 1px solid rgba(0,0,0,0.05);
  min-height: 118px;
}

/* ICON */
.feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: rgba(229,70,7,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.feature-icon svg {
  width: 16px;
  height: 16px;
  stroke: #e54607;
}

/* TEXT */
.feature-card h3 {
  font-size: 13px;
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 5px;
  color: #1a1a1a;
}

.feature-card p {
  font-size: 11px;
  line-height: 1.35;
  color: #666;
  margin: 0;
}

/* DESKTOP */
@media (min-width: 768px) {
  .features-section {
    padding: 42px 16px 46px;
  }

  .features-header {
    margin-bottom: 22px;
  }

  .features-header h2 {
    font-size: 40px;
  }

  .features-header p {
    font-size: 13px;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .feature-card {
    min-height: 126px;
    padding: 15px 14px 14px;
  }
}

.reviews-section {
  padding: 54px 16px 60px;
  background: #ffffff;
}

.reviews-container {
  max-width: 1120px;
  margin: 0 auto;
}

.reviews-title-wrap h2 {
  margin: 0;
  color: #2d2d2d;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
}

.reviews-divider {
  margin-top: 16px;
  border-bottom: 1px solid #d4d4d4;
}

.reviews-summary {
  margin-bottom: 28px;
}

.reviews-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 26px;
}

.reviews-average {
  text-align: center;
}

.reviews-average-score {
  display: inline-flex;
  align-items: flex-start;
  line-height: 1;
}

.score-main {
  font-size: 72px;
  font-weight: 900;
  color: #f3c621;
  letter-spacing: -0.03em;
}

.score-rest {
  position: relative;
  top: 12px;
  font-size: 21px;
  font-weight: 800;
  color: #3f3f3f;
}

.reviews-stars {
  margin-top: 8px;
  color: #f3c621;
  font-size: 24px;
  letter-spacing: 2px;
}

.reviews-count {
  margin-top: 6px;
  color: #3f3f3f;
  font-size: 12px;
  letter-spacing: 1px;
}

.reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-bar-row {
  display: grid;
  grid-template-columns: 34px 1fr 42px;
  align-items: center;
  gap: 10px;
}

.review-bar-label {
  color: #111;
  font-size: 15px;
  white-space: nowrap;
}

.review-bar-label span {
  color: #9c9c9c;
}

.review-bar-track {
  width: 100%;
  height: 12px;
  background: #dedede;
  border-radius: 999px;
  overflow: hidden;
}

.review-bar-fill {
  height: 100%;
  background: #f3c621;
  border-radius: 999px;
}

.review-bar-number {
  color: #2d2d2d;
  font-size: 15px;
  text-align: right;
}

.reviews-write-wrap {
  display: flex;
  justify-content: center;
}

.reviews-write-btn {
  min-width: 170px;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  background: #373737;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

/* CARDS */
.reviews-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.review-card {
  background: #ffffff;
  border-radius: 22px;
  box-shadow: 0 5px 15px -10px rgba(0,0,0,0.5);
  padding: 18px;
}

.review-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.review-avatar {
  width: 40px;
  min-width: 40px;
  height: 40px;
  border-radius: 999px;
  background: #4a4a4a;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.review-meta {
  min-width: 0;
}

.review-name {
  color: #1f1f1f;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.review-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #4e8f2f;
  font-size: 12px;
  margin-top: 2px;
}

.review-verified::after {
  content: "●";
  font-size: 8px;
  color: #4e8f2f;
}

.review-stars {
  margin: 10px 0 8px;
  color: #f3c621;
  font-size: 18px;
  letter-spacing: 1px;
}

.review-text {
  color: #2f2f2f;
  font-size: 15px;
  line-height: 1.45;
}

.review-image-wrap {
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
}

.review-image-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* PAGINAÇÃO */
.reviews-pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 26px;
}

.reviews-page-btn,
.reviews-page-dots {
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid #e2e2e2;
  background: #f6f6f6;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.reviews-page-btn {
  cursor: pointer;
}

.reviews-page-btn.is-active {
  background: #cad6e0;
  border-color: #cad6e0;
}

/* MOBILE */
@media (max-width: 768px) {
  .reviews-section {
    padding: 42px 14px 48px;
  }

  .reviews-title-wrap h2 {
    font-size: 28px;
  }

  .reviews-summary-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 22px;
  }

  .reviews-average {
    text-align: center;
  }

  .score-main {
    font-size: 62px;
  }

  .score-rest {
    top: 10px;
    font-size: 18px;
  }

  .reviews-stars {
    font-size: 22px;
  }

  .reviews-write-btn {
    width: 100%;
    max-width: 180px;
    font-size: 15px;
  }

  .reviews-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .review-card {
    padding: 16px;
    border-radius: 20px;
  }

  .review-name {
    font-size: 17px;
  }

  .review-text {
    font-size: 14px;
  }

  .review-image-wrap {
    margin-top: 10px;
  }

  .reviews-pagination {
    gap: 6px;
  }

  .reviews-page-btn,
  .reviews-page-dots {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }
}

.social-proof-strip {
  position: relative;
  padding: 26px 0 54px;
  background: #ffffff;
  overflow: hidden;
}

.social-proof-inner {
  position: relative;
  width: 100%;
}

/* faixa animada */
.social-proof-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.social-proof-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: socialProofLoop 24s linear infinite;
}

.social-proof-track img {
  width: clamp(520px, 92vw, 960px);
  height: auto;
  display: block;
  flex-shrink: 0;
  border-radius: 0;
  user-select: none;
  pointer-events: none;
}

@keyframes socialProofLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* card flutuante */
.social-proof-badge {
  position: absolute;
  left: 50%;
  bottom: -30px;
  transform: translateX(-50%);
  min-width: 240px;
  padding: 14px 22px 13px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 20px;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.10),
    0 3px 10px rgba(0,0,0,0.05);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-proof-number {
  color: #0d6efd;
  font-size: 34px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.social-proof-text {
  margin-top: 3px;
  color: #5b5b63;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
}

/* opcional: pausar no hover desktop */
@media (hover: hover) {
  .social-proof-marquee:hover .social-proof-track {
    animation-play-state: paused;
  }
}

/* mobile */
@media (max-width: 768px) {
  .social-proof-strip {
    padding: 18px 0 48px;
  }

  .social-proof-track {
    animation-duration: 18s;
  }

  .social-proof-track img {
    width: 92vw;
  }

  .social-proof-badge {
    bottom: -24px;
    min-width: 210px;
    padding: 12px 18px 11px;
    border-radius: 18px;
  }

  .social-proof-number {
    font-size: 28px;
  }

  .social-proof-text {
    font-size: 14px;
  }
}

.social-proof-marquee::before,
.social-proof-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  width: 28px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.social-proof-marquee::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.social-proof-marquee::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}

.social-proof-strip {
  position: relative;
  padding: 20px 0 64px;
  background: #ffffff;
  overflow: hidden;
}

.social-proof-inner {
  position: relative;
  width: 100%;
}

.social-proof-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.social-proof-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: socialProofLoop 24s linear infinite;
}

.social-proof-track img {
  width: 920px;
  max-width: none;
  height: 190px;
  object-fit: cover;
  display: block;
  flex-shrink: 0;
  user-select: none;
  pointer-events: none;
}

@keyframes socialProofLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.social-proof-badge {
  position: absolute;
  left: 50%;
  bottom: -24px;
  transform: translateX(-50%);
  min-width: 230px;
  padding: 12px 20px 11px;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 18px;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.10),
    0 3px 10px rgba(0,0,0,0.05);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-proof-number {
  color: #0d6efd;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.social-proof-text {
  margin-top: 3px;
  color: #5b5b63;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
}

@media (max-width: 768px) {
  .social-proof-strip {
    padding: 14px 0 58px;
  }

  .social-proof-track {
    animation-duration: 18s;
  }

  .social-proof-track img {
    width: 760px;      /* banner mais largo */
    height: 128px;     /* banner mais alto */
  }

  .social-proof-badge {
    min-width: 200px;
    padding: 10px 16px;
    border-radius: 16px;
    bottom: -18px;     /* invade menos */
  }

  .social-proof-number {
    font-size: 24px;
  }

  .social-proof-text {
    font-size: 13px;
  }
}

@media (max-width: 430px) {
  .social-proof-track img {
    width: 700px;
    height: 118px;
  }

  .social-proof-badge {
    min-width: 188px;
    padding: 9px 14px;
    bottom: -16px;
  }

  .social-proof-number {
    font-size: 22px;
  }

  .social-proof-text {
    font-size: 12px;
  }
}

.social-proof-strip {
  position: relative;
  padding: 14px 0 72px;
  background: #ffffff;
  overflow: hidden;
}

.social-proof-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.social-proof-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: socialProofLoop 18s linear infinite;
}

.social-proof-track img {
  width: 760px;
  height: 150px;              /* aumenta a altura do banner */
  display: block;
  flex-shrink: 0;
  object-fit: contain;        /* mostra a imagem inteira */
  object-position: center center;
  background: #fff;           /* evita faixa estranha */
  user-select: none;
  pointer-events: none;
}

.social-proof-badge {
  position: absolute;
  left: 50%;
  bottom: -26px;              /* desce mais */
  transform: translateX(-50%);
  min-width: 178px;           /* menor */
  padding: 9px 14px 8px;      /* menor */
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 16px;
  box-shadow:
    0 14px 34px rgba(0,0,0,0.10),
    0 3px 10px rgba(0,0,0,0.05);
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.social-proof-number {
  color: #0d6efd;
  font-size: 22px;            /* menor */
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.social-proof-text {
  margin-top: 2px;
  color: #5b5b63;
  font-size: 12px;            /* menor */
  line-height: 1.2;
  font-weight: 500;
}

@media (max-width: 768px) {
  .social-proof-strip {
    padding: 12px 0 70px;
  }

  .social-proof-track img {
    width: 820px;             /* mais largura */
    height: 156px;            /* mais altura */
    object-fit: cover;      /* não corta */
  }

  .social-proof-badge {
    min-width: 172px;
    padding: 8px 13px;
    border-radius: 15px;
    bottom: -28px;            /* desce mais */
  }

  .social-proof-number {
    font-size: 21px;
  }

  .social-proof-text {
    font-size: 11px;
  }
}

@media (max-width: 430px) {
  .social-proof-track img {
    width: 860px;             /* aumenta o impacto */
    height: 164px;            /* banner mais alto */
  }

  .social-proof-badge {
    min-width: 168px;
    padding: 8px 12px;
    bottom: -30px;
  }

  .social-proof-number {
    font-size: 20px;
  }

  .social-proof-text {
    font-size: 11px;
  }
}
.faq-section {
  padding: 54px 16px 70px;
  background: #ffffff;
}

.faq-container {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
}

.faq-header {
  text-align: center;
  margin-bottom: 22px;
}

.faq-header h2 {
  margin: 0 0 8px;
  color: #1f1f1f;
  font-family: 'Teko', sans-serif;
  font-size: 42px;
  line-height: 0.95;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.faq-header p {
  margin: 0;
  color: #6a6a72;
  font-size: 14px;
  line-height: 1.6;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-item {
  background: #fafafa;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.faq-item.is-open {
  background: #ffffff;
  border-color: rgba(229, 70, 7, 0.16);
  box-shadow: 0 10px 24px rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  cursor: pointer;
  color: #222;
  font-size: 15px;
  font-weight: 800;
}

.faq-question:hover {
  color: #e54607;
}

.faq-icon {
  flex-shrink: 0;
  font-size: 18px;
  line-height: 1;
  color: #8b8b93;
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item.is-open .faq-icon {
  transform: rotate(180deg);
  color: #e54607;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer-inner {
  overflow: hidden;
  padding: 0 18px 0;
  color: #5f5f67;
  font-size: 14px;
  line-height: 1.65;
}

.faq-item.is-open .faq-answer-inner {
  padding: 0 18px 18px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 44px 14px 58px;
  }

  .faq-header {
    margin-bottom: 18px;
  }

  .faq-header h2 {
    font-size: 36px;
  }

  .faq-header p {
    font-size: 13px;
  }

  .faq-list {
    gap: 8px;
  }

  .faq-item {
    border-radius: 14px;
  }

  .faq-question {
    padding: 16px 15px;
    font-size: 14px;
  }

  .faq-answer-inner {
    padding: 0 15px 0;
    font-size: 13px;
  }

  .faq-item.is-open .faq-answer-inner {
    padding: 0 15px 16px;
  }
}

.footer {
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 50px 16px 46px;
  background: #ffffff;
}

.footer-container {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

/* LOGO */
.footer-logo {
  height: 42px;
  width: auto;
  margin: 0 auto 10px;
  display: block;
}

/* TEXTO */
.footer-desc {
  font-size: 12px;
  color: #6b6b72;
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto 26px;
}

/* LINKS */
.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.footer-links a {
  font-size: 12px;
  color: #6b6b72;
  text-decoration: none;
  transition: 0.2s;
}

.footer-links a:hover {
  color: #e54607;
}

/* COPY */
.footer-copy {
  font-size: 11px;
  color: #a1a1a8;
  margin: 0;
}

.footer-info {
  font-size: 11px;
  color: #a1a1a8;
  margin: 6px 0 0;
}

/* MOBILE */
@media (max-width: 768px) {
  .footer {
    padding: 42px 14px 40px;
  }

  .footer-logo {
    height: 116px;
  }

  .footer-desc {
    font-size: 11px;
    margin-bottom: 22px;
  }

  .footer-links {
    gap: 16px;
    margin-bottom: 22px;
  }

  .footer-links a {
    font-size: 11px;
  }

  .footer-copy,
  .footer-info {
    font-size: 10px;
  }
}

.offer-topbar {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 22px;
  padding: 0 8px;
}

.offer-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(229, 70, 7, 0.08);
  color: #e54607;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.offer-headline {
  margin: 0 0 8px;
  color: #171717;
  font-family: 'Teko', sans-serif;
  font-size: 42px;
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
}

.offer-subheadline {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.55;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .offer-topbar {
    margin-bottom: 18px;
  }

  .offer-kicker {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
  }

  .offer-headline {
    font-size: 34px;
    line-height: 0.96;
    margin-bottom: 7px;
  }

  .offer-subheadline {
    font-size: 13px;
    line-height: 1.5;
  }
}

.offer-topbar {
  animation: fadeUpSoft 0.7s ease both;
}

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.vf-buy-button {
  animation: buyPulse 2.2s ease-in-out infinite;
}

@keyframes buyPulse {
  0%, 100% {
    box-shadow: 0 10px 24px rgba(36,184,49,.26);
  }
  50% {
    box-shadow:
      0 16px 30px rgba(36,184,49,.34),
      0 0 0 8px rgba(36,184,49,.08);
  }
}

.offer-topbar {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 22px;
  padding: 0 10px;
}

.offer-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(229, 70, 7, 0.08);
  color: #e54607;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.offer-headline {
  margin: 0 0 8px;
  color: #171717;
  font-family: 'Teko', sans-serif;
  font-size: 42px;
  line-height: 0.96;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.offer-subheadline {
  margin: 0 auto;
  color: #666;
  font-size: 14px;
  line-height: 1.55;
  max-width: 560px;
}

@media (max-width: 768px) {
  .offer-topbar {
    margin-bottom: 18px;
    padding: 0 14px;
  }

  .offer-kicker {
    font-size: 10px;
    letter-spacing: 1.4px;
    margin-bottom: 8px;
    min-height: 28px;
    padding: 0 11px;
  }

  .offer-headline {
    font-size: 26px;
    line-height: 0.98;
    letter-spacing: 0.1px;
    max-width: 320px;
    margin-bottom: 8px;
  }

  .offer-subheadline {
    font-size: 13px;
    line-height: 1.45;
    max-width: 300px;
  }
}

@media (max-width: 430px) {
  .offer-headline {
    font-size: 24px;
    max-width: 290px;
  }

  .offer-subheadline {
    font-size: 12px;
    max-width: 280px;
  }
}

/* =========================
   ANIMAÇÕES GLOBAIS LP
========================= */

/* reveal base */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
  will-change: opacity, transform;
}

.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* variações */
.reveal-soft {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.reveal-soft.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-scale {
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}

.reveal-scale.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* delays prontos */
.delay-1 { transition-delay: 0.06s; }
.delay-2 { transition-delay: 0.12s; }
.delay-3 { transition-delay: 0.18s; }
.delay-4 { transition-delay: 0.24s; }
.delay-5 { transition-delay: 0.30s; }

/* =========================
   BOTÕES
========================= */
.vf-buy-button,
.hero-cta,
.impact-cta,
.header-cta {
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease,
    opacity 0.22s ease;
}

.vf-buy-button:hover,
.hero-cta:hover,
.impact-cta:hover,
.header-cta:hover {
  transform: translateY(-2px) scale(1.02);
}

.vf-buy-button {
  animation: buyPulse 2.3s ease-in-out infinite;
}

@keyframes buyPulse {
  0%, 100% {
    box-shadow: 0 10px 24px rgba(36,184,49,.26);
  }
  50% {
    box-shadow:
      0 16px 30px rgba(36,184,49,.34),
      0 0 0 8px rgba(36,184,49,.08);
  }
}

/* =========================
   CARDS / BLOCOS
========================= */
.feature-card,
.story-point,
.review-card,
.faq-item,
.card-premium,
.impact-benefit-card,
.benefit-slide-content {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.feature-card:hover,
.story-point:hover,
.review-card:hover,
.faq-item:hover,
.card-premium:hover,
.impact-benefit-card:hover,
.benefit-slide-content:hover {
  transform: translateY(-3px);
}

/* =========================
   IMAGENS / GALERIA
========================= */
.vf-main-image,
.story-main-image,
.review-image-wrap img,
.social-proof-track img,
.video-card video {
  transition:
    transform 0.45s ease,
    filter 0.35s ease;
}

.vf-main-image-wrap:hover .vf-main-image,
.story-image-wrap:hover .story-main-image,
.review-image-wrap:hover img {
  transform: scale(1.02);
}

/* thumbs e variantes */
.vf-thumb,
.vf-variant {
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    opacity 0.22s ease;
}

.vf-thumb:hover,
.vf-variant:hover {
  transform: translateY(-2px);
}

/* =========================
   FAQ
========================= */
.faq-icon {
  transition:
    transform 0.25s ease,
    color 0.25s ease;
}

.faq-answer {
  transition: grid-template-rows 0.28s ease;
}

.faq-answer-inner {
  transition: padding 0.28s ease;
}

/* =========================
   OFFER TOPBAR
========================= */
.offer-topbar {
  animation: fadeUpSoft 0.7s ease both;
}

@keyframes fadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   HERO / TOP / BADGES
========================= */
.hero-badge,
.hero-points span,
.hero-note,
.vf-highlight,
.vf-economy-tag,
.vf-discount-badge,
.vf-pix-box,
.social-proof-badge {
  animation: softAppear 0.8s ease both;
}

@keyframes softAppear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   VIDEO BUTTON
========================= */
.video-sound-btn,
.impact-play-toggle {
  transition:
    transform 0.22s ease,
    background 0.22s ease,
    opacity 0.22s ease;
}

.video-sound-btn:hover,
.impact-play-toggle:hover {
  transform: scale(1.06);
}

/* =========================
   SOCIAL PROOF MARQUEE
========================= */
.social-proof-track {
  will-change: transform;
}

/* =========================
   PAGINAÇÃO REVIEWS
========================= */
.reviews-page-btn {
  transition:
    transform 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease;
}

.reviews-page-btn:hover {
  transform: translateY(-1px);
}

/* =========================
   HEADER SCROLL
========================= */
.site-header,
.topbar,
.logo-img {
  transition:
    background 0.35s ease,
    box-shadow 0.35s ease,
    backdrop-filter 0.35s ease,
    border-color 0.35s ease,
    opacity 0.25s ease,
    transform 0.25s ease;
}

/* =========================
   REDUÇÃO DE MOVIMENTO
========================= */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

  .reveal-up,
  .reveal-soft,
  .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
}