/* ========================================
   Onboard Files - Landing Page
   Design inspirado no Beside.com
   ======================================== */

/* CSS Variables */
:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-card: #ffffff;
    --bg-glass: rgba(33, 139, 161, 0.05);
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #94a3b8;
    
    --accent-primary: #218BA1;
    --accent-secondary: #1a6f81;
    --accent-tertiary: #2dd4bf;
    --accent-gradient: linear-gradient(135deg, #218BA1 0%, #1a6f81 50%, #2dd4bf 100%);
    
    --border-color: #e2e8f0;
    --border-hover: #cbd5e1;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(33, 139, 161, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* utility classes */

body.no-scroll {
    overflow: hidden;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
}

h3 {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
}

p {
    color: var(--text-secondary);
}

/* ========================================
   BUTTONS
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-gradient);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.5);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: #f1f5f9;
}

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

.btn-outline:hover {
    border-color: var(--border-hover);
    background: var(--bg-glass);
}

.btn-light {
    background: white;
    color: var(--bg-primary);
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn .arrow {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

.btn:hover .arrow {
    transform: translateX(4px);
}

/* ========================================
   NAVBAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 1.125rem;
}

.logo-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: var(--radius-sm);
}

.logo-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

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

.nav-links-desktop {
    align-items: center;
}

/* mobile menu drawer */
.nav-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: white;
    z-index: 2000; /* above navbar */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 80px;
    overflow-y: auto;
}

.nav-menu.open {
    display: flex;
}

.nav-links a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}


.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
}

/* ========================================
   HERO SECTION
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1400px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0fdfa 100%);
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: -150px;
    right: -100px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-tertiary);
    bottom: 10%;
    left: -100px;
    opacity: 0.3;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent-secondary);
    top: 40%;
    left: 30%;
    opacity: 0.2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(33, 139, 161, 0.1);
    border: 1px solid rgba(33, 139, 161, 0.2);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--accent-primary);
    margin-bottom: 32px;
    margin-left: auto;
    margin-right: auto;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero-title {
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.word-rotate {
    display: inline-block;
    position: relative;
    color: var(--accent-primary);
}

.word {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-slow);
    position: absolute;
    left: 0;
    white-space: nowrap;
}

.word.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    max-width: 600px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 64px;
}

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

/* Hero Visual - Dashboard App */
.hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.dashboard-app {
    display: flex;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 80px rgba(33, 139, 161, 0.15);
    max-width: 1200px;
    width: 95%;
    margin: 0 auto;
    pointer-events: none;
    user-select: none;
}

/* Sidebar */
.dash-sidebar {
    width: 240px;
    background: #f8fafc;
    border-right: 1px solid var(--border-color);
    padding: 20px 0;
    flex-shrink: 0;
}

.dash-logo {
    padding: 0 20px 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.logo-text {
    font-size: 0.875rem;
    font-weight: 700;
    color: #218BA1;
    letter-spacing: 0.05em;
}

.logo-highlight {
    font-size: 0.875rem;
    font-weight: 700;
    color: white;
    background: #218BA1;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 4px;
}

.dash-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 0 12px;
}

.dash-nav-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    transition: all 0.2s;
}

.dash-nav-item:hover {
    background: #e2e8f0;
    color: var(--text-primary);
}

.dash-nav-item.active {
    background: #218BA1;
    color: white;
}

.dash-nav-item svg {
    width: 16px;
    height: 16px;
}

/* Main Content */
.dash-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-color);
}

.dash-title h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #218BA1;
}

.dash-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-icon {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border-radius: 50%;
    cursor: pointer;
}

.notification-icon svg {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}

.notification-badge {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 16px;
    height: 16px;
    background: #ef4444;
    color: white;
    font-size: 0.625rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 2px solid white;
}

.user-name {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    display: none;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: #218BA1;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Content */
.dash-content {
    flex: 1;
    padding: 24px;
    background: #f8fafc;
}

.dash-welcome {
    margin-bottom: 24px;
}

.dash-welcome h2 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.dash-welcome p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

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

.dash-card {
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 8px;
}

.card-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: 0.05em;
    line-height: 1.3;
    max-width: 150px;
    text-transform: uppercase;
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon svg {
    width: 22px;
    height: 22px;
    color: white;
}

.card-icon.blue { background: #2a9d8f; }
.card-icon.green { background: #2ecc71; }
.card-icon.orange { background: #e74c3c; }
.card-icon.purple { background: #3498db; }

.card-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.card-info {
    font-size: 0.8125rem;
    color: #94a3b8;
    margin-bottom: 16px;
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: auto;
}

.card-footer svg {
    width: 14px;
    height: 14px;
    color: #94a3b8;
}

/* ========================================
   SOCIAL PROOF
   ======================================== */

.social-proof {
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trusted-by {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.logo-cloud {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* ========================================
   SECTION HEADERS
   ======================================== */

.section-header {
    margin-bottom: 64px;
}

.section-header.center {
    text-align: center;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    max-width: 600px;
    font-size: 1.125rem;
}

.section-header.center p {
    margin: 0 auto;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(33, 139, 161, 0.1);
    border: 1px solid rgba(33, 139, 161, 0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

/* ========================================
   FEATURE HIGHLIGHT
   ======================================== */

.feature-highlight {
    padding: 120px 0;
    scroll-margin-top: 80px;
}

/* Two Column Layout - Feature Highlight */
.two-column-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.column-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.column-left .section-tag {
    align-self: flex-start;
}

.column-left h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin: 0;
}

.column-left .section-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
    max-width: 480px;
}

.column-left h3 {
    font-size: 1.5rem;
    margin: 16px 0 8px;
}

.column-right {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.feature-list li {
    display: flex;
    gap: 16px;
}

.check-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-radius: 50%;
    font-size: 0.75rem;
    flex-shrink: 0;
}

.feature-list strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-list p {
    font-size: 0.9375rem;
}

/* Showcase Visual - Dashboard Table */
.showcase-visual {
    position: relative;
}

.dashboard-table-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 520px;
    width: 100%;
    pointer-events: none;
    user-select: none;
}

.table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
    background: #f8fafc;
}

.table-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 1rem;
    color: #218BA1;
}

.folder-icon {
    width: 20px;
    height: 20px;
}

.btn-new-field {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: #218BA1;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-new-field:hover {
    background: #1a6f81;
    transform: translateY(-1px);
}

.btn-new-field span {
    font-size: 1.125rem;
    line-height: 1;
}

.docs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.docs-table thead {
    background: #ffffff;
}

.docs-table th {
    padding: 14px 20px;
    text-align: left;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.docs-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-primary);
}

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

.docs-table tbody tr:hover {
    background: #f8fafc;
}

.doc-name {
    font-weight: 500;
}

.status-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-rejected {
    background: #fef2f2;
    color: #dc2626;
}

.status-approved {
    background: #f0fdf4;
    color: #16a34a;
}

.status-pending {
    background: #fefce8;
    color: #ca8a04;
}

.view-file {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #218BA1;
    font-weight: 500;
    transition: color 0.2s;
    white-space: nowrap;
}

.view-file:hover {
    color: #1a6f81;
}

.view-file svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.no-file {
    color: var(--text-muted);
}

.actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
}

.action-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
    flex-shrink: 0;
}

.action-btn svg {
    width: 16px;
    height: 16px;
    display: block;
    flex-shrink: 0;
}

.btn-approve {
    background: #dcfce7;
    color: #22c55e;
}

.btn-approve:hover:not(.disabled) {
    background: #bbf7d0;
    transform: scale(1.05);
}

.btn-reject {
    background: #fee2e2;
    color: #ef4444;
}

.btn-reject:hover:not(.disabled) {
    background: #fecaca;
    transform: scale(1.05);
}

.btn-more {
    background: transparent;
    color: #94a3b8;
    width: 28px;
    height: 28px;
}

.btn-more svg {
    width: 18px;
    height: 18px;
}

.btn-more:hover {
    background: #f1f5f9;
    color: #64748b;
}

.action-btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Table compact adjustments */
.docs-table th,
.docs-table td {
    padding: 14px 16px;
}

.docs-table th:nth-child(3),
.docs-table td:nth-child(3) {
    text-align: center;
}

.docs-table th:nth-child(4),
.docs-table td:nth-child(4) {
    text-align: right;
}

/* ========================================
   SECTORS
   ======================================== */

.sectors {
    padding: 120px 0;
    background: var(--bg-secondary);
    scroll-margin-top: 80px;
}

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

.sector-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
}

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

.sector-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 139, 161, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.sector-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.sector-card h3 {
    font-size: 1.125rem;
    margin-bottom: 8px;
}

.sector-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* ========================================
   FEATURES GRID
   ======================================== */

.features-grid {
    padding: 120px 0;
}

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

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
    grid-column: span 1;
    grid-row: span 1;
}

.feature-card:hover {
    border-color: var(--border-hover);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(33, 139, 161, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.7;
}

.feature-preview {
    margin-top: 24px;
}

.template-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    padding: 6px 12px;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.tag:last-child {
    border-style: dashed;
    color: var(--accent-primary);
}

/* ========================================
   HOW IT WORKS
   ======================================== */

.how-it-works {
    padding: 120px 0;
    background: var(--bg-secondary);
    scroll-margin-top: 80px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.step {
    display: grid;
    grid-template-columns: auto 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.step-number {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-gradient);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
    line-height: 1.3;
}

.step-content p {
    font-size: 1.0625rem;
    max-width: 420px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.step-visual {
    display: flex;
    justify-content: flex-end;
}

.step-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    width: 100%;
    max-width: 480px;
    box-shadow: var(--shadow-sm);
}

.checkbox-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
}

.checkbox .box {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    font-size: 0.625rem;
}

.checkbox.checked .box {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.phone-header {
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
}

.upload-area {
    border: 2px dashed #cbd5e1;
    border-radius: var(--radius-md);
    padding: 32px 24px;
    text-align: center;
    background: #f8fafc;
}

.upload-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.upload-area p {
    font-size: 0.875rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.upload-area span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Share Modal */
.share-modal {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 480px;
    width: 100%;
    pointer-events: none;
    user-select: none;
}

.share-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.share-header h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-close {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

.btn-close:hover {
    background: #f1f5f9;
    color: var(--text-primary);
}

.btn-close svg {
    width: 18px;
    height: 18px;
}

.share-content {
    padding: 24px 20px;
    text-align: center;
}

.success-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0fdf4;
    border-radius: 50%;
    margin: 0 auto 16px;
    color: #22c55e;
}

.success-icon svg {
    width: 24px;
    height: 24px;
}

.share-content h5 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.email-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #dcfce7;
    color: #16a34a;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.email-badge svg {
    width: 14px;
    height: 14px;
}

.share-hint {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.link-box {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
}

.link-box input {
    flex: 1;
    padding: 10px 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.8125rem;
    color: var(--text-secondary);
    background: #f8fafc;
    outline: none;
}

.btn-copy {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #218BA1;
    border-radius: 8px;
    cursor: pointer;
    color: #218BA1;
    transition: all 0.2s;
    flex-shrink: 0;
}

.btn-copy:hover {
    background: #f0f9ff;
}

.btn-copy svg {
    width: 18px;
    height: 18px;
}

.qr-code {
    width: 140px;
    height: 140px;
    margin: 0 auto 12px;
    padding: 8px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.qr-code svg {
    width: 100%;
    height: 100%;
}

.qr-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.btn-close-modal {
    padding: 10px 24px;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-close-modal:hover {
    background: #e2e8f0;
    color: var(--text-primary);
}

/* Approval Card - Versão reduzida */
.approval-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 480px;
    width: 100%;
    pointer-events: none;
    user-select: none;
}

.approval-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    background: #f8fafc;
}

.approval-header h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.approval-count {
    font-size: 0.8125rem;
    color: var(--text-muted);
    font-weight: 500;
}

.approval-list {
    padding: 12px;
}

.approval-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.approval-item:hover {
    background: #f8fafc;
}

.approval-item.pending {
    opacity: 0.7;
}

.approval-file {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.file-icon-small {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    flex-shrink: 0;
}

.approval-filename {
    font-size: 0.8125rem;
    color: var(--text-primary);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.approval-view {
    font-size: 0.75rem;
    color: #218BA1;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.approval-view:hover {
    color: #1a6f81;
}

.approval-status {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}

.approval-actions-small {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.action-btn-small {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    padding: 0;
}

.action-btn-small svg {
    width: 14px;
    height: 14px;
}

.action-btn-small.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.btn-approve-sm {
    background: #dcfce7;
    color: #22c55e;
}

.btn-approve-sm:hover:not(.disabled) {
    background: #bbf7d0;
    transform: scale(1.05);
}

.btn-reject-sm {
    background: #fee2e2;
    color: #ef4444;
}

.btn-reject-sm:hover:not(.disabled) {
    background: #fecaca;
    transform: scale(1.05);
}

.approval-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* Journey Form Card */
.journey-form-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    max-width: 480px;
    width: 100%;
    pointer-events: none;
    user-select: none;
}

.journey-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
}

.journey-header h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.btn-cancel {
    padding: 6px 14px;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cancel:hover {
    background: #e2e8f0;
}

/* Stepper */
.stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 16px;
    gap: 4px;
}

.stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.stepper-item span {
    font-size: 0.625rem;
    color: var(--text-muted);
    text-align: center;
    white-space: nowrap;
}

.stepper-circle {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: white;
}

.stepper-item.active .stepper-circle {
    background: #218BA1;
    border-color: #218BA1;
    color: white;
}

.stepper-item.active span {
    color: #218BA1;
    font-weight: 500;
}

.stepper-line {
    flex: 1;
    height: 2px;
    background: #e2e8f0;
    min-width: 20px;
    max-width: 40px;
}

/* Journey Content */
.journey-content {
    padding: 0 20px 20px;
}

.journey-content h5 {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 4px;
}

.journey-subtitle {
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.form-group .required {
    color: #ef4444;
}

.form-group .optional {
    color: var(--text-muted);
    font-weight: 400;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--text-primary);
    background: white;
    transition: border-color 0.2s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #218BA1;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #94a3b8;
}

.select-wrapper {
    position: relative;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 32px;
}

.select-hint {
    display: block;
    font-size: 0.6875rem;
    color: var(--text-muted);
    margin-top: 3px;
}

.form-textarea {
    resize: vertical;
    min-height: 50px;
}

.lgpd-select {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 0.8125rem;
    color: var(--text-primary);
    background: white;
    cursor: pointer;
    position: relative;
}

.lgpd-select .sparkles {
    font-size: 0.875rem;
}

.lgpd-select .chevron {
    width: 14px;
    height: 14px;
    margin-left: auto;
    color: var(--text-muted);
}

.btn-approve, .btn-reject {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    border: none;
}

.btn-approve {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.btn-reject {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* ========================================
   PRICING
   ======================================== */

.pricing {
    padding: 120px 0;
    scroll-margin-top: 80px;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px;
}

.toggle-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color var(--transition-fast);
}

.toggle-label.active {
    color: var(--text-primary);
}

.badge-save {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border-radius: 100px;
    font-size: 0.625rem;
    font-weight: 600;
    margin-left: 4px;
}

.toggle-switch {
    position: relative;
    width: 52px;
    height: 28px;
    background: var(--bg-glass);
    border-radius: 100px;
    cursor: pointer;
    border: 1px solid var(--border-color);
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--accent-gradient);
    border-radius: 50%;
    transition: transform var(--transition-base);
}

.toggle-switch input:checked + .toggle-slider {
    transform: translateX(24px);
}

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

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

.pricing-card:hover {
    border-color: var(--border-hover);
}

.pricing-card.featured {
    background: #f0f9ff;
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: var(--accent-gradient);
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.pricing-header p {
    font-size: 0.875rem;
}

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

.pricing-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.pricing-price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.pricing-features .check {
    color: #22c55e;
}

/* ========================================
   EARLY STAGE CARD
   ======================================== */

.early-stage-card {
    max-width: 600px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 40px rgba(33, 139, 161, 0.15);
}

.early-stage-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-primary);
    color: white;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.early-stage-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.early-stage-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.early-stage-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    text-align: left;
    margin-bottom: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-primary);
}

.early-stage-note {
    margin-top: 16px;
    font-size: 0.875rem;
    color: var(--text-muted);
}

@media (max-width: 640px) {
    .early-stage-card {
        padding: 32px 24px;
    }
    
    .early-stage-benefits {
        grid-template-columns: 1fr;
    }
    
    .early-stage-title {
        font-size: 1.5rem;
    }
}

/* ========================================
   CTA SECTION
   ======================================== */

.cta-section {
    padding: 80px 0 120px;
    scroll-margin-top: 80px;
}

.cta-card {
    position: relative;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-xl);
    padding: 64px 40px;
    text-align: center;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    pointer-events: none;
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    position: relative;
    z-index: 1;
}

.cta-actions .btn-light {
    color: var(--accent-primary);
    font-weight: 600;
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    padding: 80px 0 40px;
    border-top: 1px solid var(--border-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.9375rem;
    max-width: 280px;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.social-links a:hover {
    border-color: var(--accent-primary);
    background: rgba(99, 102, 241, 0.1);
}

.social-links svg {
    width: 18px;
    height: 18px;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
}

.footer-bottom p {
    font-size: 0.875rem;
}

.lgpd-badge {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ========================================
   DESKTOP / MOBILE VISIBILITY CLASSES
   ======================================== */

.desktop-only {
    display: flex;
}

.mobile-only {
    display: none;
}

/* Mobile Dashboard Specific Styles */
.dash-header-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--border-color);
    background: #ffffff;
}

.mobile-menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f1f5f9;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    color: #218BA1;
}

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

.dash-title-mobile h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #218BA1;
}

.notification-icon.mobile {
    position: relative;
    width: 40px;
    height: 40px;
}

.dash-content.mobile {
    padding: 16px;
    background: #f1f5f9;
    flex: 1;
    overflow-y: auto;
}

.dash-cards.mobile {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
    .two-column-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .column-left {
        text-align: center;
        align-items: center;
    }
    
    .column-left .section-tag {
        align-self: center;
    }
    
    .column-left h2 {
        font-size: 2rem;
    }
    
    .column-left .section-intro {
        max-width: 100%;
    }
    
    .dashboard-table-card {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .step {
        grid-template-columns: auto 1fr;
    }
    
    .step-visual {
        display: flex;
        grid-column: 1 / -1;
        justify-content: center;
        margin-top: 24px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Visibility classes */
    .desktop-only {
        display: none !important;
    }
    
    .mobile-only {
        display: flex !important;
    }

    /* hide desktop buttons and show toggle */
    .nav-actions {
        display: none;
    }

    .nav-links-desktop {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* mobile menu drawer */
    .nav-menu {
        display: none;
        inset: 0;
        z-index: 2000;
        background: #ffffff;
        padding: 12px 20px 24px;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 12px;
        overflow-y: auto;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu-header {
        position: sticky;
        top: 0;
        z-index: 2;
        background: #ffffff;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 0 0 12px;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 4px;
    }

    .logo-menu img {
        height: 24px;
        width: auto;
    }

    .menu-close {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #f8fafc;
        border: 1px solid var(--border-color);
        border-radius: 10px;
        font-size: 1.75rem;
        line-height: 1;
        cursor: pointer;
        color: var(--text-primary);
    }

    .nav-menu .nav-links {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .nav-menu .nav-links li {
        width: 100%;
    }

    .nav-menu .nav-links a {
        position: relative;
        display: block;
        width: 100%;
        padding: 12px 8px;
        font-size: 1rem;
        font-weight: 600;
        color: var(--text-primary);
        background: transparent;
        border: none;
        border-radius: 0;
    }

    .nav-menu .nav-links a::after {
        display: none;
    }

    .nav-menu .nav-links a:hover {
        color: var(--text-primary);
        background: transparent;
    }

    .nav-actions-mobile {
        margin-top: 6px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .nav-actions-mobile .btn {
        width: 100%;
    }

    .nav-actions-mobile .btn-ghost {
        background: #f8fafc;
        border: 1px solid var(--border-color);
        color: var(--text-primary);
    }
    
    /* Menu toggle button */
    .menu-toggle {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
        width: 44px;
        height: 44px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 8px;
        border-radius: 10px;
        transition: all 0.2s ease;
    }
    
    .menu-toggle:hover {
        background: rgba(33, 139, 161, 0.1);
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Container padding fix */
    .container {
        padding: 0 16px;
    }
    
    /* Section padding reduction */
    .feature-highlight,
    .sectors,
    .how-it-works,
    .pricing {
        padding: 60px 0;
    }
    
    /* Two column layout improvements */
    .two-column-layout {
        gap: 32px;
    }
    
    .column-left {
        text-align: center;
        align-items: center;
        padding: 0 8px;
    }
    
    .column-left h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .column-left .section-intro {
        font-size: 1rem;
        max-width: 100%;
        margin-bottom: 16px;
    }
    
    .column-left h3 {
        font-size: 1.25rem;
        margin: 12px 0 8px;
    }
    
    /* Feature list improvements */
    .feature-list {
        gap: 16px;
    }
    
    .feature-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
    }
    
    .feature-list strong {
        font-size: 1rem;
    }
    
    .feature-list p {
        font-size: 0.875rem;
    }
    
    /* Table responsive - hide file and actions columns on mobile */
    .docs-table th:nth-child(3),
    .docs-table td:nth-child(3),
    .docs-table th:nth-child(4),
    .docs-table td:nth-child(4) {
        display: none;
    }
    
    .dashboard-table-card {
        overflow: hidden;
        max-width: 100%;
        width: 100%;
        border-radius: var(--radius-md);
    }
    
    .docs-table {
        min-width: unset;
        width: 100%;
        font-size: 0.8125rem;
    }
    
    .docs-table th,
    .docs-table td {
        padding: 10px;
    }
    
    .docs-table th:first-child,
    .docs-table td:first-child {
        width: 60%;
    }
    
    .docs-table th:nth-child(2),
    .docs-table td:nth-child(2) {
        width: 40%;
        text-align: right;
    }
    
    .table-header {
        padding: 12px 16px;
    }
    
    .table-title {
        font-size: 0.8125rem;
    }
    
    .table-title svg {
        width: 16px;
        height: 16px;
    }
    
    .btn-new-field {
        padding: 6px 12px;
        font-size: 0.8125rem;
    }
    
    /* Journey form responsive */
    .journey-form-card,
    .share-modal,
    .approval-card,
    .step-card {
        max-width: 100%;
    }
    
    .stepper-item span {
        display: none;
    }
    
    .stepper {
        padding: 16px 12px;
    }
    
    .share-content {
        padding: 20px 16px;
    }
    
    .qr-code {
        width: 120px;
        height: 120px;
    }
    
    .approval-list {
        padding: 8px;
    }
    
    .approval-item {
        padding: 10px;
        gap: 8px;
    }
    
    .approval-filename {
        max-width: 100px;
    }
    
    /* Hero improvements */
    .hero-title {
        font-size: 1.75rem;
        padding: 0 8px;
        color: var(--text-primary);
    }
    
    .hero-title .word-rotate {
        color: var(--text-primary);
    }
    
    .word {
        color: var(--text-primary) !important;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    /* Section headers */
    .section-header h2 {
        font-size: 1.5rem;
        padding: 0 8px;
    }
    
    .section-header p {
        font-size: 1rem;
        padding: 0 16px;
    }
    
    /* CTA card improvements */
    .cta-card {
        padding: 40px 24px;
    }
    
    .cta-card h2 {
        font-size: 1.5rem;
    }
    
    /* Dashboard app responsive - Mobile Style (mobile-only class) */
    .dashboard-app.mobile-only {
        flex-direction: column;
        max-width: 100%;
        border-radius: var(--radius-md);
        position: relative;
        padding-bottom: 70px; /* Espaço para bottom nav */
    }
    
    .dashboard-app.mobile-only .dash-content {
        padding: 16px;
        background: #f1f5f9;
        flex: 1;
    }
    
    .dashboard-app.mobile-only .dash-cards {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .dashboard-app.mobile-only .dash-card {
        padding: 16px;
        border-radius: 12px;
    }
    
    .dashboard-app.mobile-only .card-header {
        margin-bottom: 8px;
    }
    
    .dashboard-app.mobile-only .card-icon {
        width: 40px;
        height: 40px;
    }
    
    .dashboard-app.mobile-only .card-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .dashboard-app.mobile-only .card-value {
        font-size: 1.75rem;
        margin-bottom: 4px;
    }
    
    .dashboard-app.mobile-only .card-info {
        font-size: 0.75rem;
        margin-bottom: 16px;
    }
    
    .dashboard-app.mobile-only .card-footer {
        padding-top: 12px;
        font-size: 0.8125rem;
    }
    
    /* Bottom Navigation - Mobile */
    .dash-bottom-nav {
        display: flex;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 64px;
        background: white;
        border-top: 1px solid var(--border-color);
        justify-content: space-between;
        align-items: center;
        padding: 8px 24px;
        z-index: 100;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.05);
        box-sizing: border-box;
    }
    
    .dash-bottom-nav a {
        text-decoration: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 60px;
        flex: 1;
    }
    
    .bottom-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4px;
        font-size: 0.625rem;
        color: var(--text-muted);
        height: 100%;
    }
    
    .bottom-nav-item span {
        line-height: 1;
        white-space: nowrap;
    }
    
    .bottom-nav-item.active {
        color: #218BA1;
    }
    
    .nav-icon-wrap {
        width: 20px;
        height: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .bottom-nav-item .nav-avatar {
        width: 24px;
        height: 24px;
        min-width: 24px;
        min-height: 24px;
        background: #218BA1;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.6875rem;
        font-weight: 600;
        flex-shrink: 0;
    }
    
    .hero {
        padding: 90px 0 40px;
        min-height: auto;
    }
    
    .navbar .container {
        justify-content: center;
        position: relative;
    }
    
    .navbar .logo {
        height: 28px;
    }
    
    .navbar .logo img {
        height: 28px !important;
    }
    
    .hero-visual {
        padding: 0 8px;
    }
    
    .dashboard-app {
        width: 100%;
        max-width: 100%;
    }
    
    .hero-cta {
        width: 100%;
        padding: 0 16px;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    
    .sectors-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .feature-card {
        padding: 24px;
    }
    
    .feature-card h3 {
        font-size: 1.125rem;
    }
    
    .feature-card p {
        font-size: 0.875rem;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    
    .feature-icon svg {
        width: 20px;
        height: 20px;
    }
    
    /* Early stage card mobile */
    .early-stage-card {
        padding: 32px 20px;
        margin: 0 8px;
    }
    
    .early-stage-title {
        font-size: 1.375rem;
    }
    
    .early-stage-desc {
        font-size: 0.9375rem;
    }
    
    .early-stage-benefits {
        padding: 16px;
        gap: 12px;
    }
    
    .benefit-item {
        font-size: 0.875rem;
    }
    
    /* Sector cards mobile */
    .sectors-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .sector-card {
        padding: 24px;
    }
    
    .sector-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }
    
    .sector-card h3 {
        font-size: 1.125rem;
    }
    
    .sector-card p {
        font-size: 0.875rem;
    }
    
    /* Social proof mobile */
    .social-proof {
        padding: 40px 0;
    }
    
    .logo-cloud {
        gap: 20px;
        padding: 0 16px;
    }
    
    .logo-item {
        font-size: 0.875rem;
    }
    
    .step {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 16px;
    }
    
    .step-number {
        margin: 0 auto;
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }
    
    .step-content h3 {
        font-size: 1.125rem;
        margin-bottom: 8px;
    }
    
    .step-content p {
        font-size: 0.875rem;
        max-width: 100%;
        padding: 0 8px;
    }
    
    .step-visual {
        display: flex;
        width: 100%;
        max-width: 100%;
        margin-top: 16px;
        padding: 0 8px;
    }
    
    .journey-form-card,
    .share-modal,
    .approval-card {
        max-width: 100%;
        width: 100%;
    }
    
    .cta-card h2 {
        font-size: 1.5rem;
    }
    
    .cta-card p {
        font-size: 0.9375rem;
    }
    
    .footer {
        padding: 40px 0 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 32px;
    }
    
    .footer-brand {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-brand .logo {
        margin: 0 auto 12px;
    }
    
    .footer-brand .logo img {
        height: 32px !important;
        margin: 0 auto;
    }
    
    .footer-brand p {
        max-width: 100%;
        margin: 0 auto 16px;
        font-size: 0.875rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 8px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links h4 {
        margin-bottom: 12px;
        font-size: 0.8125rem;
    }
    
    .footer-links li {
        margin-bottom: 8px;
    }
    
    .footer-links a {
        font-size: 0.875rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        padding-top: 20px;
    }
    
    .footer-bottom p {
        font-size: 0.75rem;
    }
    
    .lgpd-badge {
        font-size: 0.75rem;
    }
    
    /* Template tags mobile */
    .template-tags {
        justify-content: center;
        gap: 6px;
    }
    
    .tag {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}

/* SVG Gradient Definition */
svg defs {
    display: none;
}
