@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-main: #020617;
  --bg-secondary: #0a0f1d;
  --bg-card: #111827;
  
  --primary: #10b981;
  --primary-glow: rgba(16, 185, 129, 0.35);
  --primary-dark: #059669;
  --primary-light: #34d399;
  --primary-soft: rgba(52, 211, 153, 0.12);
  
  --text-white: #ffffff;
  --text-primary: #f8fafc;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-card: rgba(31, 41, 55, 0.7);
  --border-primary: rgba(52, 211, 153, 0.35);
  --border-glow: 0 0 25px rgba(16, 185, 129, 0.25);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: #020617;
  color: var(--text-primary);
}

body {
  font-family: var(--font-body);
  background: linear-gradient(to bottom, #020617 0%, #111827 40%, #030712 85%, #000000 100%);
  background-attachment: fixed;
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}

::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: #111827;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #10b981 0%, #059669 100%);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: #34d399;
}

* {
  scrollbar-width: thin;
  scrollbar-color: #10b981 #111827;
}

.bg-mesh {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: 
    linear-gradient(rgba(52, 211, 153, 0.05) 1px, transparent 1px), 
    linear-gradient(90deg, rgba(52, 211, 153, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  color: #34d399;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.15);
  max-width: 100%;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--primary);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); opacity: 0.8; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.hero-proof-list {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  font-family: var(--font-heading);
}

.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.45);
  color: #ffffff;
}

.btn-outline {
  background: rgba(12, 21, 32, 0.6);
  color: #e2e8f0;
  border: 1px solid rgba(40, 60, 80, 0.7);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(18, 30, 45, 0.9);
  border-color: rgba(52, 211, 153, 0.4);
  color: #34d399;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.35);
}

.btn-whatsapp:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
  color: #ffffff;
}

.hero-visual-card {
  background: rgba(12, 21, 32, 0.85);
  border: 1px solid rgba(35, 55, 75, 0.7);
  border-radius: var(--radius-xl);
  padding: 24px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7), 0 0 50px -15px rgba(16, 185, 129, 0.25);
  backdrop-filter: blur(20px);
  position: relative;
}

.hero-browser-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 18px;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.browser-address {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(4, 8, 14, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  color: #94a3b8;
}

.metric-pill-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 16px;
}

.metric-mini-card {
  background: rgba(7, 13, 20, 0.8);
  border: 1px solid rgba(35, 55, 75, 0.6);
  border-radius: var(--radius-md);
  padding: 16px;
}

.metric-mini-card .val {
  font-size: 1.4rem;
  font-weight: 800;
  font-family: var(--font-heading);
  color: #ffffff;
  margin-bottom: 2px;
}

.metric-mini-card .lbl {
  font-size: 0.8rem;
  color: #94a3b8;
}

.hero-mockup-show {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  background: #04080e;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mockup-header-bar {
  height: 20px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  width: 50%;
}

.mockup-banner {
  height: 80px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(6, 182, 212, 0.15));
  border: 1px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  text-align: center;
}

.mockup-banner span {
  font-size: 0.82rem;
  font-weight: 600;
  color: #34d399;
}

.mockup-grid-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mockup-block {
  height: 48px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.pilar-card {
  background: rgba(12, 21, 32, 0.85);
  border: 1px solid rgba(35, 55, 75, 0.6);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pilar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: 0 20px 40px -15px rgba(16, 185, 129, 0.2);
}

.pilar-icon-box {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #34d399;
  margin-bottom: 22px;
}

.pilar-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.pilar-card p {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.6;
}

.secao_principal_produtos {
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  text-align: center;
}

.cabecalho_principal {
  max-width: 820px;
  margin: 0 auto 32px;
}

.barra_controles_demonstrativo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.seletor_dispositivo_produtos {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(17, 24, 39, 0.95);
  border: 1px solid rgba(52, 211, 153, 0.35);
  padding: 6px;
  border-radius: 9999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  max-width: 100%;
}

.botao_opcao_dispositivo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 9999px;
  border: none;
  background: transparent;
  color: #9ca3af;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.botao_opcao_dispositivo:hover {
  color: #ffffff;
}

.botao_opcao_dispositivo.ativo {
  background: linear-gradient(135deg, #10b981, #059669);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.45);
}

.seletor_exemplos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 100%;
}

.botao_opcao_exemplo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 14px;
  background: rgba(17, 24, 39, 0.75);
  border: 1px solid rgba(55, 65, 81, 0.9);
  color: #d1d5db;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(8px);
}

.botao_opcao_exemplo:hover {
  border-color: rgba(52, 211, 153, 0.5);
  color: #ffffff;
  transform: translateY(-2px);
}

.botao_opcao_exemplo.ativo {
  background: rgba(16, 185, 129, 0.2);
  border-color: #10b981;
  color: #34d399;
  box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.palco_exibicao_central {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.item_demonstrativo {
  display: none;
  width: 100%;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.item_demonstrativo.ativo {
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 1;
  transform: translateY(0);
}

.conteiner_molduras {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.moldura_desktop {
  width: 100%;
  max-width: 980px;
  background: #090e17;
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.85), 0 0 40px rgba(16, 185, 129, 0.15);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.barra_superior_navegador {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  background: #0e1624;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.botoes_sistema_janela {
  display: flex;
  gap: 6px;
}

.ponto_circulo_janela {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.cor_fechar { background: #ff5f56; }
.cor_minimizar { background: #ffbd2e; }
.cor_expandir { background: #27c93f; }

.campo_url_navegador {
  flex: 1;
  background: rgba(3, 7, 18, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 0.82rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.campo_url_navegador span {
  color: #34d399;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.rotulo_modo_tela {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(16, 185, 129, 0.15);
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.3);
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}

.area_rolagem_demonstrativo {
  position: relative;
  width: 100%;
  height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
  background: #020408;
  scrollbar-width: thin;
  scrollbar-color: #10b981 #090e17;
  -webkit-overflow-scrolling: touch;
  user-select: none;
}

.area_rolagem_demonstrativo::-webkit-scrollbar {
  width: 8px;
}

.area_rolagem_demonstrativo::-webkit-scrollbar-track {
  background: #090e17;
}

.area_rolagem_demonstrativo::-webkit-scrollbar-thumb {
  background: #10b981;
  border-radius: 4px;
}

.imagem_screenshot_demonstrativo {
  width: 100%;
  height: auto;
  display: block;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

.moldura_smartphone {
  width: 320px;
  max-width: 100%;
  background: #000000;
  border: 10px solid #1a2332;
  border-radius: 48px;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.9), 0 0 50px rgba(16, 185, 129, 0.2);
  overflow: hidden;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.moldura_smartphone .area_rolagem_demonstrativo {
  height: 580px;
  border-radius: 36px;
  padding-top: 14px;
}

.modo_pc_ativo .moldura_smartphone {
  display: none !important;
}

.modo_pc_ativo .moldura_desktop {
  display: block !important;
}

.modo_mobile_ativo .moldura_desktop {
  display: none !important;
}

.modo_mobile_ativo .moldura_smartphone {
  display: block !important;
}

.bloco_acao_orcamento {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 480px;
}

.aviso_interativo_rolagem {
  font-size: 0.84rem;
  color: #9ca3af;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(17, 24, 39, 0.6);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.section-plans {
  position: relative;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  max-width: 1200px;
  margin: 0 auto;
}

.plan-card {
  background: rgba(12, 21, 32, 0.9);
  border: 1px solid rgba(35, 55, 75, 0.7);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(16px);
}

.plan-card:hover {
  transform: translateY(-8px);
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: 0 25px 50px -15px rgba(0, 0, 0, 0.7), 0 0 35px rgba(16, 185, 129, 0.15);
}

.plan-card.plan-featured-premium {
  background: linear-gradient(180deg, rgba(16, 30, 45, 0.95) 0%, rgba(10, 20, 32, 0.98) 100%);
  border: 2px solid #10b981;
  box-shadow: 0 25px 60px -10px rgba(0, 0, 0, 0.8), 0 0 50px rgba(16, 185, 129, 0.25);
  transform: scale(1.03);
  z-index: 10;
}

.plan-card.plan-featured-premium:hover {
  transform: scale(1.05) translateY(-8px);
  box-shadow: 0 30px 70px -10px rgba(0, 0, 0, 0.9), 0 0 60px rgba(16, 185, 129, 0.35);
}

.premium-badge-floating {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.8px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.5);
  white-space: nowrap;
}

.plan-card-header {
  margin-bottom: 24px;
}

.plan-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

.plan-desc {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.5;
  min-height: 42px;
}

.plan-pricing-box {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.plan-val {
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff;
  font-family: var(--font-heading);
  letter-spacing: -0.5px;
}

.plan-period {
  font-size: 0.88rem;
  color: #94a3b8;
}

.premium-exclusive-highlight {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  padding: 12px 14px;
  border-radius: var(--radius-md);
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: #e2e8f0;
  line-height: 1.5;
}

.premium-exclusive-highlight i {
  color: #34d399;
  margin-top: 3px;
  flex-shrink: 0;
}

.plan-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
  flex-grow: 1;
}

.plan-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.plan-feature-item.included i {
  color: #34d399;
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.plan-feature-item.included span {
  color: #e2e8f0;
}

.plan-feature-item.not-included {
  color: #64748b;
  opacity: 0.6;
}

.plan-feature-item.not-included i {
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.plan-extra-note {
  text-align: center;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 14px;
  letter-spacing: 0.2px;
}

.caixa_aviso_suporte {
  background: rgba(17, 24, 39, 0.8);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 16px;
  padding: 20px 24px;
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.icone_aviso_suporte {
  flex-shrink: 0;
  color: #34d399;
  margin-top: 2px;
}

.texto_aviso_suporte {
  font-size: 0.9rem;
  color: #94a3b8;
  line-height: 1.6;
}

.texto_aviso_suporte strong {
  color: #ffffff;
}

.table-comparison-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: rgba(12, 21, 32, 0.85);
  border: 1px solid rgba(35, 55, 75, 0.7);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 50px -15px rgba(0, 0, 0, 0.7);
  padding: 8px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 680px;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.comparison-table th {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #ffffff;
  background: rgba(17, 24, 39, 0.7);
  letter-spacing: 0.5px;
}

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

.comparison-table th.col-premium,
.comparison-table td.col-premium {
  background: rgba(16, 185, 129, 0.08);
  border-left: 1px solid rgba(52, 211, 153, 0.2);
  border-right: 1px solid rgba(52, 211, 153, 0.2);
  color: #ffffff;
  font-weight: 600;
}

.comparison-table th.col-premium {
  color: #34d399;
}

.status-yes {
  color: #34d399;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.status-no {
  color: #64748b;
  font-weight: 500;
}

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

.step-card {
  background: rgba(12, 21, 32, 0.85);
  border: 1px solid rgba(35, 55, 75, 0.6);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: var(--transition);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: rgba(52, 211, 153, 0.4);
  box-shadow: 0 20px 40px -15px rgba(16, 185, 129, 0.2);
}

.step-num-badge {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35);
}

.step-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.step-card p {
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.6;
}

.faq-accordion {
  width: 100%;
}

.faq-item {
  background: rgba(12, 21, 32, 0.85);
  border: 1px solid rgba(35, 55, 75, 0.6);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.active {
  border-color: rgba(52, 211, 153, 0.4);
  background: rgba(16, 26, 38, 0.95);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-heading);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question i {
  color: #34d399;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 20px;
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.7;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

@media (max-width: 1024px) {
  .pilares-grid,
  .steps-grid,
  .plans-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .plan-card.plan-featured-premium {
    transform: scale(1);
  }
  .plan-card.plan-featured-premium:hover {
    transform: translateY(-6px);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
    background-color: #04140e;
  }

  body {
    background: linear-gradient(to bottom, #04140e 0%, #08241b 35%, #0b3024 65%, #051610 100%) !important;
    background-attachment: fixed;
  }

  .bg-mesh {
    background-image: 
      linear-gradient(rgba(52, 211, 153, 0.08) 1px, transparent 1px), 
      linear-gradient(90deg, rgba(52, 211, 153, 0.08) 1px, transparent 1px) !important;
  }

  .secao_principal_produtos {
    padding-top: 90px;
    padding-bottom: 60px;
  }

  .highlight-badge {
    font-size: 0.78rem;
    padding: 6px 12px;
    white-space: normal;
    text-align: left;
    background: rgba(16, 185, 129, 0.15) !important;
    border-color: rgba(52, 211, 153, 0.4) !important;
  }

  .hero-proof-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    border-top: 1px solid rgba(52, 211, 153, 0.15) !important;
  }

  .proof-item span {
    color: #cbd5e1 !important;
  }

  .hero-visual-card {
    padding: 16px;
    background: linear-gradient(145deg, rgba(14, 38, 30, 0.95), rgba(9, 26, 20, 0.95)) !important;
    border-color: rgba(52, 211, 153, 0.3) !important;
  }

  .metric-mini-card {
    padding: 12px;
    background: rgba(8, 26, 20, 0.9) !important;
    border-color: rgba(52, 211, 153, 0.25) !important;
  }

  .metric-mini-card .val {
    font-size: 1.2rem;
  }

  .metric-mini-card .lbl {
    color: #cbd5e1 !important;
  }

  .hero-mockup-show {
    background: #061711 !important;
    border-color: rgba(52, 211, 153, 0.2) !important;
  }

  .pilar-card,
  .step-card,
  .plan-card {
    padding: 26px 20px;
    background: linear-gradient(145deg, rgba(14, 38, 30, 0.95), rgba(9, 26, 20, 0.95)) !important;
    border-color: rgba(52, 211, 153, 0.28) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(16, 185, 129, 0.08) !important;
  }

  .pilar-card p,
  .step-card p,
  .plan-desc {
    color: #cbd5e1 !important;
  }

  .plan-features-list .plan-feature-item.included span {
    color: #f1f5f9 !important;
  }

  .plan-card.plan-featured-premium {
    background: linear-gradient(180deg, rgba(18, 48, 38, 0.98) 0%, rgba(12, 34, 26, 0.98) 100%) !important;
    border: 2px solid #10b981 !important;
  }

  .table-comparison-container {
    background: rgba(10, 30, 23, 0.95) !important;
    border-color: rgba(52, 211, 153, 0.3) !important;
  }

  .comparison-table th {
    background: rgba(14, 38, 30, 0.9) !important;
  }

  .comparison-table th.col-premium,
  .comparison-table td.col-premium {
    background: rgba(16, 185, 129, 0.15) !important;
    border-left: 1px solid rgba(52, 211, 153, 0.35) !important;
    border-right: 1px solid rgba(52, 211, 153, 0.35) !important;
  }

  .comparison-table td {
    color: #e2e8f0 !important;
  }

  .faq-item {
    background: linear-gradient(145deg, rgba(14, 38, 30, 0.95), rgba(9, 26, 20, 0.95)) !important;
    border-color: rgba(52, 211, 153, 0.28) !important;
  }

  .faq-item.active {
    background: linear-gradient(145deg, rgba(18, 48, 38, 0.95), rgba(12, 34, 26, 0.95)) !important;
    border-color: rgba(52, 211, 153, 0.5) !important;
  }

  .faq-answer p {
    color: #cbd5e1 !important;
  }

  .barra_controles_demonstrativo {
    width: 100%;
  }

  .seletor_dispositivo_produtos {
    width: 100%;
    max-width: 340px;
    display: flex;
    background: rgba(8, 26, 20, 0.95) !important;
    border-color: rgba(52, 211, 153, 0.4) !important;
  }

  .botao_opcao_dispositivo {
    flex: 1;
    justify-content: center;
    padding: 9px 12px;
    font-size: 0.82rem;
    gap: 6px;
  }

  .seletor_exemplos {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 8px;
  }

  .botao_opcao_exemplo {
    flex: 1 1 30%;
    justify-content: center;
    padding: 10px 14px;
    font-size: 0.88rem;
    background: rgba(14, 38, 30, 0.85) !important;
    border-color: rgba(52, 211, 153, 0.3) !important;
  }

  .palco_exibicao_central {
    padding: 0 8px;
  }

  .barra_superior_navegador {
    padding: 10px 14px;
    gap: 10px;
    background: #09211a !important;
    border-bottom: 1px solid rgba(52, 211, 153, 0.2) !important;
  }

  .campo_url_navegador {
    padding: 4px 10px;
    font-size: 0.75rem;
    background: rgba(4, 20, 15, 0.8) !important;
    border-color: rgba(52, 211, 153, 0.2) !important;
  }

  .rotulo_modo_tela {
    display: none;
  }

  .area_rolagem_demonstrativo {
    height: 420px;
    background: #03100b !important;
    scrollbar-color: #10b981 #09211a !important;
  }

  .moldura_smartphone {
    width: 100%;
    max-width: 300px;
    border-width: 8px;
    border-radius: 38px;
    border-color: #0d2c22 !important;
  }

  .moldura_smartphone .area_rolagem_demonstrativo {
    height: 480px;
    border-radius: 28px;
    padding-top: 10px;
  }

  .caixa_aviso_suporte {
    flex-direction: column;
    padding: 18px 16px;
    gap: 10px;
    background: rgba(10, 30, 23, 0.9) !important;
    border-color: rgba(52, 211, 153, 0.3) !important;
  }

  .texto_aviso_suporte {
    color: #cbd5e1 !important;
  }

  .faq-question {
    padding: 16px 18px;
    font-size: 0.96rem;
  }

  .faq-answer {
    padding: 0 18px 16px;
    font-size: 0.88rem;
  }
}

@media (max-width: 480px) {
  .hero-proof-list {
    gap: 10px;
  }
  
  .proof-item {
    font-size: 0.84rem;
  }

  .metric-pill-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .seletor_exemplos {
    flex-direction: row;
  }

  .botao_opcao_exemplo {
    padding: 9px 8px;
    font-size: 0.82rem;
  }

  .moldura_smartphone {
    max-width: 280px;
  }

  .moldura_smartphone .area_rolagem_demonstrativo {
    height: 440px;
  }
}
