/* @import removido — fontes carregadas via <link> no HTML para não bloquear render */

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

:root {
  --orange: #FF5C00;
  --orange-light: #FF7A29;
  --black: #0A0A0A;
  --dark: #111111;
  --card: #181818;
  /* Altura combinada da topbar (~44px) + nav (~62px) + folga */
  --scroll-offset: 120px;
  --card2: #1E1E1E;
  --border: #2A2A2A;
  --white: #FFFFFF;
  --gray: #888888;
  --gray2: #555555;
  --green: #1B4332;
  --green-btn: #25D366;
  --red: #CC0000;
}

html { scroll-behavior: smooth; }

/* Offset para links âncora não ficarem atrás do header fixo */
section[id],
div[id] {
  scroll-margin-top: var(--scroll-offset);
}

body {
  font-family: 'Barlow', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
}

/* ========== TOP BAR ========== */
.topbar {
  background: #CC3300; /* Escurecido: contraste 4.9:1 com branco (passa WCAG AA) */
  padding: 10px 0;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar-text {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.topbar-text span { text-decoration: underline; color: #fff; } /* amarelo→branco: passa contraste */

.countdown-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.countdown-label {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  /* opacity removida: texto em 100% branco passa contraste WCAG */
}

.countdown-timer {
  background: #8B1A00; /* mais escuro para combinar com topbar #CC3300 */
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 900;
  padding: 4px 12px;
  border-radius: 4px;
  letter-spacing: 2px;
  min-width: 110px;
  text-align: center;
}

.topbar-btn {
  background: #FFD700;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 18px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  transition: opacity 0.2s;
}

.topbar-btn:hover { opacity: 0.85; }

/* ========== NAV ========== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 44px;
  z-index: 999;
  background: var(--black);
}

.nav-logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-logo::before {
  content: '⚡';
  color: var(--orange);
  font-size: 14px;
}

.nav-cta {
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 22px;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.nav-cta:hover { background: var(--orange-light); transform: translateY(-1px); }

/* ========== SHARED ========== */
.container { max-width: 900px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }

.tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  border: 1px solid var(--orange);
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 20px;
}

.tag-dark {
  background: var(--card);
  color: var(--gray);
  border-color: var(--border);
}

h1, h2, h3 {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.05;
  font-weight: 700;
}

.hero-title {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  font-size: clamp(30px, 4.2vw, 54px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.accent { color: var(--orange); }

.lead {
  font-size: 15px;
  line-height: 1.7;
  color: #BBBBBB;
  max-width: 520px;
  margin: 0 auto;
}

.lead strong { color: var(--white); }

/* ========== DECO ========== */
.deco {
  position: absolute;
  font-size: 80px;
  color: var(--orange);
  opacity: 0.12;
  pointer-events: none;
  animation: decoFloat 6s ease-in-out infinite;
}

@keyframes decoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(15deg); }
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 6px; height: 6px;
  background: #ff4444;
  border-radius: 50%;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title .line { display: block; }

.hero-impact {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 3px;
  margin: 22px auto 0;
  display: block;
  text-align: center;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.75;
  color: #BBBBBB;
  max-width: 560px;
  margin: 24px auto 0;
  text-align: center;
}

.hero-sub strong { color: var(--white); font-style: italic; text-decoration: underline; text-underline-offset: 3px; }

.hero-seals {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.5px;
}

.hero-seals span::before { content: '✅ '; }

.hero-social-proof {
  margin-top: 20px;
  font-size: 13px;
  color: #888;
  text-align: center;
}

.hero-social-proof .stars { color: #FFD700; }

/* Hero video wrapper (below headline) */
.hero-video-wrap {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
}

.hero-video-wrap::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255,92,0,0.4), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
  z-index: 1;
}

.video-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 60%, rgba(255,92,0,0.12) 0%, transparent 65%);
  pointer-events: none;
}

.video-placeholder:hover {
  border-color: rgba(255,92,0,0.5);
  box-shadow: 0 0 60px rgba(255,92,0,0.12);
}

.video-play-btn {
  width: 72px; height: 72px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #000;
  transition: transform 0.25s, background 0.2s, box-shadow 0.25s;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 12px rgba(255,92,0,0.12);
}

.video-placeholder:hover .video-play-btn {
  transform: scale(1.12);
  background: var(--orange-light);
  box-shadow: 0 0 0 20px rgba(255,92,0,0.08);
}

.video-placeholder-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 18px 36px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(255,92,0,0.4);
  animation: btnPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
  background: var(--orange-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,92,0,0.35);
  animation: none;
}

@keyframes btnPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255,92,0,0.4); }
  50% { box-shadow: 0 0 0 14px rgba(255,92,0,0); }
}

/* ========== SCROLLING MARQUEE ========== */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  background: var(--dark);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 22s linear infinite;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 40px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray2);
  white-space: nowrap;
}

.marquee-item .dot {
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========== O QUE É ========== */
.whatis-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.whatis-hero {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.whatis-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,92,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.whatis-hero p {
  font-size: 16px;
  line-height: 1.85;
  color: #BBB;
  max-width: 720px;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.whatis-hero p strong { color: var(--white); }

.whatis-warning {
  background: rgba(255,92,0,0.08);
  border: 1px solid rgba(255,92,0,0.25);
  border-radius: 4px;
  padding: 16px 20px;
  margin-top: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-light);
  position: relative;
  z-index: 1;
}

/* ========== GALLERY ========== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.gallery-item {
  aspect-ratio: 2/3;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.3s;
}

.gallery-item:hover { border-color: var(--orange); transform: scale(1.02); }

.gallery-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,92,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.gallery-item-placeholder {
  font-size: 36px;
  position: relative;
  z-index: 1;
}

.gallery-item-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  position: relative;
  z-index: 1;
}

.gallery-obs {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 16px 20px;
  margin-top: 28px;
  font-size: 13px;
  color: #888;
  line-height: 1.65;
}

/* ========== SEM/COM ========== */
.semcom-section { background: var(--dark); }

.semcom-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.semcom-col {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}

.semcom-col-header {
  padding: 16px 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.semcom-col-header.bad { background: rgba(150,0,0,0.2); color: #ff6b6b; }
.semcom-col-header.good { background: rgba(255,92,0,0.15); color: var(--orange); }

.semcom-list { list-style: none; }

.semcom-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.5;
  color: #BBB;
}

.semcom-list li:last-child { border-bottom: none; }

.semcom-list li .icon { flex-shrink: 0; font-size: 14px; margin-top: 1px; }

/* ========== BENTO GRID ========== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.bento-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.bento-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.bento-card:hover { border-color: rgba(255,92,0,0.45); transform: translateY(-4px); }
.bento-card:hover::after { opacity: 1; }

.bento-card-accent {
  border-color: rgba(255,92,0,0.2);
  background: linear-gradient(145deg, var(--card), #1c0d00);
}

.bento-card-grid::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,92,0,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,92,0,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.bento-span-2 { grid-column: span 2; }
.bento-span-3 { grid-column: span 3; }

.bento-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,92,0,0.07);
  border: 1px solid rgba(255,92,0,0.22);
  border-radius: 100px;
  padding: 5px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
}

.bento-pill-dot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.bento-stat {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 64px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -3px;
  margin-bottom: 6px;
  display: block;
}

.bento-stat-accent { color: var(--orange); }

.bento-deco-num {
  position: absolute;
  right: 20px;
  top: 16px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 110px;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  letter-spacing: -4px;
}

.bento-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
}

.bento-card p { font-size: 13px; line-height: 1.65; color: #777; }

.bento-ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 7px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray2);
  background: none;
  margin-top: 20px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  cursor: default;
}

.bento-card:hover .bento-ghost-btn { border-color: rgba(255,92,0,0.4); color: var(--orange); }

/* Horizontal full-width card */
.bento-horizontal {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.bento-horizontal-left {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255,92,0,0.04);
  border-right: 1px solid var(--border);
}

.bento-horizontal-right {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bento-comunidade-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.bento-comunidade-tags {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: center;
}

.bento-tag-line {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--gray2);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bento-tag-line::before {
  content: '✦';
  color: var(--orange);
  font-size: 9px;
  opacity: 0.6;
}

/* ========== STATS BAR ========== */
.stats-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 0;
}

.stats-bar-grid {
  display: flex;
  justify-content: center;
  gap: 80px;
  flex-wrap: wrap;
}

.stat-block { text-align: center; }

.stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  display: block;
}

.stat-desc {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 6px;
  display: block;
}

/* ========== OFFER ========== */
.offer-section { text-align: center; }

.offer-promo-banner {
  background: linear-gradient(135deg, var(--orange), #cc4400);
  padding: 14px 20px;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #000;
  margin-bottom: 40px;
  display: inline-block;
}

.offer-card {
  max-width: 520px;
  margin: 0 auto;
  background: var(--card);
  border: 2px solid var(--orange);
  border-radius: 8px;
  padding: 44px 40px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(255,92,0,0.15);
}

.offer-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light), var(--orange));
}

.offer-badge-50 {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ff4444;
  color: #fff;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 900;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

.offer-card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}

.offer-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
  line-height: 1;
}

.offer-includes ul { list-style: none; text-align: left; }

.offer-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #CCC;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.offer-includes li:last-child { border-bottom: none; }

.offer-includes li::before {
  content: '✦';
  color: var(--orange);
  font-size: 11px;
  margin-top: 3px;
  flex-shrink: 0;
}

.offer-price-from {
  font-size: 13px;
  color: var(--gray);
  text-decoration: line-through;
  margin-top: 28px;
  display: block;
}

.offer-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 88px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -4px;
  margin: 4px 0;
  display: block;
}

.offer-price-prefix {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  vertical-align: top;
  margin-top: 16px;
  display: inline-block;
  letter-spacing: -1px;
  color: var(--gray);
}

.offer-installment {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 28px;
  display: block;
}

.btn-offer {
  display: block;
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 20px 36px;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: transform 0.15s, background 0.2s;
  animation: btnPulse 3s ease-in-out infinite;
}

.btn-offer:hover { background: var(--orange-light); transform: translateY(-2px); animation: none; }

.offer-seals {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  color: #888;
  letter-spacing: 0.5px;
  flex-wrap: wrap;
}

.offer-seals span::before { content: '✅ '; }

.offer-countdown-label {
  margin-top: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray2);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.offer-countdown-timer {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: -1px;
  border-bottom: 1px solid rgba(255,92,0,0.3);
  padding-bottom: 2px;
}

/* ========== HOW IT WORKS ========== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.step-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color 0.3s, transform 0.3s;
}

.step-card:hover { border-color: var(--orange); transform: translateY(-6px); }

.step-icon { font-size: 44px; display: block; margin-bottom: 16px; }

.step-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
  display: block;
}

.step-card h3 { font-size: 22px; font-weight: 900; color: var(--white); margin-bottom: 12px; }
.step-card p { font-size: 13px; line-height: 1.65; color: #888; }

/* ========== GUARANTEE ========== */
.guarantee-section { text-align: center; }

.guarantee-box {
  max-width: 580px;
  margin: 0 auto;
  background: #051a0d;
  border: 1px solid #1a4d30;
  border-radius: 8px;
  padding: 50px 40px;
}

.guarantee-icon { font-size: 56px; margin-bottom: 20px; display: block; }

.guarantee-box img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 0 auto 24px;
  display: block;
}

.guarantee-box h2 {
  font-size: 42px;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 24px;
}

.guarantee-box p {
  font-size: 15px;
  line-height: 1.8;
  color: #8BC4A8;
  margin-bottom: 16px;
}

.guarantee-box p strong { color: var(--white); }

/* ========== FAQ ========== */
.faq-section { background: var(--dark); }

.faq-list { max-width: 660px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  gap: 20px;
  transition: color 0.2s;
  user-select: none;
}

.faq-question:hover { color: var(--orange); }

.faq-toggle {
  color: var(--orange);
  font-size: 22px;
  flex-shrink: 0;
  transition: transform 0.3s;
  font-weight: 400;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}

.faq-answer-inner {
  padding-bottom: 22px;
  font-size: 14px;
  line-height: 1.8;
  color: #999;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ========== FINAL CTA ========== */
.final-cta { text-align: center; position: relative; overflow: hidden; }

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,92,0,0.08) 0%, transparent 65%);
  pointer-events: none;
}

.final-cta h2 {
  font-size: clamp(48px, 8vw, 88px);
  font-weight: 900;
  line-height: 0.95;
  margin-bottom: 28px;
}

.final-cta-sub {
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 15px;
  line-height: 1.7;
  color: #999;
}

.final-cta-meta {
  margin-top: 16px;
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.final-cta-meta span { margin: 0 8px; }

/* ========== SOCIAL PROOF NOTIFICATION ========== */
.social-proof-notif {
  position: fixed;
  bottom: 28px;
  left: 20px;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  z-index: 998;
  animation: notifSlide 0.4s ease;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  font-size: 12px;
  color: #BBB;
  line-height: 1.4;
}

.social-proof-notif .notif-icon { font-size: 20px; flex-shrink: 0; }
.social-proof-notif strong { color: var(--white); }

@keyframes notifSlide {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ========== FOOTER ========== */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 1px;
  text-transform: uppercase;
  flex-wrap: wrap;
  gap: 12px;
}

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

.footer-logo::before { content: '⚡'; color: var(--orange); font-size: 12px; }

.footer-links { display: flex; gap: 20px; }
.footer-links a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--orange); }

.footer-disclaimer {
  width: 100%;
  border-top: 1px solid var(--border);
  margin-top: 16px;
  padding-top: 16px;
  font-size: 10px;
  line-height: 1.7;
  color: var(--gray2);
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
}

/* ========== ANIMATIONS / SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  .hero-title { font-size: clamp(30px, 9vw, 44px); letter-spacing: -1px; }
  .hero-impact { letter-spacing: 1.5px; font-size: 16px; }
  .hero-sub { font-size: 15px; }
  .semcom-grid { grid-template-columns: 1fr; }
  .bento-grid { grid-template-columns: 1fr; }
  .bento-span-2, .bento-span-3 { grid-column: span 1; }
  .bento-horizontal { grid-template-columns: 1fr; }
  .bento-horizontal-left { border-right: none; border-bottom: 1px solid var(--border); }
  .bento-comunidade-grid { flex-direction: column; }
  .bento-stat { font-size: 48px; }
  .steps-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar-grid { gap: 40px; }
  .stat-num { font-size: 48px; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .topbar-inner { gap: 10px; }
  .topbar-text { font-size: 10px; }
  .social-proof-notif { bottom: 16px; left: 12px; right: 12px; max-width: 100%; }
  .offer-card { padding: 32px 24px; }
  .offer-price { font-size: 64px; letter-spacing: -2px; }
  .section-title { letter-spacing: -1px; }
}
