/* ==========================================================================
   ZELLGO VISUAL INTELLIGENCE (ZVI) — ZDE DISCOVERY ENGINE v2.1
   Design System & Ultra Premium Dark Mode Styling (Paleta Zellgo Oficial)
   100% Responsivo e Otimizado para Smartphones e Tablets
   ========================================================================== */

/* IMPORTAÇÃO DE FOTNES PROFISSIONAIS (Fallback para Neue Haas Grotesk / Inter / UI-Sans) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200;300;400;500;600;700;800&family=Outfit:wght@200;400;600;700;800&display=swap');

/* ==========================================================================
   VARIÁVEIS DO SISTEMA DE DESIGN ZELLGO (DESIGN TOKENS)
   ========================================================================== */
:root {
  /* Paleta de Cor Oficial Zellgo */
  --bg-dark: #0f172a;        /* Preto Noite */
  --accent-rose: #f43f5e;    /* Rosa Vibrante */
  --text-branco: #F5F5F5;    /* Branco Puro */

  /* Tons Auxiliares & Glassmorphism */
  --bg-card: rgba(30, 41, 59, 0.65);
  --bg-input: rgba(15, 23, 42, 0.85);
  --border-glass: rgba(245, 245, 245, 0.12);
  --border-focus: rgba(244, 63, 94, 0.6);
  --text-muted: #94a3b8;
  
  /* Gradientes & Brilhos */
  --glow-rose: rgba(244, 63, 94, 0.25);
  --glow-rose-intense: rgba(244, 63, 94, 0.45);
  --gradient-glass: linear-gradient(135deg, rgba(245, 245, 245, 0.05) 0%, rgba(245, 245, 245, 0.01) 100%);
  --gradient-rose: linear-gradient(135deg, #f43f5e 0%, #e11d48 100%);
  
  /* Tipografia */
  --font-base: 'Inter', 'Neue Haas Grotesk', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Neue Haas Grotesk', ui-sans-serif, system-ui, sans-serif;

  /* Sombra & Raio */
  --shadow-lg: 0 10px 30px -10px rgba(0, 0, 0, 0.5), 0 0 20px -5px var(--glow-rose);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --radius-xl: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  /* Transições Micro-animações */
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-dark);
  color: var(--text-branco);
  font-family: var(--font-base);
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(244, 63, 94, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(244, 63, 94, 0.05) 0%, transparent 40%);
  background-attachment: fixed;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: rgba(245, 245, 245, 0.2);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-rose);
}

/* ==========================================================================
   NAVBAR & CABEÇALHO
   ========================================================================== */
.zvi-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2.5rem;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-glass);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Símbolo Oficial SVG Zellgo com Brilho Neon e Hover Suave */
.z-logo-symbol {
  display: flex;
  align-items: center;
  height: 44px;
  cursor: pointer;
  transition: var(--transition-smooth);
  filter: drop-shadow(0 0 10px rgba(244, 63, 94, 0.4));
}
.z-logo-symbol:hover {
  transform: translateY(-2px) scale(1.04);
  filter: drop-shadow(0 0 16px rgba(244, 63, 94, 0.8));
}
.logo-svg-symbol {
  height: 44px;
  width: auto;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: var(--text-branco);
}
.brand-subtitle {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 2px;
}

/* VIEW TABS NO HEADER */
.view-tabs {
  display: flex;
  background: rgba(15, 23, 42, 0.6);
  padding: 0.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  gap: 0.35rem;
}
.tab-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-base);
  font-size: 0.92rem;
  font-weight: 500;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-fast);
}
.tab-btn:hover {
  color: var(--text-branco);
  background: rgba(245, 245, 245, 0.05);
}
.tab-btn.active {
  background: var(--gradient-rose);
  color: var(--text-branco);
  font-weight: 600;
  box-shadow: 0 2px 12px var(--glow-rose);
}

.header-status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--text-muted);
  background: rgba(245, 245, 245, 0.04);
  padding: 0.4rem 0.8rem;
  border-radius: 99px;
  border: 1px solid rgba(245, 245, 245, 0.08);
}
.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #10B981; /* Esmeralda online */
  border-radius: 50%;
  box-shadow: 0 0 10px #10B981;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(0.95); opacity: 0.8; }
  50% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.8; }
}

/* ==========================================================================
   MAIN WRAPPER & HERO BANNER
   ========================================================================== */
.main-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 2.5rem 2rem 5rem 2rem;
}

.hero-banner {
  text-align: center;
  margin-bottom: 3.5rem;
  padding: 0 1rem;
}
.hero-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-rose);
  background: rgba(244, 63, 94, 0.12);
  padding: 0.4rem 1rem;
  border-radius: 99px;
  margin-bottom: 1rem;
  border: 1px solid rgba(244, 63, 94, 0.3);
}

/* Título em Peso 200 (UPPERCASE) com precisão nas cores da Paleta Zellgo */
.hero-title {
  font-family: var(--font-heading);
  font-size: 3.6rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.15;
  margin-bottom: 1.2rem;
}
.title-white {
  color: var(--text-branco);
}
.title-rose {
  color: var(--accent-rose);
  text-shadow: 0 0 25px var(--glow-rose);
  font-weight: 400; /* Levemente ressaltado mantendo a harmonia fina */
}
.hero-desc {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

/* ==========================================================================
   VIEWS CONTROLLER
   ========================================================================== */
.view-section {
  display: none;
  animation: fadeIn 0.4s ease-in-out;
}
.view-section.active {
  display: block;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   MÓDULO DE BRIEFING: LAYOUT E SIDEBAR
   ========================================================================== */
.form-container {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 2.5rem;
  align-items: start;
}

.sidebar-nav {
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  position: sticky;
  top: 6rem;
}
.sidebar-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-branco);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}
.block-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.block-nav-item button {
  width: 100%;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-base);
  font-size: 0.92rem;
  text-align: left;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-fast);
}
.block-nav-item button:hover {
  background: rgba(245, 245, 245, 0.04);
  color: var(--text-branco);
}
.block-nav-item button.active {
  background: var(--bg-input);
  color: var(--text-branco);
  font-weight: 600;
  border-left: 3px solid var(--accent-rose);
  box-shadow: var(--shadow-sm);
}
.block-badge {
  font-size: 0.72rem;
  background: rgba(245, 245, 245, 0.08);
  color: var(--text-muted);
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}
.block-nav-item button.active .block-badge {
  background: var(--accent-rose);
  color: var(--text-branco);
}
.blk-id {
  color: var(--accent-rose);
  font-weight: 700;
}

/* ==========================================================================
   PAINEL DO FORMULÁRIO (BLOCOS A ATÉ H)
   ========================================================================== */
.form-panel {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.block-section {
  display: none;
  animation: slideIn 0.35s ease-out;
}
.block-section.active {
  display: block;
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(12px); }
  to { opacity: 1; transform: translateX(0); }
}

.block-header {
  margin-bottom: 2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}
.block-code {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--accent-rose);
  font-weight: 700;
}
.block-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-branco);
  margin: 0.4rem 0 0.5rem 0;
}
.block-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CONTROLES E INPUTS FORMULÁRIO */
.form-group {
  margin-bottom: 1.8rem;
}
.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-branco);
  margin-bottom: 0.6rem;
}
.form-sublabel {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
}

.form-control {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 0.95rem 1.2rem;
  color: var(--text-branco);
  font-family: var(--font-base);
  font-size: 0.95rem;
  transition: var(--transition-fast);
  outline: none;
}
.form-control:focus {
  border-color: var(--accent-rose);
  box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.2);
}
.form-control::placeholder {
  color: #475569;
  font-weight: 300;
}
textarea.form-control {
  min-height: 110px;
  resize: vertical;
}

/* GRIDS DE OPÇÕES RÁPIDAS (CARDS INTUITIVOS INTERATIVOS) */
.options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.8rem;
}
.option-card {
  position: relative;
}
.option-card input[type="radio"],
.option-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.option-label {
  display: flex;
  flex-direction: column;
  padding: 1.1rem;
  background: var(--bg-input);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  color: var(--text-muted);
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition-fast);
  height: 100%;
  justify-content: center;
  text-align: center;
  line-height: 1.4;
}
.option-card input:checked + .option-label {
  background: rgba(244, 63, 94, 0.1);
  border-color: var(--accent-rose);
  color: var(--text-branco);
  font-weight: 600;
  box-shadow: 0 0 15px rgba(244, 63, 94, 0.15);
}
.option-card:hover .option-label {
  border-color: rgba(245, 245, 245, 0.3);
}

/* AÇÕES DO BOTÃO FO FORMULÁRIO */
.form-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 245, 245, 0.08);
}
.action-buttons-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* BOTÕES PREMIUM ZELLGO */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.8rem 1.6rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}
.btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}
.btn-primary {
  background: var(--gradient-rose);
  color: var(--text-branco);
  box-shadow: 0 4px 15px var(--glow-rose);
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--glow-rose-intense);
}
.btn-secondary {
  background: transparent;
  color: var(--text-branco);
  border: 1px solid var(--border-glass);
}
.btn-secondary:hover:not(:disabled) {
  background: rgba(245, 245, 245, 0.08);
  border-color: var(--text-branco);
}
.btn-success {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}
.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.5);
}

/* ==========================================================================
   VIEW 2: PAINEL DO ARQUITETO (AO VIVO)
   ========================================================================== */
.dashboard-head-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.score-card-right {
  text-align: right;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.dashboard-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(245, 245, 245, 0.08);
}
.card-title-group h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-branco);
}
.card-title-group span {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.badge-tag {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.35rem 0.8rem;
  border-radius: 99px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.badge-rose {
  background: rgba(244, 63, 94, 0.15);
  color: var(--accent-rose);
  border: 1px solid rgba(244, 63, 94, 0.3);
}
.badge-neutral {
  background: rgba(245, 245, 245, 0.08);
  color: var(--text-branco);
}

.chart-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  padding: 1rem 0;
  max-width: 100%;
  overflow: hidden;
}

/* ESCOPO E ESTRATÉGIA RECOMENDADOS */
.scope-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.scope-item {
  padding: 1.2rem;
  background: var(--bg-input);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}
.scope-item:hover {
  border-color: rgba(244, 63, 94, 0.4);
  transform: translateX(4px);
}
.scope-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.scope-name {
  font-weight: 700;
  color: var(--text-branco);
  font-size: 1.05rem;
}
.scope-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ROADMAP TIMELINE */
.roadmap-timeline {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  position: relative;
}
.timeline-step {
  flex: 1;
  background: var(--bg-input);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border-top: 3px solid var(--accent-rose);
  border-left: 1px solid var(--border-glass);
  border-right: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
}
.step-phase {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-rose);
  margin-bottom: 0.4rem;
}
.step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text-branco);
  margin-bottom: 0.5rem;
}
.step-info {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* BÚSSOLA DE PRECIFICAÇÃO E ANCORAGEM */
.pricing-banner {
  margin-top: 2rem;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.15) 0%, rgba(15, 23, 42, 0.9) 100%);
  border: 1px solid var(--accent-rose);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 10px 30px rgba(244, 63, 94, 0.15);
  gap: 2rem;
  flex-wrap: wrap;
}
.pricing-info h4 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-branco);
  margin-bottom: 0.4rem;
}
.pricing-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 650px;
}
.pricing-values {
  text-align: right;
  background: var(--bg-input);
  padding: 1.2rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(245, 245, 245, 0.1);
  min-width: 280px;
}
.val-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 1px;
}
.val-tier {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-rose);
  line-height: 1.2;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--accent-rose);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  opacity: 0;
  transition: var(--transition-smooth);
  z-index: 1000;
  max-width: 400px;
}
.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-icon {
  font-size: 1.5rem;
}
.toast-text h5 {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-branco);
}
.toast-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ==========================================================================
   MEDIA QUERIES — TOTAL RESPONSIVIDADE MOBILE E TABLET (100% SILICON GRADE)
   ========================================================================== */

/* TABLETS E TELAS MÉDIAS (até 992px) */
@media (max-width: 992px) {
  .hero-title { font-size: 2.6rem; }
  .form-container { grid-template-columns: 1fr; gap: 1.5rem; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .options-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Módulo do Arquiteto 4x2 nos Blocos (4 em cima, 4 em baixo) */
  .sidebar-nav {
    position: static;
    margin-bottom: 0.5rem;
    padding: 1.2rem 1rem;
  }
  .sidebar-title {
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }
  .block-nav-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
  }
  .block-nav-item button {
    padding: 0.6rem 0.3rem;
    font-size: 0.82rem;
    text-align: center;
    justify-content: center;
    min-height: 46px;
    flex-direction: column;
    gap: 0.2rem;
    border: 1px solid rgba(245,245,245,0.06);
    border-radius: var(--radius-sm);
  }
  .block-nav-item button.active {
    border-left: 1px solid var(--accent-rose);
    border-bottom: 3px solid var(--accent-rose);
  }
  .block-badge {
    display: none; /* Esconde selo de quantidade de perguntas para leveza visual no mobile */
  }
  
  .score-card-right {
    text-align: left;
    margin-top: 0.5rem;
    width: 100%;
    border-top: 1px solid rgba(244, 63, 94, 0.2);
    padding-top: 0.8rem;
  }
  .pricing-values {
    width: 100%;
    text-align: center;
  }
  .roadmap-timeline { flex-direction: column; }
}

/* SMARTPHONES E TELAS PEQUENAS (até 640px) */
@media (max-width: 640px) {
  .main-wrapper { padding: 1.5rem 1rem 3.5rem 1rem; }
  .zvi-header {
    flex-direction: column;
    padding: 0.8rem;
    gap: 0.8rem;
    align-items: stretch;
  }
  .logo-container { justify-content: center; }
  .brand-text { text-align: left; }
  .header-status { display: none; } /* Omitido em smartphones para máxima limitação de espaço */
  
  /* Botoes compactos lado a lado no cabeçalho */
  .view-tabs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
  }
  .tab-btn {
    justify-content: center;
    padding: 0.6rem 0.3rem;
    font-size: 0.85rem;
  }
  
  .hero-banner { margin-bottom: 2rem; }
  .hero-title { font-size: 1.95rem; }
  .hero-desc { font-size: 0.95rem; }
  
  /* Grade dos blocos no celular (2 linhas de 4 colunas perfeitamente alinhadas) */
  .block-nav-list {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
  }
  .block-nav-item button {
    padding: 0.5rem 0.2rem;
    min-height: 48px;
    font-size: 0.78rem;
  }
  .blk-txt {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .form-panel { padding: 1.5rem 1rem; }
  .options-grid { grid-template-columns: 1fr; gap: 0.6rem; }
  
  /* Botoes do formulario full width de toque facilitado */
  .form-actions {
    flex-direction: column-reverse;
    gap: 1rem;
  }
  .action-buttons-group {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }
  .btn {
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1rem;
    font-size: 0.92rem;
  }
  
  /* Responsividade perfeita para o cabeçalho e pontuação no Painel ZVI */
  .dashboard-head-flex {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 1.2rem;
    width: 100%;
  }
  .dashboard-head-flex > div {
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .dashboard-head-flex h2 {
    font-size: 1.35rem !important;
    line-height: 1.3;
    margin-top: 0.6rem !important;
  }
  .score-card-right {
    text-align: left !important;
    margin-top: 0.3rem !important;
    width: 100% !important;
    border-top: 1px dashed rgba(244, 63, 94, 0.3);
    padding-top: 1rem !important;
  }
  .score-card-right > div:nth-child(2) {
    font-size: 1.6rem !important;
  }
  
  .dashboard-card { padding: 1.3rem 1rem; }
  .pricing-banner { padding: 1.5rem 1rem; text-align: center; }
  .toast-notice { right: 1rem; left: 1rem; bottom: 1rem; max-width: none; }
}
