/* ================================
   LUCIDE ICONS
================================ */
.feature-icon svg,
.check-icon svg,
.setup-icon svg,
.security-icon-bg svg,
.security-list li span svg,
.contact-card-icon svg {
  display: block;
}

.feature-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 180, 41, 0.08);
  border: 1px solid rgba(240, 180, 41, 0.15);
  border-radius: 10px;
  margin-bottom: 14px;
  color: var(--accent);
}

.feature-icon svg {
  width: 20px;
  height: 20px;
}

.check-icon {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg {
  width: 20px;
  height: 20px;
}

.setup-icon {
  color: var(--accent);
  display: flex;
  align-items: center;
}

.setup-icon svg {
  width: 20px;
  height: 20px;
}

.security-icon-bg svg {
  width: 52px;
  height: 52px;
  color: var(--accent);
}

.security-list li span svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.contact-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.2);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--accent);
}

.contact-card-icon svg {
  width: 26px;
  height: 26px;
}

.logo-icon {
  display: flex;
  align-items: center;
  color: var(--accent);
}

.logo-icon svg {
  width: 22px;
  height: 22px;
}

.plan-features li span:first-child {
  display: flex;
  align-items: center;
  color: var(--green);
  flex-shrink: 0;
}

.plan-features li span:first-child svg {
  width: 15px;
  height: 15px;
}

/* Span do texto da feature — inline para não colapsar espaços com <strong> */
.plan-features li span:last-child {
  display: inline;
  flex-shrink: 1;
  font-weight: 400;
  color: var(--text);
}

.avatar-placeholder svg {
  width: 28px;
  height: 28px;
  color: #0a0b0e;
}

.avatar-placeholder.muted svg {
  color: var(--text-muted);
  width: 26px;
  height: 26px;
}

/* Foto real do cliente */
.avatar-img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(240, 180, 41, 0.4);
  display: block;
}

/* ================================
   SECURITY DISCLOSURE BOX
================================ */
.security-disclosure {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  margin-top: 8px;
  margin-bottom: 4px;
}

.disclosure-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.disclosure-header svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
}

.disclosure-header strong {
  font-size: 0.85rem;
  color: var(--text);
}

.security-disclosure p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.security-disclosure em {
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}

/* ================================
   RESET original font-size para feature-icon (sobrescreve o antigo)
================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #0a0b0e;
  --bg-2: #111318;
  --bg-3: #16191f;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.18);
  --text: #e8eaed;
  --text-muted: #8b9099;
  --accent: #f0b429;
  --accent-2: #ff6b35;
  --green: #22c55e;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.6);
  --transition: 0.2s ease;
}

/* ================================
   LIGHT MODE
================================ */
[data-theme="light"] {
  --bg: #f5f6fa;
  --bg-2: #ffffff;
  --bg-3: #eef0f6;
  --border: rgba(0, 0, 0, 0.09);
  --border-hover: rgba(0, 0, 0, 0.18);
  --text: #111318;
  --text-muted: #5a6070;
  --accent: #d49b10;
  --accent-2: #e05a25;
  --green: #16a34a;
  --shadow: 0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 48px rgba(0,0,0,0.14);
}

[data-theme="light"] body {
  background: var(--bg);
  color: var(--text);
}

[data-theme="light"] .navbar {
  background: rgba(245, 246, 250, 0.92) !important;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border) !important;
}

[data-theme="light"] .hero {
  background: linear-gradient(160deg, #f5f6fa 0%, #eef0f6 50%, #fff9e8 100%);
}

[data-theme="light"] .hero-bg-grid {
  opacity: 0.06;
}

[data-theme="light"] .feature-card,
[data-theme="light"] .pricing-card,
[data-theme="light"] .step,
[data-theme="light"] .screenshot-card,
[data-theme="light"] .contact-card,
[data-theme="light"] .fame-card {
  background: var(--bg-2);
  border-color: var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

[data-theme="light"] .section-tag {
  background: rgba(212, 155, 16, 0.1);
  border-color: rgba(212, 155, 16, 0.25);
  color: var(--accent);
}

[data-theme="light"] .platform-tabs .platform-tab {
  background: rgba(0,0,0,0.04);
  border-color: rgba(0,0,0,0.1);
  color: var(--text-muted);
}

[data-theme="light"] .platform-tabs .platform-tab.active {
  background: rgba(212, 155, 16, 0.1);
  border-color: rgba(212, 155, 16, 0.4);
  color: var(--accent);
}

[data-theme="light"] .platform-panel-header {
  background: rgba(0,0,0,0.025);
  border-color: var(--border);
}

[data-theme="light"] .platform-client {
  background: rgba(22, 163, 74, 0.06);
  border-color: rgba(22, 163, 74, 0.2);
}

[data-theme="light"] .screenshot-img-wrap {
  background: rgba(0,0,0,0.06);
}

[data-theme="light"] .placeholder-wrap {
  background: repeating-linear-gradient(
    45deg,
    rgba(0,0,0,0.02) 0px,
    rgba(0,0,0,0.02) 8px,
    transparent 8px,
    transparent 16px
  );
}

[data-theme="light"] .security-inner {
  background: var(--bg-1);
}

[data-theme="light"] .security-disclosure {
  background: rgba(0,0,0,0.03);
}

[data-theme="light"] .install-note,
[data-theme="light"] .fame-note {
  background: rgba(0,0,0,0.03);
  border-color: var(--border);
}

[data-theme="light"] .lightbox-backdrop {
  background: rgba(0,0,0,0.75);
}

[data-theme="light"] .contact-card .contact-card-inner {
  background: var(--bg-2);
}

[data-theme="light"] code {
  background: rgba(0,0,0,0.06);
  color: var(--accent);
}

[data-theme="light"] .footer {
  background: var(--bg-3);
  border-top: 1px solid var(--border);
}

[data-theme="light"] .mobile-menu {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

[data-theme="light"] .hero-stats {
  background: rgba(0,0,0,0.04);
  border-color: var(--border);
}

[data-theme="light"] .stat-divider {
  background: var(--border);
}

[data-theme="light"] .coming-soon-icon {
  background: rgba(0,0,0,0.04);
  border-color: var(--border);
}

[data-theme="light"] .platform-coming-soon {
  border-color: var(--border);
}

[data-theme="light"] .contact-text p {
  color: var(--text-muted);
}

[data-theme="light"] .for-who-list li {
  border-color: var(--border);
}

[data-theme="light"] .hero-badge {
  background: rgba(212, 155, 16, 0.1);
  border-color: rgba(212, 155, 16, 0.25);
}

[data-theme="light"] .platform-tabs .platform-tab:not([disabled]):hover {
  background: rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.14);
  color: var(--text);
}

[data-theme="light"] .fame-card--empty {
  background: rgba(0,0,0,0.025);
}

[data-theme="light"] .fame-avatar--empty {
  background: rgba(0,0,0,0.06);
  border-color: var(--border);
}

/* ================================
   THEME TOGGLE BUTTON
================================ */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.theme-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.theme-toggle:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
  border-color: var(--border-hover);
}

.theme-toggle svg {
  width: 17px;
  height: 17px;
  transition: opacity 0.2s ease, transform 0.3s ease;
  position: absolute;
}

.theme-icon-light,
.theme-icon-dark {
  position: absolute;
  transition: opacity 0.2s ease, transform 0.3s ease;
}

/* dark theme: show moon, hide sun */
[data-theme="dark"] .theme-icon-light { opacity: 0; transform: rotate(-90deg) scale(0.7); }
[data-theme="dark"] .theme-icon-dark  { opacity: 1; transform: rotate(0deg) scale(1); }

/* light theme: show sun, hide moon */
[data-theme="light"] .theme-icon-light { opacity: 1; transform: rotate(0deg) scale(1); }
[data-theme="light"] .theme-icon-dark  { opacity: 0; transform: rotate(90deg) scale(0.7); }

[data-theme="light"] .theme-toggle {
  background: rgba(0,0,0,0.05);
  color: var(--accent);
}

/* ================================
   LANGUAGE SELECTOR DROPDOWN
================================ */
.lang-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

/* Botão com o emoji da bandeira ativa */
.lang-active-btn {
  height: 36px;
  padding: 0 8px 0 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.lang-active-btn:hover {
  background: rgba(255,255,255,0.09);
  border-color: var(--border-hover);
}

/* Emoji da bandeira no botão ativo */
.lang-active-flag {
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* Setinha discreta */
.lang-active-caret {
  width: 10px;
  height: 10px;
  color: var(--text-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.lang-active-btn[aria-expanded="true"] .lang-active-caret {
  transform: rotate(180deg);
}

[data-theme="light"] .lang-active-btn {
  background: rgba(0,0,0,0.05);
}

[data-theme="light"] .lang-active-btn:hover {
  background: rgba(0,0,0,0.09);
}

/* Dropdown panel */
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 6px;
  display: none;
  flex-direction: column;
  gap: 2px;
  min-width: 152px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  z-index: 200;
  animation: langDropIn 0.15s ease;
}

.lang-dropdown.open {
  display: flex;
}

@keyframes langDropIn {
  from { opacity: 0; transform: translateY(-6px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Cada opção: emoji + nome do idioma */
.lang-option {
  width: 100%;
  height: 38px;
  border-radius: 8px;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lang-option:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--border);
}

.lang-option.active {
  background: rgba(240,180,41,0.12);
  border-color: rgba(240,180,41,0.3);
}

/* Emoji da bandeira dentro do dropdown */
.lang-option-flag {
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* Nome do idioma visível dentro do dropdown */
.lang-option-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  white-space: nowrap;
}

.lang-option.active .lang-option-label {
  color: var(--accent);
  font-weight: 600;
}

[data-theme="light"] .lang-dropdown {
  background: #fff;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}

[data-theme="light"] .lang-option:hover {
  background: rgba(0,0,0,0.05);
}

[data-theme="light"] .lang-option.active {
  background: rgba(240,180,41,0.1);
}

/* ================================
   HALL OF FAME
================================ */
.hall-of-fame {
  position: relative;
}

.hall-of-fame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 180, 41, 0.25), transparent);
}

.fame-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.fame-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
  position: relative;
}

.fame-card--active {
  border-color: rgba(240, 180, 41, 0.3);
  background: rgba(240, 180, 41, 0.04);
  box-shadow: 0 0 32px rgba(240, 180, 41, 0.06);
}

.fame-card--active:hover {
  transform: translateY(-4px);
  border-color: rgba(240, 180, 41, 0.5);
  box-shadow: 0 12px 40px rgba(240, 180, 41, 0.12);
}

.fame-card--empty {
  border-style: dashed;
  border-color: rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.015);
}

.fame-card--empty:hover {
  border-color: rgba(240, 180, 41, 0.25);
  transform: translateY(-3px);
}

.fame-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(240, 180, 41, 0.4);
  flex-shrink: 0;
}

.fame-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fame-avatar--empty {
  background: rgba(255,255,255,0.05);
  border: 2px dashed rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
}

.fame-avatar--empty svg {
  width: 26px;
  height: 26px;
}

.fame-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.fame-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}

.fame-name--empty {
  color: var(--text-muted);
  font-weight: 500;
  font-style: italic;
  font-size: 0.85rem;
}

.fame-plan {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.15rem 0.6rem;
  border-radius: 9999px;
}

.fame-plan--plus {
  background: rgba(240, 180, 41, 0.15);
  border: 1px solid rgba(240, 180, 41, 0.3);
  color: #f0b429;
}

.fame-plan--standard {
  background: rgba(139, 144, 153, 0.12);
  border: 1px solid rgba(139, 144, 153, 0.2);
  color: #9ca3af;
}

.fame-plan--premium {
  background: rgba(255, 107, 53, 0.12);
  border: 1px solid rgba(255, 107, 53, 0.25);
  color: #ff6b35;
}

.fame-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}

.fame-site {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
}

.fame-active-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: #4ade80;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 0.2rem 0.7rem;
  border-radius: 9999px;
  letter-spacing: 0.04em;
}

.fame-cta-wrap {
  margin-top: 0.25rem;
}

.btn-sm {
  padding: 0.35rem 1rem;
  font-size: 0.8rem;
  border-radius: 9999px;
}

.fame-note {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.025);
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
}

.fame-note svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: var(--accent);
}

.fame-note a {
  color: var(--accent);
  font-weight: 600;
}

.fame-note a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .fame-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .nav-controls {
    gap: 0.35rem;
  }

  .theme-toggle,
  .lang-active-btn {
    width: 34px;
    height: 34px;
  }

  /* Scroll indicator: oculto no mobile para não sobrepor stats */
  .hero-scroll-indicator {
    display: none;
  }
}

@media (max-width: 480px) {
  .fame-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================================
   REDUCE MOTION SUPPORT
================================ */


html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ================================
   LAYOUT
================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

/* ================================
   NAVBAR
================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 11, 14, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
}

.logo-icon {
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav-links a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.4rem;
  cursor: pointer;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(255,255,255,0.07);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              padding 0.25s ease,
              opacity 0.3s ease;
  opacity: 0;
}

.mobile-menu.open {
  display: flex;
  max-height: 400px;
  padding: 8px 0;
  opacity: 1;
}

.mobile-menu a {
  padding: 14px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover {
  background: var(--bg-3);
  color: var(--text);
}

/* .mobile-menu.open handled by JS + transition above */

/* ================================
   BUTTONS
================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 14px;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: var(--accent);
  color: #0a0b0e;
  font-weight: 700;
}

.btn-primary:hover {
  background: #f5c842;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(240, 180, 41, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-hover);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

.btn-ghost {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ================================
   SECTION HEADER
================================ */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* ================================
   HERO
================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(240,180,41,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,180,41,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(240,180,41,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 80px 24px;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(240, 180, 41, 0.1);
  border: 1px solid rgba(240, 180, 41, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text);
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-subtitle strong {
  color: var(--text);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 40px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ================================
   FEATURES
================================ */
.features {
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.feature-card--highlight {
  border-color: rgba(240,180,41,0.3);
  background: linear-gradient(135deg, rgba(240,180,41,0.06) 0%, var(--bg-2) 100%);
}

/* original font-size override removed — icons now use SVG */

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================
   FOR WHO — Showcase layout
================================ */
.for-who {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.for-who .section-header {
  margin-bottom: 40px;
}

.for-who-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.for-who-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}

.for-who-list li:hover {
  border-color: rgba(240,180,41,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.check-icon {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon svg {
  width: 20px;
  height: 20px;
}

.for-who-list strong {
  display: block;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 0.95rem;
}

.for-who-list p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Área reservada para imagens da ferramenta */
.for-who-images {
  background: rgba(255,255,255,0.02);
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.for-who-images-hint {
  font-size: 0.85rem;
  color: rgba(139, 144, 153, 0.35);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ================================
   SHOWCASE SINGLE IMAGE
================================ */
.showcase-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: var(--bg-3);
  max-width: 900px;
  margin: 0 auto;
}

.showcase-main-img {
  width: 100%;
  display: block;
  object-fit: contain;
  max-height: 540px;
  background: #0a0b0e;
}

.showcase-img-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(10, 11, 14, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.04em;
}

.showcase-img-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px rgba(34,197,94,0.7);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@media (max-width: 720px) {
  .showcase-main-img {
    max-height: 260px;
  }
}

/* ================================
   SHOWCASE SECTION
================================ */
.showcase {
  background: var(--bg);
  overflow: hidden;
}

.showcase-client {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 420px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
}

.showcase-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
  flex-shrink: 0;
}

.showcase-client-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.showcase-client-info strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.showcase-client-info span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ================================
   CAROUSEL
================================ */
.carousel {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-3);
  box-shadow: var(--shadow-lg);
  user-select: none;
}

.carousel-track {
  display: flex;
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.carousel-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  max-height: 520px;
  overflow: hidden;
  background: #0a0b0e;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  max-height: 520px;
}

/* Prev / Next buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 11, 14, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-hover);
  color: var(--text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  z-index: 10;
}

.carousel-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #0a0b0e;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-btn--prev { left: 14px; }
.carousel-btn--next { right: 14px; }

/* Dots */
.carousel-dots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 100px;
}

/* Caption bar */
.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 20px 48px;
  background: linear-gradient(to top, rgba(10,11,14,0.85) 0%, transparent 100%);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  pointer-events: none;
}

@media (max-width: 720px) {
  .carousel-slide {
    max-height: 260px;
  }
  .carousel-slide img {
    max-height: 260px;
  }
  .carousel-btn {
    width: 36px;
    height: 36px;
  }
}

/* ================================
   PRICING
================================ */
.pricing {
  background: var(--bg);
}

/* Nota de moeda — exibida apenas em EN via JS */
.currency-note {
  display: none; /* JS controla via style.display */
  align-items: center;
  gap: 8px;
  background: rgba(var(--accent-rgb, 99, 102, 241), 0.08);
  border: 1px solid rgba(var(--accent-rgb, 99, 102, 241), 0.25);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.82rem;
  color: var(--text-2);
  margin-bottom: 24px;
  line-height: 1.4;
}
.currency-note svg {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}

.pricing-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pricing-card--featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(240,180,41,0.06) 0%, var(--bg-2) 60%);
  transform: scale(1.02);
}

.pricing-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #0a0b0e;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card-header {
  margin-bottom: 28px;
}

.plan-name {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}

.price-value {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.plan-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--text);
}

.plan-features li span:first-child {
  color: var(--green);
  font-weight: 700;
}

.setup-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 28px;
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.setup-note strong {
  color: var(--text);
}

.setup-icon {
  font-size: 1.2rem;
}

/* ================================
   PORTFOLIO
================================ */
.portfolio {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.portfolio-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition);
}

.portfolio-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.portfolio-card--open {
  border-style: dashed;
  border-color: rgba(255,255,255,0.12);
}

.portfolio-avatar {
  flex-shrink: 0;
}

.avatar-placeholder {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}

.avatar-placeholder.muted {
  background: rgba(255,255,255,0.06);
  border: 2px dashed var(--border-hover);
  color: var(--text-muted);
  font-size: 1.4rem;
  font-weight: 700;
}

.portfolio-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.portfolio-badge.open {
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border-color: var(--border);
}

.portfolio-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.portfolio-plan {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}

.portfolio-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================================
   DEV SITES (Em desenvolvimento)
   — estilos mantidos apenas aqui, duplicata removida abaixo
================================ */
.dev-sites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 900px) {
  .dev-sites-grid {
    grid-template-columns: 1fr;
  }
}

.dev-site-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.dev-site-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.dev-site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.dev-site-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.dev-site-icon svg {
  width: 20px;
  height: 20px;
}

.dev-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
}

.dev-badge--progress {
  color: #f59e0b;
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.dev-site-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 2px;
}

.dev-site-url {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.dev-site-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.dev-site-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dev-site-features span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dev-site-features span svg {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--green);
}

.dev-site-features span:last-child svg {
  color: #f59e0b;
}

/* ================================
   PLATFORM GRID (Portfólio novo)
================================ */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

@media (max-width: 1100px) {
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.platform-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}

.platform-card:hover {
  transform: translateY(-3px);
}

.platform-card--live {
  border-color: rgba(34, 197, 94, 0.25);
  background: linear-gradient(145deg, rgba(34,197,94,0.04) 0%, var(--card-bg) 60%);
}

.platform-card--live:hover {
  border-color: rgba(34, 197, 94, 0.45);
}

.platform-card--dev:hover {
  border-color: rgba(245, 158, 11, 0.3);
}

.platform-card-top {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 1rem;
}

.platform-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.platform-status-dot.live {
  background: var(--green);
  box-shadow: 0 0 6px rgba(34,197,94,0.6);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.platform-status-dot.dev {
  background: #f59e0b;
}

.platform-status-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 9px;
  border-radius: 100px;
}

.platform-status-label.live {
  color: var(--green);
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
}

.platform-status-label.dev {
  color: #f59e0b;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
}

.platform-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(99,102,241,0.12);
  border: 1px solid rgba(99,102,241,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

.platform-icon-wrap svg {
  width: 22px;
  height: 22px;
}

.platform-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.platform-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 0.85rem;
}

.platform-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.platform-meta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  color: var(--accent);
}

.platform-desc {
  font-size: 0.845rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.platform-features-mini {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.platform-features-mini li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.platform-features-mini li svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.platform-features-mini li i[data-lucide="check"] {
  color: var(--green);
}

.platform-features-mini li i[data-lucide="clock"] {
  color: #f59e0b;
}

.platform-client-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 12px;
  margin-top: auto;
}

.mini-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--green);
  flex-shrink: 0;
}

.platform-client-strip span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ================================
   SECURITY
================================ */
.security {
  background: var(--bg);
}

.security-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 64px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.security-icon-bg {
  width: 120px;
  height: 120px;
  background: rgba(240,180,41,0.08);
  border: 1px solid rgba(240,180,41,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.security-text .section-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.security-text .section-title {
  text-align: left;
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.security-text > p {
  color: var(--text-muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.security-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}

.security-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

/* ================================
   HOW TO
================================ */
.how-to {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.steps-grid {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.step {
  flex: 1;
  max-width: 220px;
  text-align: center;
  padding: 24px 16px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}

.step:hover {
  border-color: rgba(240,180,41,0.3);
  transform: translateY(-3px);
}

.step-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.4;
  margin-bottom: 12px;
  letter-spacing: -0.04em;
}

.step h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.step p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step p code {
  background: rgba(240,180,41,0.1);
  color: var(--accent);
  padding: 1px 6px;
  border-radius: 4px;
  font-size: 0.75rem;
}

.step-arrow {
  color: var(--text-muted);
  font-size: 1.4rem;
  flex-shrink: 0;
  padding: 0 8px;
  opacity: 0.4;
}

.install-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 40px;
  background: rgba(240, 180, 41, 0.05);
  border: 1px solid rgba(240, 180, 41, 0.18);
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.install-note svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ================================
   CONTACT
================================ */
.contact {
  background: var(--bg);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.contact-text .section-tag {
  display: inline-block;
  margin-bottom: 12px;
}

.contact-text .section-title {
  text-align: left;
  margin-bottom: 12px;
}

.contact-text > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.contact-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}

.contact-card {
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.contact-card-inner {
  padding: 40px;
}

.contact-card-inner h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-card-inner > p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.contact-steps-mini {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px;
}

.mini-step {
  font-size: 0.875rem;
  color: var(--text);
  display: flex;
  gap: 8px;
}

.mini-step span {
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

/* ================================
   FOOTER
================================ */
.footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 40px 0;
}

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

.footer-copy {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-copy a {
  color: var(--accent);
  font-weight: 600;
}

.footer-copy a:hover {
  text-decoration: underline;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(139, 144, 153, 0.5);
}

/* ================================
   INSTALL CTA BANNER — Chrome Web Store
================================ */
.install-cta-section {
  padding: 32px 0 !important;
}

.install-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: linear-gradient(135deg, rgba(66, 133, 244, 0.08) 0%, rgba(240, 180, 41, 0.06) 100%);
  border: 1px solid rgba(66, 133, 244, 0.22);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  flex-wrap: wrap;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.install-cta-banner:hover {
  border-color: rgba(66, 133, 244, 0.4);
  box-shadow: 0 8px 32px rgba(66, 133, 244, 0.12);
}

.install-cta-text {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.install-cta-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.install-cta-info strong {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}

.install-cta-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Botão pill Google Chrome ── */
.btn-chrome-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 24px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease,
              background 0.2s ease;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  position: relative;
  overflow: hidden;
}

.btn-chrome-store::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(0,0,0,0.06) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}

.btn-chrome-store:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 28px rgba(66, 133, 244, 0.35);
  background: #f8f9fa;
}

.btn-chrome-store:hover::after {
  opacity: 1;
}

.btn-chrome-store:active {
  transform: translateY(0) scale(0.99);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.btn-chrome-store svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

/* Mobile */
@media (max-width: 600px) {
  .install-cta-banner {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 18px;
  }

  .install-cta-text {
    gap: 12px;
  }

  .install-cta-info strong {
    font-size: 0.95rem;
  }

  .btn-chrome-store {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.95rem;
  }
}

/* ================================
   RESPONSIVE — Melhorias mobile
================================ */
@media (max-width: 960px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-card--featured {
    transform: scale(1);
    order: -1;
  }

  .pricing-card--featured:hover {
    transform: translateY(-4px);
  }

  .for-who-list {
    grid-template-columns: 1fr;
  }

  .security-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 32px;
  }

  .security-icon-bg {
    margin: 0 auto;
  }

  .security-text .section-title {
    text-align: center;
  }

  .security-list {
    align-items: flex-start;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-text .section-title {
    text-align: center;
  }

  .contact-text .section-tag {
    display: flex;
    justify-content: center;
  }

  .contact-text > p {
    text-align: center;
  }

  .contact-links {
    align-items: center;
  }

  /* Platform grid: 2 colunas em tablet */
  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .section {
    padding: 56px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* Navbar */
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .logo-text {
    font-size: 0.88rem;
    letter-spacing: -0.01em;
  }

  /* Hero */
  .hero-content {
    padding: 60px 0 40px;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
  }

  .hero-actions .btn-lg {
    width: 100%;
    max-width: 340px;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    width: 100%;
    max-width: 340px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

  .stat-value {
    font-size: 1.3rem;
  }

  /* Features */
  .features-grid {
    grid-template-columns: 1fr;
  }

  /* For who */
  .for-who-list {
    grid-template-columns: 1fr;
  }

  .for-who-list li {
    flex-direction: row;
    gap: 12px;
  }

  /* Platform grid: 1 coluna em mobile */
  .platform-grid {
    grid-template-columns: 1fr;
  }

  /* Steps */
  .steps-grid {
    flex-direction: column;
    align-items: stretch;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .step {
    max-width: 100%;
  }

  .step-arrow {
    transform: rotate(90deg);
    align-self: center;
  }

  /* Security */
  .security-inner {
    padding: 0;
  }

  .security-list {
    align-items: flex-start;
  }

  .security-list li {
    font-size: 0.85rem;
  }

  /* Contact card */
  .contact-card-inner {
    padding: 24px;
  }

  /* Portfolio card */
  .portfolio-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Section header */
  .section-title {
    font-size: clamp(1.6rem, 6vw, 2.2rem);
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Showcase client */
  .showcase-client {
    flex-direction: column;
    text-align: center;
    max-width: 280px;
  }

  /* Showcase single image */
  .showcase-main-img {
    max-height: 240px;
  }

  /* Security disclosure */
  .security-disclosure {
    padding: 14px 16px;
  }

  /* Buttons in security section */
  .security-text > div[style] {
    flex-direction: column;
  }

  .security-text > div[style] .btn {
    width: 100%;
    justify-content: center;
  }

  /* Section tag centered on mobile */
  .section-header .section-tag {
    display: inline-block;
  }

  /* Platform meta wrap */
  .platform-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  /* Footer */
  .footer-inner {
    gap: 8px;
  }

  .footer-logo .logo-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 400px) {
  .hero-title {
    font-size: clamp(1.7rem, 9vw, 2.2rem);
    letter-spacing: -0.03em;
  }

  .hero-badge {
    font-size: 0.72rem;
    padding: 5px 12px;
  }

  .hero-stats {
    max-width: 100%;
  }

  .btn-lg {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  .pricing-card {
    padding: 24px 16px;
  }

  .contact-card-inner {
    padding: 20px 16px;
  }

  .install-cta-banner {
    padding: 16px;
  }

  .platform-card {
    padding: 1.25rem;
  }
}

/* ================================
   SCROLL ANIMATIONS — REVEAL SYSTEM
================================ */

/* Base reveal: elements start hidden */
.reveal,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-scale,
.fade-in {
  opacity: 0;
  will-change: opacity, transform;
}

/* Directional defaults */
.reveal,
.reveal-up,
.fade-in {
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left {
  transform: translateX(-40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-right {
  transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-scale {
  transform: scale(0.92) translateY(20px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Visible state — all animations end here */
.reveal.visible,
.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible,
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for grid children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }
.stagger > *:nth-child(7) { transition-delay: 480ms; }
.stagger > *:nth-child(8) { transition-delay: 560ms; }
.stagger > *:nth-child(9) { transition-delay: 640ms; }

/* ================================
   HERO PARTICLES
================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0;
  animation: floatParticle var(--duration, 12s) var(--delay, 0s) ease-in-out infinite;
}

@keyframes floatParticle {
  0% {
    opacity: 0;
    transform: translateY(0) scale(0.5);
  }
  15% { opacity: var(--max-opacity, 0.35); }
  85% { opacity: var(--max-opacity, 0.35); }
  100% {
    opacity: 0;
    transform: translateY(-120px) scale(1.1);
  }
}

/* ================================
   HERO — ENHANCED ANIMATIONS
================================ */
.hero-badge {
  animation: heroFadeSlideUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.hero-title {
  animation: heroFadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

.hero-subtitle {
  animation: heroFadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.hero-actions {
  animation: heroFadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.65s both;
}

.hero-stats {
  animation: heroFadeSlideUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.8s both;
}

@keyframes heroFadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================================
   NAVBAR — ANIMATED LOGO
================================ */
.logo {
  animation: fadeIn 0.6s ease 0.1s both;
}

.nav-links {
  animation: fadeIn 0.6s ease 0.2s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ================================
   SECTION HEADER — ANIMATED TAG
================================ */
.section-tag {
  transition: box-shadow 0.3s ease;
}

.section-tag:hover {
  box-shadow: 0 0 16px rgba(240, 180, 41, 0.3);
}

/* ================================
   CARD HOVER GLOW EFFECTS
================================ */
.feature-card {
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease, background 0.3s ease;
}

.feature-card:hover {
  border-color: rgba(240, 180, 41, 0.35);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(240,180,41,0.1);
}

.pricing-card {
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease;
}

.pricing-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}

.platform-card {
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s ease;
}

.platform-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.step {
  transition: border-color 0.3s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}

.step:hover {
  box-shadow: 0 8px 32px rgba(240, 180, 41, 0.12);
}

/* ================================
   GRADIENT TEXT SHIMMER
================================ */
.gradient-text {
  background-size: 200% 200%;
  animation: shimmer 4s ease infinite;
}

@keyframes shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ================================
   BUTTON RIPPLE EFFECT
================================ */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

/* ================================
   SCROLL LINE ENHANCED
================================ */
.hero-scroll-indicator {
  animation: heroFadeSlideUp 1s ease 1.2s both;
}

/* ================================
   PLATFORM CAROUSEL — SLIDE-IN
================================ */
.platform-carousel {
  animation: none;
}

/* ================================
   SECURITY ICON — PULSE GLOW
================================ */
.security-icon-bg {
  animation: securityGlow 3s ease-in-out infinite;
}

@keyframes securityGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(240, 180, 41, 0);
  }
  50% {
    box-shadow: 0 0 32px 8px rgba(240, 180, 41, 0.12);
  }
}

/* ================================
   STAT COUNTER — NUMBER HIGHLIGHT
================================ */
.stat-value {
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
}

.hero-stats:hover .stat-value {
  color: var(--text);
}

/* ================================
   CONTACT LINK HOVER
================================ */
.contact-link {
  transition: border-color 0.25s ease, color 0.25s ease,
              transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s ease;
}

.contact-link:hover {
  box-shadow: 4px 0 16px rgba(240, 180, 41, 0.15);
}

/* ================================
   FOOTER LINKS
================================ */
.footer-logo {
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 0.8;
}

/* ================================
   INSTALL NOTE — GLOW BORDER
================================ */
.install-note {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.install-note:hover {
  border-color: rgba(240, 180, 41, 0.35);
  box-shadow: 0 4px 24px rgba(240, 180, 41, 0.08);
}

/* ================================
   MOBILE MENU SLIDE
================================ */
.mobile-menu {
  transition: max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.3s ease;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  display: flex !important;
}

.mobile-menu.open {
  max-height: 400px;
  opacity: 1;
}

/* ================================
   SECTION DIVIDER GLOW LINE
================================ */
.for-who,
.how-to,
.portfolio {
  position: relative;
}

.for-who::before,
.how-to::before,
.portfolio::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240, 180, 41, 0.25), transparent);
}

/* ================================
   PRICING FEATURED GLOW
================================ */
.pricing-card--featured {
  box-shadow: 0 0 48px rgba(240, 180, 41, 0.08);
}

.pricing-card--featured:hover {
  box-shadow: 0 16px 64px rgba(240, 180, 41, 0.2);
}

/* ================================
   PLATFORM LIVE CARD GLOW
================================ */
.platform-card--live {
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.06);
}

.platform-card--live:hover {
  box-shadow: 0 12px 48px rgba(34, 197, 94, 0.12);
}

/* ================================
   PLATFORM TABS
================================ */
.platform-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.platform-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 1.1rem;
  border-radius: 9999px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted, #9ca3af);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
  font-family: inherit;
}

.platform-tab svg,
.platform-tab [data-lucide] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

.platform-tab:not([disabled]):hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: var(--text);
}

.platform-tab.active {
  background: rgba(240, 180, 41, 0.12);
  border-color: rgba(240, 180, 41, 0.4);
  color: #f0b429;
}

.platform-tab[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
}

.ptab-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ptab-dot.live {
  background: #22c55e;
  box-shadow: 0 0 6px rgba(34, 197, 94, 0.7);
  animation: ptabPulse 2s ease-in-out infinite;
}

.ptab-dot.soon {
  background: #6b7280;
}

@keyframes ptabPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(34, 197, 94, 0.6); }
  50% { box-shadow: 0 0 10px rgba(34, 197, 94, 0.9); }
}

.ptab-badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.15rem 0.45rem;
  border-radius: 9999px;
  margin-left: 0.2rem;
}

.ptab-badge.live {
  background: rgba(34, 197, 94, 0.18);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.ptab-badge.soon {
  background: rgba(107, 114, 128, 0.2);
  color: #9ca3af;
  border: 1px solid rgba(107, 114, 128, 0.25);
}

/* ================================
   PLATFORM PANELS
================================ */
.platform-panel {
  display: none;
}

.platform-panel.active {
  display: block;
  animation: panelFadeIn 0.35s ease;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Panel header */
.platform-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 1.75rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  flex-wrap: wrap;
}

.platform-panel-info {
  flex: 1 1 260px;
}

.platform-panel-info h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text);
  margin: 0.35rem 0 0.5rem;
}

.platform-panel-info p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.platform-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.8);
  animation: ptabPulse 2s ease-in-out infinite;
}

/* ================================
   SCREENSHOTS GRID
================================ */
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.screenshot-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.screenshot-card:hover {
  transform: translateY(-5px);
  border-color: rgba(240, 180, 41, 0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.screenshot-img-wrap {
  position: relative;
  overflow: hidden;
  background: rgba(0,0,0,0.3);
  aspect-ratio: 16 / 10;
}

.screenshot-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.screenshot-card:hover .screenshot-img-wrap img {
  transform: scale(1.04);
}

.screenshot-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.screenshot-card:hover .screenshot-overlay {
  opacity: 1;
}

.screenshot-zoom {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(240, 180, 41, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0a0b0e;
  transition: transform 0.2s ease, background 0.2s ease;
}

.screenshot-zoom:hover {
  transform: scale(1.12);
  background: #f0b429;
}

.screenshot-zoom svg,
.screenshot-zoom [data-lucide] {
  width: 20px;
  height: 20px;
}

.screenshot-info {
  padding: 1rem 1.1rem 1.25rem;
}

.screenshot-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #f0b429;
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid rgba(240, 180, 41, 0.2);
  padding: 0.15rem 0.55rem;
  border-radius: 9999px;
  margin-bottom: 0.5rem;
}

.screenshot-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.35rem;
  line-height: 1.3;
}

.screenshot-info p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

/* Placeholder card */
.screenshot-card--placeholder {
  opacity: 0.55;
}

.screenshot-card--placeholder:hover {
  opacity: 0.75;
  border-color: rgba(255,255,255,0.1);
  box-shadow: none;
  transform: none;
}

.placeholder-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  background: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 8px,
    transparent 8px,
    transparent 16px
  );
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  font-weight: 500;
}

.placeholder-content svg,
.placeholder-content [data-lucide] {
  width: 32px;
  height: 32px;
}

/* ================================
   PLATFORM CLIENT STRIP
================================ */
.platform-client {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.85rem 1.1rem;
  background: rgba(34, 197, 94, 0.05);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 12px;
  margin-top: 0.5rem;
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(34, 197, 94, 0.4);
  flex-shrink: 0;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.client-info strong {
  font-size: 0.9rem;
  color: var(--text);
}

.client-info span {
  font-size: 0.78rem;
  color: #4ade80;
}

/* ================================
   COMING SOON PANEL
================================ */
.platform-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 16px;
  gap: 1rem;
}

.coming-soon-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.coming-soon-icon svg,
.coming-soon-icon [data-lucide] {
  width: 28px;
  height: 28px;
}

.platform-coming-soon h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.platform-coming-soon p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0;
  line-height: 1.6;
}

/* ================================
   LIGHTBOX
================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.lightbox.open .lightbox-content {
  transform: scale(1);
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 12px;
  object-fit: contain;
  box-shadow: 0 24px 80px rgba(0,0,0,0.8);
  display: block;
}

.lightbox-caption {
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  text-align: center;
  margin: 0;
  font-weight: 500;
}

.lightbox-close {
  position: fixed;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.16);
  transform: scale(1.08);
}

.lightbox-close svg,
.lightbox-close [data-lucide] {
  width: 20px;
  height: 20px;
}

/* Keyboard hint */
.lightbox::after {
  content: 'ESC para fechar';
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  font-family: inherit;
  pointer-events: none;
  letter-spacing: 0.04em;
}

/* ================================
   RESPONSIVE — SCREENSHOTS & TABS
================================ */
@media (max-width: 768px) {
  .platform-tabs {
    gap: 0.4rem;
  }

  .platform-tab {
    font-size: 0.8rem;
    padding: 0.45rem 0.85rem;
  }

  .ptab-badge {
    display: none;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .platform-panel-header {
    flex-direction: column;
    gap: 1rem;
  }

  .platform-coming-soon {
    padding: 3rem 1.25rem;
  }

  .lightbox-content {
    max-width: 95vw;
  }
}

@media (max-width: 480px) {
  .platform-tab {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
  }

  .ptab-dot {
    display: none;
  }
}

/* ================================
   REDUCE MOTION SUPPORT
================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ================================
   NAV ACTIVE STATE (subpages)
================================ */
.nav-links .nav-active {
  color: var(--accent) !important;
  font-weight: 600;
}

/* ================================
   PAGE HERO (fame.html / faq.html)
================================ */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem;
  text-align: center;
  background: var(--bg);
}

.page-hero .hero-bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.page-hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin: 0;
}

.page-hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 520px;
  line-height: 1.6;
  margin: 0;
}

/* ================================
   FAQ CTA (bottom of faq.html)
================================ */
.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.faq-cta p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

/* ================================
   HERO SOCIAL PROOF
================================ */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin: 1.5rem 0 0;
  flex-wrap: wrap;
  justify-content: center;
}

.social-proof-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.social-proof-logos {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social-proof-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border);
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter 0.2s, opacity 0.2s;
}

.social-proof-avatar:hover {
  filter: grayscale(0);
  opacity: 1;
}

.social-proof-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ================================
   PRICING COMPARISON TABLE
================================ */
.pricing-comparison {
  margin-top: 3rem;
}

.comparison-title {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  letter-spacing: 0.01em;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
  min-width: 480px;
}

.comparison-table thead tr {
  background: var(--surface-2);
}

.comparison-table th {
  padding: 0.85rem 1.25rem;
  text-align: center;
  font-weight: 700;
  color: var(--text-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-bottom: 1px solid var(--border);
}

.comparison-table th:first-child {
  text-align: left;
}

.comparison-table td {
  padding: 0.75rem 1.25rem;
  text-align: center;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.comparison-table td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 500;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.comparison-table tbody tr:hover td {
  background: var(--surface-2);
}

.col-featured {
  background: color-mix(in srgb, var(--accent) 6%, transparent);
  position: relative;
}

.comparison-table thead .col-featured {
  color: var(--accent) !important;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
}

.cmp-yes {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.cmp-no {
  width: 18px;
  height: 18px;
  color: var(--text-muted);
  opacity: 0.4;
}

.comparison-price-row td {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-primary) !important;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.comparison-footnote {
  text-align: center;
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}

/* ================================
   CONTACT — WhatsApp button
================================ */
.btn-whatsapp {
  background: #25D366;
  color: #fff !important;
  border-color: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  color: #fff !important;
}

.contact-link--whatsapp {
  color: #25D366 !important;
}

.contact-link--whatsapp svg {
  color: #25D366;
}

/* ================================
   FAQ — Accordion
================================ */
.faq {
  background: var(--bg);
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.2s;
}

.faq-item.open,
.faq-item:hover {
  border-color: color-mix(in srgb, var(--accent) 40%, transparent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1.4;
}

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

.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--text-muted);
  transition: transform 0.28s cubic-bezier(.4,0,.2,1), color 0.2s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1), padding 0.28s;
  padding: 0 1.375rem;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 1.375rem 1.25rem;
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}
