* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  background: var(--bg); color: var(--text); line-height: 1.6;
  overflow-x: hidden; transition: background 0.3s, color 0.3s;
}
:root {
  --primary: #3B4F7A; --primary-light: #5A6FA0; --primary-dark: #2A3A5C;
  --accent: #C9A94E; --bg: #F8F9FC; --text: #2D3748; --text-light: #718096;
  --white: #ffffff; --success: #2ECC71; --warning: #F39C12;
}
[data-theme="dark"] { --bg: #0F1420; --white: #1A2236; --text: #E5E9F2; --text-light: #9AA5C0; }
[data-theme="dark"] nav { background: rgba(15,20,32,0.9); }
[data-theme="dark"] .features, [data-theme="dark"] .stat-card, [data-theme="dark"] .panel,
[data-theme="dark"] .file-list, [data-theme="dark"] .video-card, [data-theme="dark"] .testi-card,
[data-theme="dark"] .app-card, [data-theme="dark"] .chat-container, [data-theme="dark"] .feature-card,
[data-theme="dark"] .proof-strip, [data-theme="dark"] .upload-tab { background: var(--white); }
[data-theme="dark"] .app-icon, [data-theme="dark"] .chat-body, [data-theme="dark"] .upload-zone { background: #0F1420; }
[data-theme="dark"] .form-group select, [data-theme="dark"] .form-group textarea,
[data-theme="dark"] .chat-input input, [data-theme="dark"] .login-input { background: #0F1420; color: var(--text); border-color: #2A3450; }
[data-theme="dark"] .message.accountant .bubble, [data-theme="dark"] .typing-indicator { background: #232C45; color: var(--text); }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 10px; }

nav {
  background: rgba(255,255,255,0.85); backdrop-filter: blur(10px); padding: 1rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  box-shadow: 0 2px 12px rgba(59,79,122,0.08); position: sticky; top: 0; z-index: 100;
}
.logo { display: flex; align-items: center; gap: 0.8rem; font-weight: 700; font-size: 1.1rem; color: var(--primary); }
.logo-icon { width: 40px; height: 40px; } .logo-icon svg { width: 100%; height: 100%; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: var(--text); font-weight: 500; cursor: pointer; position: relative; padding-bottom: 4px; }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: 0; width: 0%; height: 2px; background: var(--accent); transition: width 0.25s; }
.nav-links a:hover, .nav-links a.active { color: var(--primary); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { width: 26px; height: 3px; background: var(--primary); border-radius: 2px; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%; background: var(--bg); border: 2px solid var(--primary-light);
  display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0;
}
.theme-toggle:hover { transform: rotate(20deg); }
.theme-toggle svg { width: 20px; height: 20px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.user-chip { display: flex; align-items: center; gap: 0.6rem; background: var(--bg); padding: 0.4rem 0.9rem 0.4rem 0.4rem; border-radius: 30px; font-size: 0.85rem; font-weight: 600; color: var(--primary); }
.user-chip .mini-avatar { width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); color: white; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; }
.user-chip .logout-x { cursor: pointer; margin-left: 0.3rem; color: var(--text-light); font-weight: 700; }

.btn { padding: 0.7rem 1.5rem; border-radius: 10px; border: none; cursor: pointer; font-weight: 600; font-size: 0.95rem; transition: all 0.25s; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; box-shadow: 0 4px 14px rgba(59,79,122,0.35); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(59,79,122,0.4); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-accent { background: linear-gradient(135deg, var(--accent), #E0BE6D); color: #3a2e0d; box-shadow: 0 4px 14px rgba(201,169,78,0.4); }

.page { display: none; } .page.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

.login-wrap { max-width: 420px; margin: 4rem auto; padding: 2.5rem; background: var(--white); border-radius: 20px; box-shadow: 0 10px 40px rgba(59,79,122,0.15); }
.login-type-btn { flex: 1; padding: 1rem; border: 2px solid #E2E8F0; border-radius: 12px; text-align: center; cursor: pointer; color: var(--text-light); }
.login-type-btn svg { width: 28px; height: 28px; margin: 0 auto 0.5rem; display: block; }
.login-type-btn span { font-size: 0.85rem; font-weight: 600; }
.login-type-btn.active { border-color: var(--primary); background: rgba(59,79,122,0.06); color: var(--primary); }
.login-input { width: 100%; padding: 0.8rem; border: 2px solid #E2E8F0; border-radius: 10px; font-family: inherit; background: var(--white); color: var(--text); font-size: 0.95rem; }
.login-input:focus { outline: none; border-color: var(--primary); }
.login-error { background: #FDEDEC; color: #C0392B; padding: 0.7rem 1rem; border-radius: 8px; font-size: 0.85rem; margin-bottom: 1rem; display: none; }

.hero { padding: 5rem 3rem 3rem; display: grid; grid-template-columns: 1.1fr 1fr; gap: 3rem; align-items: center; max-width: 1200px; margin: 0 auto; }
.badge-trust { display: inline-flex; align-items: center; gap: 0.5rem; background: #EAF4EE; color: #27AE60; padding: 0.4rem 1rem; border-radius: 30px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.2rem; }
.hero h1 { font-size: 2.8rem; color: var(--primary); line-height: 1.2; margin-bottom: 1rem; }
.hero p { font-size: 1.1rem; color: var(--text-light); margin-bottom: 2rem; }
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%); border-radius: 24px; height: 380px; padding: 1.5rem; display: flex; flex-direction: column; justify-content: space-between; color: white; box-shadow: 0 25px 50px rgba(59,79,122,0.25); position: relative; overflow: hidden; }
.hero-visual::before { content: ''; position: absolute; width: 200px; height: 200px; background: rgba(255,255,255,0.08); border-radius: 50%; top: -60px; right: -60px; }
.mini-stat-row { display: flex; gap: 1rem; }
.mini-stat { background: rgba(255,255,255,0.15); backdrop-filter: blur(6px); border-radius: 12px; padding: 1rem; flex: 1; }
.mini-stat .num { font-size: 1.6rem; font-weight: 700; } .mini-stat .lbl { font-size: 0.8rem; opacity: 0.85; }
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 90px; }
.chart-bars div { flex: 1; background: linear-gradient(180deg, var(--accent), #fff2); border-radius: 6px 6px 0 0; animation: grow 1s ease; }
@keyframes grow { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.proof-strip { background: var(--white); padding: 2rem 3rem; display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; border-top: 1px solid #EEF1F8; border-bottom: 1px solid #EEF1F8; }
.proof-item { text-align: center; } .proof-item .num { font-size: 1.8rem; font-weight: 800; color: var(--primary); } .proof-item .lbl { font-size: 0.85rem; color: var(--text-light); }

.features { padding: 4rem 3rem; background: var(--white); }
.features h2, .apps-section h2, .testimonials h2 { text-align: center; color: var(--primary); margin-bottom: 0.5rem; font-size: 2rem; }
.section-sub { text-align: center; color: var(--text-light); margin-bottom: 3rem; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.feature-card { padding: 2rem; border-radius: 18px; background: var(--bg); text-align: center; transition: transform 0.3s, box-shadow 0.3s; border: 1px solid transparent; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(59,79,122,0.12); border-color: #E4E9F5; }
.feature-icon { width: 56px; height: 56px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.feature-icon svg { width: 28px; height: 28px; fill: white; }
.feature-card h3 { color: var(--primary); margin-bottom: 0.5rem; } .feature-card p { color: var(--text-light); font-size: 0.95rem; }

.testimonials { padding: 4rem 3rem; max-width: 1200px; margin: 0 auto; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testi-card { background: var(--white); border-radius: 16px; padding: 1.6rem; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.stars { color: var(--accent); margin-bottom: 0.6rem; letter-spacing: 2px; }
.testi-card p.quote { color: var(--text); font-size: 0.95rem; margin-bottom: 1rem; }
.testi-author { display: flex; align-items: center; gap: 0.7rem; }
.testi-avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 0.85rem; }
.testi-author strong { font-size: 0.9rem; } .testi-author span { font-size: 0.8rem; color: var(--text-light); }

.apps-section { padding: 4rem 3rem; max-width: 1200px; margin: 0 auto; }
.apps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.app-card { background: var(--white); padding: 1.6rem; border-radius: 14px; text-align: center; cursor: pointer; transition: all 0.25s; border: 2px solid transparent; position: relative; }
.app-card:hover { border-color: var(--primary); transform: translateY(-4px); box-shadow: 0 10px 24px rgba(59,79,122,0.12); }
.app-icon { width: 52px; height: 52px; background: var(--bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 0.8rem; }
.app-icon svg { width: 26px; height: 26px; stroke: var(--primary); fill: none; stroke-width: 1.8; }
.app-card h4 { color: var(--primary); margin-bottom: 0.3rem; } .app-card p { font-size: 0.85rem; color: var(--text-light); }

.cta-final { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: white; padding: 4rem 3rem; text-align: center; }
.cta-final h2 { font-size: 2rem; margin-bottom: 0.8rem; } .cta-final p { opacity: 0.85; margin-bottom: 1.5rem; }

.dashboard { display: grid; grid-template-columns: 240px 1fr; min-height: calc(100vh - 72px); }
.sidebar { background: linear-gradient(180deg, var(--primary), var(--primary-dark)); color: white; padding: 2rem 1rem; }
.sidebar-menu { list-style: none; margin-top: 1.5rem; }
.sidebar-menu li { padding: 0.8rem 1rem; border-radius: 10px; cursor: pointer; margin-bottom: 0.3rem; transition: background 0.2s; display: flex; align-items: center; gap: 0.8rem; }
.sidebar-menu li svg { width: 18px; height: 18px; flex-shrink: 0; }
.sidebar-menu li:hover, .sidebar-menu li.active { background: rgba(255,255,255,0.15); }
.submenu { list-style: none; margin: 0 0 0.3rem 1rem; }
.submenu li { padding: 0.55rem 1rem; font-size: 0.88rem; border-radius: 8px; cursor: pointer; color: rgba(255,255,255,0.85); transition: background 0.2s; }
.submenu li:hover { background: rgba(255,255,255,0.12); }
.role-tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; background: rgba(255,255,255,0.2); padding: 0.25rem 0.7rem; border-radius: 20px; display: inline-block; margin-top: 1rem; }
.dash-content { padding: 2rem; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; flex-wrap: wrap; gap: 1rem; }
.dash-header h1 { color: var(--primary); }
.user-info { display: flex; align-items: center; gap: 1rem; }
.bell-wrap { position: relative; cursor: pointer; }
.bell-dot { position: absolute; top: -3px; right: -3px; width: 9px; height: 9px; background: #E74C3C; border-radius: 50%; border: 2px solid var(--bg); }
.avatar { width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--accent)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.stat-card { background: var(--white); padding: 1.5rem; border-radius: 14px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); display: flex; align-items: center; gap: 1rem; transition: transform 0.2s; }
.stat-card:hover { transform: translateY(-3px); }
.stat-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.stat-icon svg { width: 22px; height: 22px; }
.stat-card .label { color: var(--text-light); font-size: 0.85rem; } .stat-card .value { font-size: 1.6rem; font-weight: 700; color: var(--primary); }
.dash-grid { display: grid; gap: 1.5rem; margin-bottom: 1.5rem; }
.panel { background: var(--white); padding: 1.5rem; border-radius: 14px; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.panel h3 { color: var(--primary); margin-bottom: 1rem; padding-bottom: 0.8rem; border-bottom: 2px solid var(--bg); display: flex; align-items: center; gap: 0.5rem; }
.notif-item { padding: 0.8rem 0; border-bottom: 1px solid var(--bg); display: flex; align-items: center; gap: 0.8rem; }
.notif-dot { width: 8px; height: 8px; background: var(--success); border-radius: 50%; flex-shrink: 0; } .notif-dot.warning { background: var(--warning); }

.upload-zone { border: 3px dashed var(--primary-light); border-radius: 18px; padding: 3rem; text-align: center; background: var(--bg); cursor: pointer; transition: all 0.25s; margin-bottom: 2rem; }
.upload-zone:hover { border-color: var(--primary); transform: scale(1.005); }
.upload-zone svg { width: 56px; height: 56px; stroke: var(--primary); fill: none; stroke-width: 1.5; margin-bottom: 1rem; }
.upload-zone h3 { color: var(--primary); margin-bottom: 0.5rem; } .upload-zone p { color: var(--text-light); }
.upload-tabs { display: flex; gap: 0.6rem; margin-bottom: 1.5rem; flex-wrap: wrap; }
.upload-tab { padding: 0.6rem 1.2rem; border-radius: 10px; border: 2px solid #E2E8F0; background: var(--white); cursor: pointer; font-weight: 600; font-size: 0.88rem; color: var(--text-light); transition: all 0.2s; display: flex; align-items: center; gap: 0.5rem; }
.upload-tab.active { border-color: var(--primary); color: var(--primary); background: rgba(59,79,122,0.06); }
.upload-panel { display: none; } .upload-panel.active { display: block; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--text); }
.form-group select, .form-group textarea { width: 100%; padding: 0.8rem; border: 2px solid #E2E8F0; border-radius: 10px; font-family: inherit; font-size: 1rem; background: var(--white); color: var(--text); }
.form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--primary); }
.file-list { background: var(--white); border-radius: 14px; padding: 1rem; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.file-item { display: flex; justify-content: space-between; align-items: center; padding: 0.8rem; border-bottom: 1px solid var(--bg); }
.file-item:last-child { border-bottom: none; }
.badge { padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; }
.badge-success { background: #D5F5E3; color: #27AE60; } .badge-warning { background: #FEF5E7; color: #F39C12; }

.videos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.video-card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,0.05); cursor: pointer; transition: transform 0.25s; }
.video-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(59,79,122,0.12); }
.video-thumb { height: 160px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); display: flex; align-items: center; justify-content: center; position: relative; }
.video-thumb .play-btn { width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,0.25); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; }
.video-card:hover .play-btn { transform: scale(1.1); background: rgba(255,255,255,0.4); }
.play-btn svg { width: 20px; height: 20px; fill: white; }
.video-info { padding: 1rem; } .video-info h4 { color: var(--primary); margin-bottom: 0.3rem; }
.video-info .meta { font-size: 0.85rem; color: var(--text-light); display: flex; gap: 0.5rem; align-items: center; }

.chat-container { max-width: 700px; margin: 0 auto; background: var(--white); border-radius: 18px; box-shadow: 0 4px 24px rgba(0,0,0,0.08); overflow: hidden; }
.chat-header { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; padding: 1rem 1.5rem; display: flex; align-items: center; gap: 1rem; }
.chat-header .avatar { background: white; color: var(--primary); }
.chat-header .status { font-size: 0.85rem; opacity: 0.9; display: flex; align-items: center; gap: 0.3rem; }
.status-dot { width: 8px; height: 8px; background: #2ECC71; border-radius: 50%; box-shadow: 0 0 0 3px rgba(46,204,113,0.3); }
.chat-body { padding: 1.5rem; height: 400px; overflow-y: auto; background: var(--bg); }
.message { margin-bottom: 1rem; display: flex; flex-direction: column; }
.message.client { align-items: flex-end; }
.message.client .bubble { background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: white; border-bottom-right-radius: 4px; }
.message.accountant .bubble { background: var(--white); color: var(--text); border-bottom-left-radius: 4px; }
.bubble { padding: 0.8rem 1rem; border-radius: 14px; max-width: 70%; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.typing-indicator { display: flex; gap: 4px; padding: 0.9rem 1.1rem; background: var(--white); border-radius: 14px; width: fit-content; box-shadow: 0 1px 4px rgba(0,0,0,0.08); }
.typing-indicator span { width: 7px; height: 7px; background: var(--text-light); border-radius: 50%; animation: bounce 1.2s infinite; }
.typing-indicator span:nth-child(2) { animation-delay: 0.2s; } .typing-indicator span:nth-child(3) { animation-delay: 0.4s; }
@keyframes bounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.5; } 30% { transform: translateY(-5px); opacity: 1; } }
.chat-input { padding: 1rem; display: flex; gap: 0.8rem; border-top: 1px solid var(--bg); }
.chat-input input { flex: 1; padding: 0.8rem; border: 2px solid #E2E8F0; border-radius: 10px; font-family: inherit; background: var(--white); color: var(--text); }
.chat-input input:focus { outline: none; border-color: var(--primary); }
.quick-replies { display: flex; gap: 0.5rem; padding: 0 1rem 1rem; flex-wrap: wrap; }
.quick-reply { background: var(--bg); border: 1px solid #E2E8F0; padding: 0.4rem 0.9rem; border-radius: 20px; font-size: 0.82rem; cursor: pointer; transition: all 0.2s; color: var(--primary); }
.quick-reply:hover { background: var(--primary); color: white; border-color: var(--primary); }

footer { background: var(--primary-dark); color: white; padding: 3rem; text-align: center; }
footer p { opacity: 0.8; font-size: 0.9rem; }
.fab { position: fixed; bottom: 24px; right: 24px; width: 58px; height: 58px; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent)); display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 24px rgba(59,79,122,0.4); cursor: pointer; z-index: 200; transition: transform 0.2s; }
.fab:hover { transform: scale(1.08); } .fab svg { width: 26px; height: 26px; fill: white; }

@media (max-width: 900px) {
  .hero, .testi-grid { grid-template-columns: 1fr; }
  .dash-grid { grid-template-columns: 1fr !important; }
  .features-grid, .apps-grid, .videos-grid, .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard { grid-template-columns: 1fr; } .sidebar { display: none; }
}
/* Alteramos a quebra de 640px para 768px para englobar celulares com tela de 720px */
@media (max-width: 768px) {
  nav { padding: 1rem 1.2rem; position: relative; }
  .nav-links { display: none; }
  
  /* Menu responsivo */
  .nav-links.mobile-open { 
    display: flex; flex-direction: column; position: absolute; 
    top: 100%; left: 0; width: 100%; background: var(--white); 
    padding: 1.5rem 2rem; box-shadow: 0 10px 24px rgba(59,79,122,0.15); 
    gap: 1.5rem; border-top: 1px solid var(--bg);
  }
  [data-theme="dark"] .nav-links.mobile-open { background: #1A2236; border-top-color: #0F1420; }
  
  .hamburger { display: flex; }
  .hero { padding: 2.5rem 1.2rem; } 
  .hero h1 { font-size: 2rem; }
  .features, .apps-section, .testimonials, .upload-zone, .dash-content { padding: 2rem 1.2rem; }
  
  /* Força tudo a ficar em 1 coluna */
  .features-grid, .apps-grid, .videos-grid, .stats-grid, .proof-strip { grid-template-columns: 1fr; }
  .proof-strip { flex-direction: column; gap: 1.5rem; } 
  .fab { bottom: 16px; right: 16px; }
  
  /* Ajuste preciso da margem do Login (10% superior/inferior, 5% laterais) */
  .login-wrap { 
    margin: 10% 5%; 
    padding: 2rem 1.5rem; 
    width: auto; 
    max-width: none; 
  }
}
@media (max-width: 640px) {
  nav { padding: 1rem 1.2rem; position: relative; }
  .nav-links { display: none; }
  
  /* FAZ O MENU SUPERIOR FUNCIONAR NO CELULAR */
  .nav-links.mobile-open { 
    display: flex; 
    flex-direction: column; 
    position: absolute; 
    top: 100%; 
    left: 0; 
    width: 100%; 
    background: var(--white); 
    padding: 1.5rem 2rem; 
    box-shadow: 0 10px 24px rgba(59,79,122,0.15); 
    gap: 1.5rem; 
    border-top: 1px solid var(--bg);
  }
  [data-theme="dark"] .nav-links.mobile-open { background: #1A2236; border-top-color: #0F1420; }
  
  .hamburger { display: flex; }
  .hero { padding: 2.5rem 1.2rem; } 
  .hero h1 { font-size: 2rem; }
  .features, .apps-section, .testimonials, .upload-zone, .dash-content { padding: 2rem 1.2rem; }
  .features-grid, .apps-grid, .videos-grid, .stats-grid, .proof-strip { grid-template-columns: 1fr; }
  .proof-strip { flex-direction: column; gap: 1.5rem; } 
  .fab { bottom: 16px; right: 16px; }
  
  /* AJUSTA O ESPAÇAMENTO DA TELA DE LOGIN NO CELULAR */
  .login-wrap { 
    margin: 10% 5%; 
    padding: 2rem 1.5rem; 
    width: auto; 
    max-width: none; 
  }
}