/* BotRise Marketing Site — Custom Styles */

:root {
  --bg-main: #0d0f14;
  --bg-card: #161a24;
  --bg-card-hover: #1c2130;
  --gold: #f5a623;
  --gold-dark: #d4891a;
  --gold-glow: rgba(245, 166, 35, 0.15);
  --text-primary: #f0f0f0;
  --text-secondary: #8a8fa8;
  --border: #2a2f3e;
  --green: #4ade80;
  --red: #f87171;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-main);
  color: var(--text-primary);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAVBAR ─────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13, 15, 20, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}

.navbar.scrolled {
  border-bottom-color: var(--border);
  background: rgba(13, 15, 20, 0.97);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-logo span {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}

.nav-logo span em {
  color: var(--gold);
  font-style: normal;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
}

.btn-nav-cta {
  background: var(--gold);
  color: #0d0f14 !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.15s !important;
}

.btn-nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

.btn-nav-download {
  background: #0ea5e9;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s, transform 0.15s !important;
}

.btn-nav-download:hover {
  background: #0284c7 !important;
  transform: translateY(-1px);
}

/* ── LANGUAGE TOGGLE ────────────────────────────── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 4px 8px;
}

.lang-sep {
  color: var(--border);
  font-size: 0.75rem;
  user-select: none;
}

.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 2px 4px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
  opacity: 0.45;
}

.lang-btn img {
  width: 22px;
  height: 22px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.lang-btn:hover {
  opacity: 0.8;
  transform: scale(1.1);
}

.lang-btn.active {
  opacity: 1;
  box-shadow: 0 0 0 2px var(--gold);
  border-radius: 50%;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
  border: 1px solid;
}

.badge-gold {
  background: rgba(245, 166, 35, 0.1);
  border-color: rgba(245, 166, 35, 0.3);
  color: var(--gold);
}

.badge-green {
  background: rgba(74, 222, 128, 0.1);
  border-color: rgba(74, 222, 128, 0.3);
  color: var(--green);
}

.badge-blue {
  background: rgba(96, 165, 250, 0.1);
  border-color: rgba(96, 165, 250, 0.3);
  color: #60a5fa;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.hero h1 .highlight {
  color: var(--gold);
}

.hero p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: #0d0f14;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 0 rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 166, 35, 0.25);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-primary);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(245, 166, 35, 0.05);
}

/* Hero visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 860px;
  margin-top: 56px;
}

.hero-screenshot-wrapper {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.hero-screenshot-wrapper img {
  width: 100%;
  display: block;
}

/* ── CAROUSEL ────────────────────────────────────── */
.carousel {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
  background: var(--bg-card);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  flex-shrink: 0;
  overflow: hidden;
}

.carousel-slide img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(13, 15, 20, 0.7);
  border: 1px solid var(--border);
  color: var(--text-primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, border-color 0.2s;
  z-index: 2;
  padding-bottom: 2px;
}

.carousel-arrow:hover {
  background: rgba(245, 166, 35, 0.15);
  border-color: rgba(245, 166, 35, 0.4);
}

.carousel-prev { left: 12px; }
.carousel-next { right: 12px; }

.carousel-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(240, 240, 240, 0.35);
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.25s;
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

.hero-float-card {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  font-size: 0.82rem;
  font-weight: 600;
  animation: float 4s ease-in-out infinite;
}

.hero-float-card.card-1 {
  bottom: -20px;
  left: -24px;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  top: -16px;
  right: -20px;
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.float-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.float-label {
  color: var(--text-secondary);
  font-size: 0.7rem;
  font-weight: 400;
}

.float-value {
  color: var(--gold);
  font-size: 1rem;
  font-weight: 700;
}

/* ── STATS STRIP ─────────────────────────────────── */
.stats-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 24px;
  background: var(--bg-card);
}

.stats-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -1px;
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ── SECTIONS ────────────────────────────────────── */
section {
  padding: 96px 24px;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.7;
}

/* ── FEATURES ────────────────────────────────────── */
#funcionalidades {
  background: var(--bg-main);
}

.features-header {
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.25s;
}

.feature-card:hover {
  border-color: rgba(245, 166, 35, 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--gold-glow);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(245, 166, 35, 0.2);
}

.feature-icon-wrap img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 16px;
}

.feature-tag {
  font-size: 0.72rem;
  padding: 3px 9px;
  border-radius: 12px;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.2);
  color: var(--gold);
  font-weight: 600;
}

/* ── HOW IT WORKS ────────────────────────────────── */
#como-funciona {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.66% + 16px);
  right: calc(16.66% + 16px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 50%, transparent 100%);
  border-top: 1px dashed rgba(245, 166, 35, 0.3);
}

.step-card {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg-card);
}

.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ── MULTI-CONTAS ────────────────────────────────── */
#multi-contas {
  background: var(--bg-main);
}

.multi-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 24px;
}

.multi-visual {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 28px;
}

.cycle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.cycle-row:last-child {
  border-bottom: none;
}

.cycle-account {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
}

.account-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-secondary);
  flex-shrink: 0;
}

.account-name {
  font-size: 0.88rem;
  font-weight: 600;
}

.account-sub {
  font-size: 0.72rem;
  color: var(--text-secondary);
}

.status-pill {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  white-space: nowrap;
}

.pill-running {
  background: rgba(245, 166, 35, 0.15);
  color: var(--gold);
  border: 1px solid rgba(245, 166, 35, 0.3);
}

.pill-done {
  background: rgba(74, 222, 128, 0.1);
  color: var(--green);
  border: 1px solid rgba(74, 222, 128, 0.3);
}

.pill-wait {
  background: rgba(138, 143, 168, 0.1);
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.pill-rest {
  background: rgba(96, 165, 250, 0.1);
  color: #60a5fa;
  border: 1px solid rgba(96, 165, 250, 0.3);
}

.cycle-label {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.multi-points {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.multi-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.point-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-glow);
  border-radius: 10px;
  border: 1px solid rgba(245, 166, 35, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}

.point-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.point-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ── WHY BOTRISE ─────────────────────────────────── */
#diferenciais,
#licenca {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.why-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 22px;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s;
}

.why-item:hover {
  border-color: rgba(245, 166, 35, 0.3);
}

.why-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(74, 222, 128, 0.15);
  border: 1px solid rgba(74, 222, 128, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
  font-size: 0.7rem;
}

.why-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-text p {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

/* ── LICENSE / CTA ───────────────────────────────── */
#licenca {
  background: var(--bg-main);
}

.license-card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(245, 166, 35, 0.25);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.license-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(245, 166, 35, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.license-card h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 12px;
}

.license-card > p {
  color: var(--text-secondary);
  margin-bottom: 36px;
  font-size: 1rem;
  line-height: 1.6;
}

.license-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
  text-align: left;
}

.lic-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.lic-step:last-child {
  border-bottom: none;
}

.lic-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-glow);
  border: 1px solid rgba(245, 166, 35, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--gold);
  flex-shrink: 0;
}

.lic-step p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.lic-step p strong {
  color: var(--text-primary);
}

.btn-coming-soon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(138, 143, 168, 0.1);
  color: var(--text-secondary);
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px dashed var(--border);
  cursor: default;
  margin-bottom: 16px;
  user-select: none;
}

.btn-discord {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #5865f2;
  color: #fff;
  padding: 16px 36px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 16px;
}

.btn-discord:hover {
  background: #4752c4;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(88, 101, 242, 0.3);
}

.discord-icon {
  width: 22px;
  height: 22px;
}

.license-note {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 0;
}

.license-note span {
  color: var(--green);
}

/* ── PRICING ─────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245, 166, 35, 0.3);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.pricing-card--featured {
  border-color: rgba(245, 166, 35, 0.5);
  background: linear-gradient(160deg, var(--bg-card) 60%, rgba(245, 166, 35, 0.05) 100%);
  box-shadow: 0 0 0 1px rgba(245,166,35,0.2), 0 20px 60px rgba(0,0,0,0.35);
}

.pricing-badge {
  display: inline-block;
  background: var(--gold);
  color: #0d0f14;
  font-size: 0.68rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.pricing-duration {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.pricing-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-card--featured .pricing-price {
  color: var(--gold);
}

.pricing-original {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: line-through;
  text-decoration-color: rgba(245, 166, 35, 0.6);
  margin-bottom: 6px;
  opacity: 0.7;
}

.pricing-launch-label {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 6px;
  padding: 3px 10px;
  margin-bottom: 8px;
}

.pricing-perday {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  flex: 1;
}

.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.pricing-note span {
  color: var(--green);
}

@media (max-width: 700px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
  }
}

/* ── CTA DUO (download + licença lado a lado) ───── */
.cta-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.cta-duo .license-card {
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.cta-duo .license-card .license-steps {
  flex: 1;
}

.dl-spec {
  text-align: center;
}

@media (max-width: 860px) {
  .cta-duo {
    grid-template-columns: 1fr;
  }
}

/* ── DOWNLOAD CARD ──────────────────────────────── */
.download-card {
  border-color: rgba(56, 189, 248, 0.25);
}

.download-card::before {
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
}

.download-specs {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 32px 0;
  padding: 24px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.dl-spec-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
  margin-bottom: 4px;
}

.dl-spec-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #0ea5e9;
  color: #fff;
  padding: 16px 40px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  margin-bottom: 16px;
}

.btn-download:hover {
  background: #0284c7;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(14, 165, 233, 0.3);
}

/* ── FOOTER ──────────────────────────────────────── */
footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.footer-brand img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  opacity: 0.8;
}

.footer-brand span {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-secondary);
}

.footer-brand span em {
  color: var(--gold);
  font-style: normal;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: right;
  line-height: 1.6;
}

/* ── RESPONSIVE ──────────────────────────────────── */
@media (max-width: 900px) {
  .hero-float-card.card-1 {
    left: 0;
  }

  .hero-float-card.card-2 {
    right: 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before {
    display: none;
  }

  .multi-layout {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px;
    gap: 16px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-hamburger {
    display: flex;
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .license-card {
    padding: 28px 20px;
  }

  .download-specs {
    gap: 20px;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-copy {
    text-align: center;
  }
}

/* ── SCROLL ANIMATION ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── MANUAL PAGE ─────────────────────────────────── */
.manual-header {
  padding: 140px 0 32px;
  text-align: center;
}

.manual-header .section-inner {
  max-width: 720px;
}

.manual-header .section-subtitle {
  margin: 0 auto;
}

.manual-main {
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Cabeçalho de cada bloco (Parte 1/2/3) */
.manual-group-head {
  margin-top: 26px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--border);
  scroll-margin-top: 90px;
}

.manual-group-head:first-child {
  margin-top: 0;
}

.manual-group-title {
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--text-primary);
  margin-top: 4px;
}

.manual-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 32px 32px;
  scroll-margin-top: 90px;
}

/* Link de skill que referencia a seção detalhada */
.manual-table td .manual-skill-link {
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px dashed var(--gold-dark);
  transition: color 0.2s, border-color 0.2s;
}

.manual-table td .manual-skill-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.manual-table td .manual-skill-link strong {
  color: inherit;
}

.manual-step-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.manual-step-head .step-number {
  flex: 0 0 auto;
  margin: 0;
}

.manual-step-head .section-tag {
  margin-bottom: 4px;
}

.manual-step-head h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.25;
}

.manual-step-body > p {
  color: var(--text-secondary);
  font-size: 1.02rem;
  margin-bottom: 22px;
}

/* Galeria de imagens dos passos */
.manual-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  justify-items: center;
  align-items: start;
}

.manual-gallery--single {
  grid-template-columns: 1fr;
  margin-left: auto;
  margin-right: auto;
}

/* Espaço antes da imagem quando ela vem logo após um callout ou tabela */
.manual-callout + .manual-gallery,
.manual-table-wrap + .manual-gallery {
  margin-top: 24px;
}

/* Figura com legenda (ex.: modos de coleta lado a lado) */
.manual-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.manual-figure figcaption {
  text-align: center;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.manual-gallery img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-main);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

/* Bloco de código do .ini */
.manual-code {
  position: relative;
  background: var(--bg-main);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 22px;
  overflow: hidden;
}

.manual-code pre {
  margin: 0;
  padding: 20px 22px;
  overflow-x: auto;
}

.manual-code code {
  font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--gold);
  white-space: pre;
}

.manual-code-copy {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-secondary);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.manual-code-copy:hover {
  color: var(--text-primary);
  border-color: var(--gold);
}

.manual-code-copy.copied {
  color: var(--green);
  border-color: var(--green);
}

/* Caixas de aviso */
.manual-callout {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--gold-glow);
  border-left: 3px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 14px 18px;
  margin-top: 16px;
}

.manual-callout--info {
  background: rgba(74, 158, 255, 0.1);
  border-left-color: #4a9eff;
}

.manual-callout-icon {
  font-size: 1.1rem;
  line-height: 1.5;
  flex: 0 0 auto;
}

.manual-callout p {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin: 0;
}

@media (max-width: 860px) {
  .manual-header {
    padding-top: 120px;
  }

  .manual-step {
    padding: 22px 20px 24px;
  }

  .manual-gallery {
    grid-template-columns: 1fr;
  }

  .manual-step-head h2 {
    font-size: 1.2rem;
  }
}

/* ══ HUB DO MANUAL (manual.html) ══════════════════════ */
.manual-hub {
  padding-bottom: 80px;
}

.manual-hub-grid {
  margin-top: 8px;
}

/* Card do hub usa .feature-card, mas vira link clicável inteiro */
a.manual-hub-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.manual-hub-card .manual-hub-step-count {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
}

.manual-hub-card .manual-hub-go {
  margin-top: auto;
  padding-top: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.2s;
}

.manual-hub-card:hover .manual-hub-go {
  color: var(--gold);
}

/* ══ NAVEGAÇÃO ANTERIOR / PRÓXIMO ═════════════════════ */
.manual-pager {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.manual-pager a {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.manual-pager a:hover {
  border-color: rgba(245, 166, 35, 0.35);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.manual-pager .manual-pager-dir {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.manual-pager .manual-pager-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.manual-pager a.manual-pager-next {
  text-align: right;
  align-items: flex-end;
}

/* Tabela de referência (resumo de skills, filtros, etc.) */
.manual-table {
  width: 100%;
  border-collapse: collapse;
  margin: 4px 0 22px;
  font-size: 0.92rem;
}

.manual-table th,
.manual-table td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  color: var(--text-secondary);
  vertical-align: top;
}

.manual-table th {
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.manual-table td strong {
  color: var(--text-primary);
}

.manual-table-wrap {
  overflow-x: auto;
  margin-bottom: 8px;
}

/* Dica/sugestão em evidência dentro de uma célula da tabela */
.manual-tip {
  display: inline-block;
  margin-top: 8px;
  padding: 5px 11px;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--gold);
  background: var(--gold-glow);
  border-radius: 7px;
}

.manual-table td .manual-tip strong {
  color: inherit;
  font-weight: 800;
}

@media (max-width: 560px) {
  .manual-pager a.manual-pager-next {
    text-align: left;
    align-items: flex-start;
  }
}

/* ══ AVISO DE VERSÃO + BOTÃO DE DOWNLOAD ══════════════ */
.manual-version-callout {
  align-items: flex-start;
}

.manual-version-body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.manual-version-body p {
  margin: 0;
}

.manual-download-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  align-self: flex-start;
  padding: 12px 22px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #1a1408;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(245, 166, 35, 0.28);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
}

.manual-download-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(245, 166, 35, 0.42);
  filter: brightness(1.05);
}

.manual-download-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex: 0 0 auto;
}

.manual-download-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.manual-download-label {
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.2px;
}

.manual-download-sub {
  font-size: 0.74rem;
  font-weight: 600;
  opacity: 0.78;
}

/* Destaque inline reutilizável (aviso de versão, frases importantes) */
.manual-em-warn,
.manual-em {
  color: var(--gold);
  font-weight: 700;
  background: var(--gold-glow);
  padding: 1px 6px;
  border-radius: 5px;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}
