/* ============================================================
   ZENT I.A. — Design System
   Minimalista, moderno e focado em conversão
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #dbeafe;

    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --bg-dark: #0f172a;

    --surface: #ffffff;
    --surface-raised: #f8fafc;

    --text: #0f172a;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-inverse: #ffffff;

    --border: #e2e8f0;
    --border-strong: #cbd5e1;

    --success: #10b981;
    --warning: #f59e0b;
    --danger: #ef4444;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 16px 40px rgba(0, 0, 0, 0.12);

    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --container: 1200px;
    --header-h: 80px;
    --section-gap: 6rem;

    --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

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

h1,
h2,
h3,
h4,
h5 {
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
}

h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

h4 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 2rem;
}

.flex {
    display: flex;
}

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

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

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

.full-width {
    width: 100%;
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    cursor: pointer;
}

.btn-lg {
    padding: 1rem 2.25rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.45);
}

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

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.btn-outline-inverse {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline-inverse:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.7);
}

/* Shine effect for primary hero CTA */
.shine-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -75%;
    width: 50%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    animation: shine 3.5s infinite;
}

@keyframes shine {
    0% {
        left: -75%;
    }

    60%,
    100% {
        left: 125%;
    }
}

/* Ripple */
.btn,
.plan-cta {
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transform: scale(0);
    animation: ripple-anim 0.55s ease-out;
    pointer-events: none;
}

@keyframes ripple-anim {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================================
   HEADER
   ============================================================ */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    box-shadow: var(--shadow-md);
}

.logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    padding: 0.35rem 0;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 1px;
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.login-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.login-link:hover {
    color: var(--primary);
}

/* User Menu Dropdown */
.user-menu-wrapper {
    position: relative;
}

.user-menu-trigger {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: color var(--transition);
}

.user-menu-trigger:hover {
    color: var(--primary);
}

.user-menu-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    min-width: 180px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition);
    z-index: 1000;
}

.user-menu-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.user-menu-item {
    display: block;
    width: 100%;
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.9rem;
    color: var(--text);
    background: none;
    border: none;
    cursor: pointer;
    transition: background-color var(--transition);
    text-decoration: none;
}

.user-menu-item:hover {
    background-color: var(--bg-alt);
}

.user-menu-logout {
    color: var(--danger);
    border-top: 1px solid var(--border);
}

.user-menu-logout:hover {
    background-color: rgba(239, 68, 68, 0.1);
}

.menu-toggle {
    display: none;
    color: var(--text);
    padding: 0.25rem;
}

/* Mobile nav drawer */
/* Mobile nav — toggled via main.js (.mobile-active class) */
@media (max-width: 768px) {
    .nav-links.mobile-active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 1.5rem 2rem;
        z-index: 999;
        gap: 1.25rem;
        box-shadow: var(--shadow-lg);
    }

    .nav-links.mobile-active li a {
        font-size: 1rem;
        font-weight: 500;
        color: var(--text-muted);
        padding: 0.5rem 0;
        display: block;
        border-bottom: 1px solid var(--border);
    }

    .nav-links.mobile-active li:last-child a {
        border-bottom: none;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    background: linear-gradient(165deg, #f0f6ff 0%, #ffffff 40%, #f8fafc 100%);
    overflow: hidden;
}

/* Subtle background decoration */
.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero-text-center {
    position: relative;
    z-index: 10;
    text-align: center;
    padding-top: calc(var(--header-h) + 5rem);
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-bottom: 2rem;
    max-width: 760px;
    margin: 0 auto;
    animation: fade-up 0.8s ease-out both;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.35rem 0.9rem;
    border-radius: var(--radius-full);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 1.25rem;
}

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

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 1.25rem 2rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    display: inline-flex;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.hero-stat strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text);
}

.hero-stat span {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

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

/* ============================================================
   HORIZONTAL CAROUSEL
   ============================================================ */
.cards-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    min-height: 300px;
    max-height: 400px;
    padding: 1.5rem 2rem 2rem;
}

.carousel-nav {
    background: var(--bg);
    border: 1.5px solid var(--border);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    color: var(--text);
    z-index: 100;
    flex-shrink: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.carousel-prev {
    left: 8px;
}

.carousel-next {
    right: 8px;
}

.carousel-nav:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #ffffff;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.4);
}

.carousel-nav svg {
    pointer-events: none;
}

.cards-stack {
    width: 100%;
    overflow: hidden;
    padding: 0 50px;
}

.cards-track {
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.photo-card {
    flex-shrink: 0;
    width: 200px;
    height: 270px;
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    overflow: hidden;
    position: relative;
    display: block;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    border: 1px solid var(--border);
}

.photo-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.18);
}

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

.card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 0.85rem 0.85rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 100%);
    border-radius: 0 0 18px 18px;
}

.card-info h3 {
    font-size: 0.82rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-align: center;
    white-space: nowrap;
}

/* ============================================================
   TRUST SECTION
   ============================================================ */
.trust-section {
    padding: 3.5rem 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    text-align: center;
}

.trust-label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
    margin-bottom: 1.75rem;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    flex-wrap: wrap;
}

.logo-item {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.02em;
    transition: var(--transition);
}

.logo-item:hover {
    color: var(--text-muted);
}

/* ============================================================
   PROBLEM SECTION
   ============================================================ */
.problem-section {
    padding: var(--section-gap) 0;
    background: var(--bg);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.problem-header .section-tag {
    margin-bottom: 1rem;
}

.problem-header .section-title {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.problem-header .section-desc {
    margin: 0 0 2rem;
    max-width: 100%;
}

.problem-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.problem-item:hover {
    border-color: var(--primary);
    background: var(--primary-light);
    box-shadow: var(--shadow-sm);
}

.problem-icon {
    width: 44px;
    height: 44px;
    background: var(--border);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: var(--transition);
}

.problem-item:hover .problem-icon {
    background: var(--primary);
    color: #ffffff;
}

.problem-content h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}

.problem-content p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================================
   COMPARISON SECTION
   ============================================================ */
.comparison-section {
    padding: var(--section-gap) 0;
    background: var(--bg-alt);
}

.comparison-table-wrapper {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-top: 1rem;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    padding: 1.25rem 1.75rem;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    background: var(--bg-alt);
    border-bottom: 2px solid var(--border);
}

.comparison-table th.col-good {
    background: var(--primary-light);
    color: var(--primary);
}

.comparison-table th.col-bad {
    color: var(--text-light);
}

.comparison-table td {
    padding: 1.1rem 1.75rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.comparison-table td:first-child {
    font-weight: 600;
    color: var(--text);
}

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

.comparison-table tr:hover td {
    background: var(--bg-alt);
}

.col-bad {
    color: var(--text-light) !important;
}

.col-good {
    background: rgba(37, 99, 235, 0.04);
    color: var(--primary-dark) !important;
    font-weight: 600 !important;
}

.roi-banner {
    margin-top: 2.5rem;
    padding: 1.75rem 2.5rem;
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    text-align: center;
}

.roi-banner p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.roi-banner p strong {
    color: #ffffff;
    font-weight: 700;
}

/* ============================================================
   FEATURES SECTION
   ============================================================ */
.features-section {
    padding: var(--section-gap) 0;
    background: var(--bg);
}

.feature-tabs {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    padding: 0.35rem;
    /* Centered via parent text-center or flex justify-center */
    text-align: left;
}

.tab-btn {
    padding: 0.65rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: var(--transition);
    background: transparent;
}

.tab-btn:hover {
    color: var(--text);
    background: var(--bg);
}

.tab-btn.active {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.35);
}

.feature-tabs-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.feature-panel {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    box-shadow: var(--shadow-sm);
}

.feature-panel.active {
    display: grid;
    animation: panel-in 0.4s ease both;
}

@keyframes panel-in {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.feature-text h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.85rem;
}

.feature-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.75rem;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.feature-list li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-image {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    min-height: 320px;
    display: flex;
    align-items: stretch;
    justify-content: stretch;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

/* Dashboard mockup */
.ui-dashboard {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    font-size: 0.8rem;
}

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

.dash-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text);
}

.dash-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    background: var(--bg-alt);
    padding: 0.25rem 0.6rem;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.kpi-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.kpi-card.kpi-highlight {
    background: var(--primary-light);
    border-color: rgba(37, 99, 235, 0.2);
}

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

.kpi-value {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
}

.kpi-trend {
    font-size: 0.7rem;
    color: var(--success);
    font-weight: 600;
}

.kpi-bar {
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    overflow: hidden;
    margin-top: 0.25rem;
}

.kpi-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
}

.dash-funnel {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.85rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}

.funnel-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.funnel-stage {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.funnel-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    width: 80px;
    flex-shrink: 0;
}

.funnel-bar {
    flex: 1;
    height: 20px;
    background: var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.funnel-fill {
    height: 100%;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    padding: 0 0.5rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
}

.funnel-value {
    font-size: 0.7rem;
    color: var(--text-muted);
    width: 60px;
    text-align: right;
    flex-shrink: 0;
}

/* Feature image placeholders */
.ui-placeholder {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
}

.ui-header-bar {
    height: 36px;
    background: var(--bg-alt);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.ui-kanban {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    flex: 1;
}

.ui-col {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ui-col-header {
    height: 20px;
    background: var(--border);
    border-radius: var(--radius-sm);
}

.ui-card-sm {
    height: 52px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.ui-chart-area {
    flex: 1;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem;
    display: flex;
    align-items: flex-end;
}

.ui-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    width: 100%;
    height: 120px;
}

.chart-bar {
    flex: 1;
    background: var(--primary);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.chart-bar:hover {
    opacity: 1;
}

.alt-layout {
    flex-direction: column;
}

.ui-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    flex: 1;
}

.ui-box-card {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    min-height: 80px;
}

/* CRM Demo UI Styles */
.ui-crm-demo {
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.ui-crm-header {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    gap: 0.75rem;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.ui-crm-contacts,
.ui-crm-pipeline {
    flex: 1;
    height: 16px;
    background: var(--border);
    border-radius: var(--radius-sm);
}

.ui-crm-kanban {
    display: flex;
    gap: 0.75rem;
    flex: 1;
    padding: 0.75rem;
    overflow-x: auto;
}

.ui-crm-col {
    flex: 0 0 auto;
    width: 140px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
}

.ui-crm-col-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
}

.ui-crm-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
}

.ui-crm-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.6rem;
    cursor: grab;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.ui-crm-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.ui-crm-name {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.ui-crm-type {
    font-size: 0.6rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Marketing Demo UI Styles - Modernizado */
.ui-marketing-demo {
    background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(59, 130, 246, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
}

.ui-marketing-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.ui-marketing-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.ui-marketing-period {
    font-size: 0.65rem;
    color: var(--text-muted);
    background: var(--surface);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
}

.ui-marketing-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.8rem;
}

.ui-kpi-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ui-kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.ui-kpi-icon {
    font-size: 1.4rem;
}

.ui-kpi-info {
    flex: 1;
}

.ui-kpi-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}

.ui-kpi-value {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
}

.ui-marketing-graph {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    gap: 0.6rem;
    height: 100px;
    flex: 1;
    background: var(--surface);
    border-radius: var(--radius-sm);
    padding: 0.8rem;
}

.ui-graph-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    flex: 1;
}

.ui-bar-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    order: 3;
}

.ui-bar-container {
    flex: 1;
    width: 100%;
    background: var(--bg-alt);
    border-radius: 3px 3px 0 0;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.ui-bar-fill {
    width: 100%;
    border-radius: 3px 3px 0 0;
    transition: all 0.3s ease;
}

.ui-graph-bar:hover .ui-bar-fill {
    opacity: 0.9;
}

.ui-bar-value {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--text);
    order: 2;
}

.ui-marketing-channels-modern {
    display: flex;
    gap: 0.8rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--border);
}

.ui-channel-badge {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.ui-channel-color {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ui-channel-text {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--text);
    flex: 1;
}

.ui-channel-percent {
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--primary);
}

/* Automation Demo UI Styles - Modernizado */
.ui-automation-demo {
    background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(139, 92, 246, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    height: 100%;
}

.ui-automation-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border);
}

.ui-automation-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
}

.ui-automation-status {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--success);
}

.ui-status-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.ui-workflow-pipeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    padding: 1rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    flex-wrap: wrap;
}

.ui-pipeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    text-align: center;
}

.ui-step-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.ui-step-label {
    flex: 0 0 auto;
}

.ui-step-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
}

.ui-step-desc {
    font-size: 0.6rem;
    color: var(--text-muted);
}

.ui-pipeline-connector {
    display: flex;
    align-items: center;
}

.ui-connector-arrow {
    font-size: 1.4rem;
    color: var(--border);
    font-weight: 300;
}

.ui-automation-features {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.ui-feature-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: var(--surface);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    transition: transform 0.2s, box-shadow 0.2s;
}

.ui-feature-row:hover {
    transform: translateX(2px);
    box-shadow: var(--shadow-sm);
}

.ui-feature-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.ui-feature-content {
    flex: 1;
}

.ui-feature-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.ui-feature-value {
    font-size: 0.65rem;
    color: var(--text-muted);
}

/* ============================================================
   STATS SECTION
   ============================================================ */
.stats-section {
    padding: 5rem 0;
    background: var(--bg-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem 1rem;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    max-width: 140px;
    line-height: 1.4;
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    padding: var(--section-gap) 0;
    background: var(--bg-alt);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

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

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
    padding: var(--section-gap) 0;
    background: var(--bg);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    align-items: start;
}

.pricing-card {
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: var(--transition);
    position: relative;
}

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

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08);
    background: linear-gradient(160deg, var(--primary-light), var(--surface));
}

.badge-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #ffffff;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.3rem 0.9rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.plan-header h3 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.03em;
    line-height: 1;
}

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

.price-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    flex: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.plan-features li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 1px;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.pricing-guarantee svg {
    color: var(--success);
    flex-shrink: 0;
}

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta {
    padding: var(--section-gap) 0;
    background: var(--bg-alt);
    border-top: 1px solid var(--border);
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.cta-text .section-tag {
    margin-bottom: 1rem;
}

.cta-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.cta-text p {
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-benefits li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    font-weight: 500;
}

.cta-benefits li svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* Form */
.lead-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: var(--shadow-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.25rem;
}

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: -0.01em;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.875rem 1rem;
    font-size: 0.95rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg-alt);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    line-height: 1.5;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    background: var(--surface);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input.input-error,
.form-group select.input-error {
    border-color: var(--danger);
}

.form-error {
    font-size: 0.8rem;
    color: var(--danger);
    font-weight: 500;
    display: none;
}

.form-error:not(:empty) {
    display: block;
}

.form-message {
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
}

.form-success {
    background: #ecfdf5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.form-error-msg {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-brand .logo span {
    color: var(--primary-light);
}

.footer-brand p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-col ul li a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition);
}

.social-links a:hover {
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================================
   LGPD CONSENT BANNER (consent.js generated)
   ============================================================ */
.consent-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 720px;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    z-index: 9999;
    box-shadow: var(--shadow-xl);
    animation: slide-up 0.4s ease;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

.consent-content {
    flex: 1;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.5;
}

.consent-content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.consent-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.consent-btn {
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
}

.consent-btn.btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.7);
}

.consent-btn.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
}

/* ============================================================
   RESPONSIVE — TABLET (1024px)
   ============================================================ */
@media (max-width: 1024px) {
    h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .stat-item:nth-child(2n) {
        border-bottom: none;
    }

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

    .testimonials-grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .feature-panel {
        grid-template-columns: 1fr;
        padding: 2.5rem;
    }

    .feature-image {
        min-height: 240px;
    }
}

/* ============================================================
   RESPONSIVE — MOBILE (768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --section-gap: 4rem;
        --header-h: 64px;
    }

    h1,
    .hero-title {
        font-size: 2.25rem;
    }

    h2,
    .section-title {
        font-size: 1.6rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    /* Header */
    .nav-links,
    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    /* Hero */
    .hero-text-center {
        padding-top: calc(var(--header-h) + 3rem);
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 1.25rem;
        padding: 1rem 1.5rem;
    }

    .hero-stat-divider {
        display: none;
    }

    .cards-carousel-wrapper {
        min-height: 220px;
        max-height: 280px;
    }

    .photo-card {
        width: 140px;
        height: 200px;
    }

    /* Trust */
    .logos-grid {
        gap: 2rem;
    }

    /* Problem */
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Comparison */
    .comparison-table-wrapper {
        overflow-x: auto;
    }

    .comparison-table {
        min-width: 540px;
    }

    /* Features */
    .feature-tabs {
        border-radius: var(--radius-lg);
        flex-direction: column;
        width: 100%;
        padding: 0.5rem;
    }

    .tab-btn {
        width: 100%;
        text-align: center;
        border-radius: var(--radius);
    }

    .feature-panel {
        padding: 1.75rem;
    }

    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .stat-item {
        padding: 2rem;
        border-right: 1px solid rgba(255, 255, 255, 0.07);
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .stat-item:nth-child(even) {
        border-right: none;
    }

    .stat-item:nth-child(3),
    .stat-item:nth-child(4) {
        border-bottom: none;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: auto;
        max-width: 100%;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    /* CTA */
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .lead-form {
        padding: 1.75rem;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        grid-column: auto;
    }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (480px)
   ============================================================ */
@media (max-width: 480px) {

    h1,
    .hero-title {
        font-size: 1.9rem;
    }

    .hero-stats {
        width: 100%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .lead-form {
        padding: 1.5rem;
    }
}

/* ============================================================
   CHECKOUT PAGE
   ============================================================ */
.checkout-page {
    background: var(--bg-alt);
    min-height: 100vh;
}

/* Header bar da página de checkout */
.checkout-header-bar {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.checkout-header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.checkout-header-secure {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Layout principal: 2 colunas */
.checkout-main {
    padding: 3rem 1.5rem 5rem;
}

.checkout-layout {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 2rem;
    align-items: start;
}

/* Coluna esquerda: resumo do plano */
.checkout-plan-aside {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-plan-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.checkout-plan-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-light);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.75rem;
}

.checkout-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem;
}

.checkout-plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.25rem;
}

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

.checkout-plan-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin: 0 0 1.25rem;
}

.checkout-plan-features {
    list-style: none;
    padding: 0;
    margin: 1.25rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.checkout-plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.checkout-plan-features li svg {
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}

.checkout-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    margin-top: 0.5rem;
}

.checkout-guarantee svg {
    color: var(--primary);
    flex-shrink: 0;
}

.checkout-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.15s;
}

.checkout-back-link:hover {
    color: var(--primary);
}

.checkout-form-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
}

.checkout-form-card .form-group {
    margin-bottom: 1.25rem;
}

.checkout-form-card .form-group:last-of-type {
    margin-bottom: 1.75rem;
}

.checkout-form-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.5rem;
    letter-spacing: -0.02em;
}

.checkout-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0 0 2rem;
    line-height: 1.5;
}

.checkout-security-note {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.875rem;
    justify-content: center;
}

.checkout-user-info {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    color: var(--text-secondary);
    background: rgba(37, 99, 235, .06);
    border: 1px solid rgba(37, 99, 235, .15);
    border-radius: 8px;
    padding: 0.5rem 0.75rem;
    margin-bottom: 1.25rem;
}

/* Responsivo: tablet e mobile */
@media (max-width: 820px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }

    .checkout-plan-aside {
        order: 2;
    }

    .checkout-form-section {
        order: 1;
    }

    .checkout-plan-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .checkout-main {
        padding: 1.5rem 1rem 4rem;
    }

    .checkout-form-card {
        padding: 1.5rem;
    }

    .checkout-plan-price {
        font-size: 2rem;
    }
}

/* ============================================================
   CHECKOUT MODAL
   ============================================================ */
.checkout-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9000;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.checkout-modal.is-open {
    display: flex;
}

.checkout-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
}

.checkout-modal-panel {
    position: relative;
    background: var(--bg);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    width: 100%;
    max-width: 460px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2rem;
    animation: modalSlideIn 0.25s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-16px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.checkout-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    padding: 0.25rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s, background 0.15s;
}

.checkout-modal-close:hover {
    color: var(--text);
    background: var(--bg-alt);
}

.checkout-modal-header {
    margin-bottom: 1.5rem;
    padding-right: 2rem;
}

.checkout-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 0.25rem;
}

.checkout-plan-label {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    margin: 0;
}

/* ============================================================
   PRINT / ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
    border-radius: 4px;
}

/* ============================================================
   AUTH PAGE (auth.html)
   ============================================================ */

.auth-page {
    background: var(--bg-secondary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.auth-card {
    background: var(--bg-primary);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .06);
}

/* Tabs */
.auth-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 1.75rem;
    border-bottom: 2px solid var(--border);
}

.auth-tab {
    flex: 1;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    padding: 0.65rem 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color .15s, border-color .15s;
}

.auth-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.auth-tab:hover:not(.active) {
    color: var(--text-primary);
}

/* Formulário */
.auth-form .form-group {
    margin-bottom: 1.25rem;
}

.auth-form .form-group:last-child {
    margin-bottom: 1.5rem;
}

/* Mensagem de feedback */
.auth-message {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
}

.auth-message--error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.auth-message--success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

/* Texto de alternância login/cadastro */
.auth-switch-text {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 1.25rem;
}

.auth-link-btn {
    background: none;
    border: none;
    color: var(--primary);
    font-size: inherit;
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
}

.auth-link-btn:hover {
    color: var(--primary-dark);
}

/* Divider com "ou" */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-divider span {
    margin: 0 0.75rem;
}

/* Botão Google OAuth */
.btn-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: #fff;
    color: #333;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.btn-google:hover {
    background: #f9f9f9;
    border-color: #d1d5db;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-google:active {
    background: #f0f0f0;
}

/* Tela de verificação de e-mail */
.auth-verify-msg {
    text-align: center;
    padding: 1rem 0;
}

.auth-verify-msg svg {
    margin-bottom: 1rem;
}

.auth-verify-msg h2 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.auth-verify-msg p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* ============================================================
   MEMBERS PAGE (members.html) — Dark Netflix-style theme
   ============================================================ */

/* ---- CSS Variables (dark theme) ---- */
.members-page {
    --m-bg: #0a0a0a;
    --m-surface: #141414;
    --m-surface-2: #1f1f1f;
    --m-surface-3: #2a2a2a;
    --m-accent: #2563eb;
    --m-accent-h: #1d4ed8;
    --m-text: #e5e5e5;
    --m-text-muted: #999;
    --m-border: rgba(255, 255, 255, .08);
    background: var(--m-bg);
    color: var(--m-text);
    min-height: 100vh;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ---- Header ---- */
.m-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    height: 64px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, .9) 0%, rgba(0, 0, 0, .6) 70%, transparent 100%);
    transition: background .3s;
}

.m-header.scrolled {
    background: rgba(10, 10, 10, .96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--m-border);
}

.m-header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.m-logo {
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.03em;
}

.m-logo span {
    color: #2563eb;
}

.m-nav {
    display: flex;
    gap: 1.5rem;
    margin-left: 2rem;
}

.m-nav-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: #ccc;
    text-decoration: none;
    transition: color .15s;
}

.m-nav-link:hover,
.m-nav-link.active {
    color: #fff;
}

.m-header-left {
    display: flex;
    align-items: center;
}

.m-header-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.m-user-menu {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.m-user-avatar {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: #2563eb;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.m-user-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #fff;
}

.m-user-caret {
    color: #aaa;
    transition: transform .2s;
}

.m-user-menu:hover .m-user-caret {
    transform: rotate(180deg);
}

.m-user-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 180px;
    background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 0.4rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .5);
}

.m-user-menu:hover .m-user-dropdown {
    display: block;
}

.m-dropdown-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
    color: #e5e5e5;
    text-decoration: none;
    border-radius: 7px;
    border: none;
    background: none;
    cursor: pointer;
    transition: background .15s;
    font-family: inherit;
}

.m-dropdown-item:hover {
    background: #2a2a2a;
}

.m-dropdown-item--danger {
    color: #f87171;
}

.m-dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, .08);
    margin: 0.3rem 0;
}

/* ---- Hero ---- */
.m-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 64px 4rem 4rem;
    overflow: hidden;
}

.m-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1b4b 0%, #0a0a0a 60%),
        radial-gradient(ellipse at 70% 50%, rgba(37, 99, 235, .15) 0%, transparent 60%);
}

.m-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, #0a0a0a 100%);
}

.m-hero-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
}

.m-hero-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 700;
    color: #2563eb;
    background: rgba(37, 99, 235, .15);
    border: 1px solid rgba(37, 99, 235, .3);
    padding: 0.3rem 0.75rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.m-hero-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.m-hero-sub {
    font-size: 1rem;
    color: #bbb;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 480px;
}

.m-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* ---- Buttons ---- */
.m-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all .15s;
    font-family: inherit;
}

.m-btn--primary {
    background: #2563eb;
    color: #fff;
}

.m-btn--primary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.m-btn--primary:disabled {
    background: #cbd5e1;
    color: #94a3b8;
    cursor: not-allowed;
    opacity: 0.6;
}

.m-btn--primary:disabled:hover {
    background: #cbd5e1;
    transform: none;
}

.m-btn--ghost {
    background: rgba(255, 255, 255, .1);
    color: #fff;
    backdrop-filter: blur(8px);
}

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

.m-btn--save {
    background: #2563eb;
    color: #fff;
    font-size: 0.85rem;
    padding: 0.6rem 1.25rem;
}

.m-btn--save:hover {
    background: #1d4ed8;
}

.m-btn--outline-sm {
    border: 1px solid rgba(255, 255, 255, .08);
    color: #999;
    font-size: 0.82rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    transition: border-color .15s, color .15s;
    display: inline-block;
    margin-top: 1rem;
}

.m-btn--outline-sm:hover {
    border-color: #555;
    color: #fff;
}

/* ---- Main content ---- */
.m-main {
    padding: 80px 4rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.m-row {
    margin-bottom: 3rem;
}

.m-row-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}

/* ---- Feature cards ---- */
.m-cards-track {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.m-feature-card {
    flex: 1;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 1rem;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 1.25rem;
    text-decoration: none;
    color: #e5e5e5;
    transition: background .2s, border-color .2s, transform .2s;
}

.m-feature-card:hover {
    background: #1f1f1f;
    border-color: rgba(255, 255, 255, .15);
    transform: translateY(-2px);
}

.m-feature-card-thumb {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.m-feature-card--platform .m-feature-card-thumb {
    background: rgba(37, 99, 235, .15);
    color: #60a5fa;
}

.m-feature-card--whatsapp .m-feature-card-thumb {
    background: rgba(34, 197, 94, .12);
    color: #4ade80;
}

.m-feature-card--email .m-feature-card-thumb {
    background: rgba(168, 85, 247, .12);
    color: #c084fc;
}

.m-feature-card-body {
    flex: 1;
}

.m-feature-card-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #999;
    margin-bottom: 0.2rem;
}

.m-feature-card-name {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.2rem;
}

.m-feature-card-desc {
    font-size: 0.78rem;
    color: #999;
}

.m-feature-card-arrow {
    font-size: 1.1rem;
    color: #999;
    transition: color .15s, transform .15s;
}

.m-feature-card:hover .m-feature-card-arrow {
    color: #fff;
    transform: translateX(3px);
}

/* ---- Support cards ---- */
.m-support-card {
    flex: 1;
    min-width: 200px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 1.5rem;
}

.m-support-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.m-support-icon--blue {
    background: rgba(37, 99, 235, .15);
    color: #60a5fa;
}

.m-support-icon--green {
    background: rgba(34, 197, 94, .12);
    color: #4ade80;
}

.m-support-icon--purple {
    background: rgba(168, 85, 247, .12);
    color: #c084fc;
}

.m-support-icon--orange {
    background: rgba(251, 146, 60, .12);
    color: #fb923c;
}

.m-support-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.m-support-card p {
    font-size: 0.82rem;
    color: #999;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.m-support-link {
    font-size: 0.82rem;
    font-weight: 600;
    color: #2563eb;
    text-decoration: none;
    transition: color .15s;
}

.m-support-link:hover {
    color: #60a5fa;
}

/* ---- Video cards ---- */
.m-video-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: #333 transparent;
}

.m-video-track::-webkit-scrollbar {
    height: 4px;
}

.m-video-track::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

.m-video-card {
    flex-shrink: 0;
    width: 260px;
    background: #141414;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: transform .2s, border-color .2s;
}

.m-video-card:hover {
    transform: scale(1.03);
    border-color: rgba(255, 255, 255, .2);
}

.m-video-thumb {
    position: relative;
    height: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.m-video-thumb--1 {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
}

.m-video-thumb--2 {
    background: linear-gradient(135deg, #14532d, #16a34a);
}

.m-video-thumb--3 {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.m-video-thumb--4 {
    background: linear-gradient(135deg, #b45309, #d97706);
}

.m-video-thumb--5 {
    background: linear-gradient(135deg, #be123c, #e11d48);
}

.m-video-thumb--6 {
    background: linear-gradient(135deg, #0e7490, #0891b2);
}

.m-play-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .15s, transform .15s;
}

.m-video-card:hover .m-play-btn {
    background: rgba(255, 255, 255, .3);
    transform: scale(1.1);
}

.m-video-duration {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    color: #fff;
    background: rgba(0, 0, 0, .6);
    padding: 0.15rem 0.45rem;
    border-radius: 4px;
}

.m-video-info {
    padding: 1rem;
}

.m-video-ep {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .06em;
    color: #999;
    margin-bottom: 0.3rem;
}

.m-video-info h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.35rem;
    line-height: 1.3;
}

.m-video-info p {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.4;
}

/* ---- Account cards ---- */
.m-account-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.m-account-card {
    background: #141414;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 1.5rem;
}

.m-account-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.m-account-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(37, 99, 235, .15);
    color: #60a5fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.m-account-card-header h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
}

.m-form-group {
    margin-bottom: 1rem;
}

.m-form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #999;
    margin-bottom: 0.4rem;
}

.m-form-group input {
    width: 100%;
    background: #1f1f1f;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    font-size: 0.88rem;
    color: #e5e5e5;
    outline: none;
    transition: border-color .15s;
    box-sizing: border-box;
    font-family: inherit;
}

.m-form-group input:focus {
    border-color: #2563eb;
}

.m-form-group input[readonly] {
    opacity: .5;
    cursor: not-allowed;
}

.m-save-msg {
    display: inline-block;
    font-size: 0.78rem;
    margin-left: 0.75rem;
    color: #4ade80;
}

.m-subscription-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.m-sub-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    font-size: 0.85rem;
}

.m-sub-row span:first-child {
    color: #999;
}

.m-sub-row strong {
    color: #fff;
}

.m-sub-badge {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
}

.m-sub-badge--active {
    background: rgba(34, 197, 94, .15);
    color: #4ade80;
}

/* ---- Footer ---- */
.m-footer {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 2rem 4rem;
    margin-top: 2rem;
}

.m-footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.m-footer-logo {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.m-footer-logo span {
    color: #2563eb;
}

.m-footer-nav {
    display: flex;
    gap: 1.25rem;
    flex: 1;
}

.m-footer-nav a {
    font-size: 0.8rem;
    color: #999;
    text-decoration: none;
    transition: color .15s;
}

.m-footer-nav a:hover {
    color: #fff;
}

.m-footer-copy {
    font-size: 0.78rem;
    color: #555;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .m-hero {
        padding: 0 2rem 3rem;
    }

    .m-main {
        padding: 0 2rem 3rem;
    }

    .m-footer {
        padding: 2rem;
    }

    .m-account-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .m-nav {
        display: none;
    }

    .m-hero {
        min-height: 400px;
        padding: 0 1.5rem 2.5rem;
    }

    .m-main {
        padding: 0 1.25rem 2.5rem;
    }

    .m-footer {
        padding: 1.5rem 1.25rem;
    }

    .m-cards-track {
        flex-direction: column;
    }

    .m-hero-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .auth-card {
        padding: 1.75rem 1.25rem;
    }

    .m-hero {
        padding: 0 1rem 2rem;
    }

    .m-main {
        padding: 0 1rem 2rem;
    }

    .m-header-inner {
        padding: 0 1rem;
    }

    .m-user-name {
        display: none;
    }

    .m-footer-nav {
        display: none;
    }
}

/* ================================================================
   PLAN GATING — Tela de upsell e vídeos bloqueados
   ================================================================ */

/* ── Tela sem plano ── */
.m-no-plan {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
}

.m-no-plan-inner {
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.m-no-plan-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
    border: 1px solid rgba(37, 99, 235, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #60a5fa;
}

.m-no-plan-inner h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.75rem;
}

.m-no-plan-inner>p {
    color: #94a3b8;
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

/* Grid de planos */
.m-no-plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.m-no-plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1.5rem 1.25rem;
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    text-decoration: none;
    color: inherit;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
    text-align: left;
}

.m-no-plan-card:hover {
    border-color: rgba(37, 99, 235, 0.5);
    background: rgba(37, 99, 235, 0.07);
    transform: translateY(-3px);
}

.m-no-plan-card--highlight {
    border-color: rgba(37, 99, 235, 0.5);
    background: rgba(37, 99, 235, 0.08);
}

.m-no-plan-card--highlight:hover {
    border-color: #2563eb;
    background: rgba(37, 99, 235, 0.15);
}

.m-no-plan-card-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #2563eb;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.m-no-plan-card-name {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #60a5fa;
}

.m-no-plan-card-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.m-no-plan-card-price small {
    font-size: 0.8rem;
    font-weight: 400;
    color: #64748b;
    margin-left: 2px;
}

.m-no-plan-card ul {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0.75rem;
    flex: 1;
}

.m-no-plan-card ul li {
    font-size: 0.82rem;
    color: #94a3b8;
    padding: 3px 0;
    padding-left: 1.1em;
    position: relative;
}

.m-no-plan-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 0.75rem;
}

.m-no-plan-card-cta {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #2563eb;
    margin-top: auto;
    transition: color 0.15s;
}

.m-no-plan-card:hover .m-no-plan-card-cta {
    color: #60a5fa;
}

/* ── Vídeos bloqueados ── */
.m-video-locked {
    opacity: 0.55;
    pointer-events: none;
    cursor: default;
}

/* Na aba Início, vídeos bloqueados ficam ocultos (acesso limpo sem cadeados) */
.m-main[data-active-tab="inicio"] .m-video-locked {
    display: none;
}

.m-video-thumb {
    position: relative;
}

.m-video-lock-overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
    color: #94a3b8;
}

.m-video-lock-msg {
    font-size: 0.75rem;
    color: #64748b;
    font-style: italic;
    margin-top: 0.4rem;
    margin-bottom: 0;
}

/* ── Responsive upsell grid ── */
@media (max-width: 900px) {
    .m-no-plan-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .m-no-plan-grid {
        grid-template-columns: 1fr;
    }

    .m-no-plan-inner h2 {
        font-size: 1.5rem;
    }
}

/* ===== QUICK ACCESS SECTION ===== */
.m-quick-access {
    padding: 3rem 2rem;
    background: transparent;
}

.m-quick-access .m-section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #ffffff;
}

.m-quick-access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.m-quick-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    cursor: pointer;
}

.m-quick-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.m-quick-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    flex-shrink: 0;
    color: white;
}

.m-quick-content {
    flex: 1;
}

.m-quick-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.m-quick-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
}

.m-quick-desc {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0;
}

.m-quick-arrow {
    color: #64748b;
    transition: color 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.m-quick-card:hover .m-quick-arrow {
    color: #94a3b8;
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .m-quick-access-grid {
        grid-template-columns: 1fr;
    }

    .m-quick-access .m-section-title {
        font-size: 1.5rem;
    }
}

/* ===== BOOKING SECTION ===== */
.m-booking-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 2rem;
}

.m-booking-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.m-booking-header {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.m-booking-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    color: #3b82f6;
}

.m-booking-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.m-booking-subtitle {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0;
    line-height: 1.5;
}

.m-booking-status {
    min-height: 48px;
    margin-bottom: 1.5rem;
}

.m-booking-status-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 8px;
    font-size: 0.9rem;
    color: #10b981;
}

.m-booking-status-message svg {
    flex-shrink: 0;
}

.m-booking-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.m-booking-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 0.9rem;
    color: #e2e8f0;
}

.m-booking-benefit svg {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .m-booking-section {
        padding: 2rem;
    }

    .m-booking-container {
        grid-template-columns: 1fr;
    }

    .m-booking-title {
        font-size: 1.25rem;
    }

    .m-booking-header {
        margin-bottom: 1.5rem;
    }
}

/* ===== BOOKING MODAL ===== */
.m-booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.m-booking-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.m-booking-modal-content {
    position: relative;
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.m-booking-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.m-booking-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

.m-booking-modal-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    transition: all 0.2s;
}

.m-booking-modal-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.m-booking-modal-body {
    padding: 1.5rem;
}

.m-booking-form-group {
    margin-bottom: 1.5rem;
}

.m-booking-form-label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 0.5rem;
}

.m-booking-form-input {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s;
}

.m-booking-form-input:focus {
    outline: none;
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.m-booking-form-textarea {
    resize: vertical;
    min-height: 80px;
}

.m-booking-form-hint {
    display: block;
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 0.5rem;
}

.m-booking-form-submit {
    width: 100%;
    margin-top: 1rem;
    padding: 0.875rem;
}

/* Calendar styles */
.m-booking-calendar-wrapper {
    margin-bottom: 1rem;
}

.m-booking-calendar-input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.m-booking-calendar-input:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.m-booking-calendar-input:focus {
    outline: none;
    border-color: #2563eb;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Time slots */
.m-booking-time-slots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.m-booking-slot {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.m-booking-slot:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.m-booking-slot.selected {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.m-booking-slot.selected::after {
    content: '✓';
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

/* Flatpickr customization */
.flatpickr-calendar {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    width: 100%;
}

.flatpickr-calendar.open {
    display: inline-block;
}

.flatpickr-innerContainer {
    padding: 0;
}

.flatpickr-month {
    background: transparent;
    padding: 1rem;
    color: #ffffff;
}

.flatpickr-monthDropdown-months {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #ffffff;
}

.flatpickr-prev,
.flatpickr-next {
    color: #2563eb;
}

.flatpickr-prev:hover,
.flatpickr-next:hover {
    color: #1d4ed8;
}

.flatpickr-weekdays {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem 0;
}

.flatpickr-weekday {
    color: #94a3b8;
    font-weight: 500;
}

.flatpickr-days {
    padding: 0.75rem;
}

.flatpickr-day {
    color: #cbd5e1;
    border: 1px solid transparent;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.flatpickr-day:hover {
    background: rgba(37, 99, 235, 0.2);
    border-color: #2563eb;
    color: #ffffff;
}

.flatpickr-day.selected {
    background: #2563eb;
    border-color: #2563eb;
    color: #ffffff;
    box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.2);
}

.flatpickr-day.today {
    border-color: #64748b;
    color: #ffffff;
}

.flatpickr-day.disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #334155;
    opacity: 0.5;
}

/* Modal animations */
.m-booking-modal.open {
    display: flex;
    animation: fade-in 0.3s ease-out;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.m-booking-modal.open .m-booking-modal-content {
    animation: slide-up 0.3s ease-out;
}

@keyframes slide-up {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ===== TOOL SECTIONS (Categorias de Ferramentas) ===== */
.m-tool-section {
    margin-bottom: 3rem;
    padding: 1.5rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.2s;
}

.m-tool-section:hover {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Bloqueado por plan */
.m-tool-section.m-tool-locked {
    position: relative;
    opacity: 0.5;
    pointer-events: none;
}

.m-tool-section.m-tool-locked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(2, 6, 23, 0.3);
    backdrop-filter: blur(2px);
    border-radius: 12px;
    z-index: 10;
}

.m-tool-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.m-tool-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 10px;
    color: #3b82f6;
}

.m-tool-content {
    flex: 1;
}

.m-tool-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem 0;
}

.m-tool-desc {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0;
}

.m-tool-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #60a5fa;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.m-row-subtitle {
    font-size: 0.95rem;
    color: #cbd5e1;
    margin: 0.5rem 0 2rem 0;
    text-align: center;
}

/* ===== ГРАДИЕНТЫ ДЛЯ КАЖДОЙ КАТЕГОРИИ ===== */

/* CRM Gradients */
.m-video-thumb--crm-1 {
    background: linear-gradient(135deg, #1e3a8a, #1d4ed8);
}

.m-video-thumb--crm-2 {
    background: linear-gradient(135deg, #1e40af, #2563eb);
}

/* Omnichannel Gradients */
.m-video-thumb--omni-1 {
    background: linear-gradient(135deg, #7c3aed, #9333ea);
}

.m-video-thumb--omni-2 {
    background: linear-gradient(135deg, #8b5cf6, #a855f7);
}

/* Agenda Gradients */
.m-video-thumb--agenda-1 {
    background: linear-gradient(135deg, #b45309, #d97706);
}

.m-video-thumb--agenda-2 {
    background: linear-gradient(135deg, #c2410c, #ea580c);
}

/* Leads Gradients */
.m-video-thumb--leads-1 {
    background: linear-gradient(135deg, #14532d, #16a34a);
}

.m-video-thumb--leads-2 {
    background: linear-gradient(135deg, #166534, #22c55e);
}

/* Análise Gradients */
.m-video-thumb--analise-1 {
    background: linear-gradient(135deg, #7c2d12, #ea580c);
}

.m-video-thumb--analise-2 {
    background: linear-gradient(135deg, #92400e, #f59e0b);
}

/* Integração Gradients */
.m-video-thumb--integracao-1 {
    background: linear-gradient(135deg, #0c4a6e, #0369a1);
}

.m-video-thumb--integracao-2 {
    background: linear-gradient(135deg, #075985, #0284c7);
}

/* IA Gradients */
.m-video-thumb--ia-1 {
    background: linear-gradient(135deg, #be123c, #e11d48);
}

.m-video-thumb--ia-2 {
    background: linear-gradient(135deg, #be123c, #f43f5e);
}

/* Suporte Gradients */
.m-video-thumb--suporte-1 {
    background: linear-gradient(135deg, #0e7490, #0891b2);
}

.m-video-thumb--suporte-2 {
    background: linear-gradient(135deg, #155e75, #06b6d4);
}

@media (max-width: 768px) {
    .m-tool-section {
        margin-bottom: 2rem;
        padding: 1rem;
    }

    .m-tool-header {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .m-tool-icon {
        width: 40px;
        height: 40px;
    }

    .m-tool-title {
        font-size: 1rem;
    }

    .m-tool-badge {
        order: 3;
        flex-basis: 100%;
    }
}

/* ===== ONBOARDING PROGRESS SECTION ===== */
.m-onboarding-progress {
    border-top: 2px solid rgba(59, 130, 246, 0.3);
    padding-top: 3rem !important;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(59, 130, 246, 0.02));
}

.m-progress-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.m-progress-subtitle {
    color: #cbd5e1;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Progress Card */
.m-progress-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.m-progress-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.m-progress-info h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0;
}

.m-progress-percent {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3b82f6;
}

.m-progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.m-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 100px;
    transition: width 0.3s ease;
}

.m-progress-message {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0;
}

/* Checklist Card */
.m-checklist-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.m-checklist-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.5rem 0;
}

.m-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.m-checklist-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.2s;
}

.m-checklist-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.m-checklist-item.completed {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.m-checklist-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.m-checklist-item.completed .m-checklist-icon {
    background: rgba(16, 185, 129, 0.2);
}

.m-checklist-item.pending .m-checklist-icon {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
}

.m-checklist-text {
    flex: 1;
    font-size: 0.95rem;
    color: #e2e8f0;
}

.m-checklist-item.completed .m-checklist-text {
    color: #cbd5e1;
    text-decoration: line-through;
    opacity: 0.7;
}

/* Next Steps Section */
.m-next-steps-section {
    margin-bottom: 2rem;
}

.m-next-steps-section h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 1.5rem 0;
}

.m-next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.m-step-card {
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.2s;
}

.m-step-card:hover {
    background: rgba(15, 23, 42, 0.7);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.m-step-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
}

.m-step-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.m-step-card p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.m-step-card .m-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 0.9rem;
}

/* Onboarding Support */
.m-onboarding-support {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(99, 102, 241, 0.05));
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.m-support-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.m-onboarding-support h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.m-onboarding-support p {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0;
}

.m-onboarding-support .m-btn {
    flex-shrink: 0;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .m-onboarding-progress {
        padding-top: 2rem !important;
    }

    .m-progress-card,
    .m-checklist-card {
        padding: 1.5rem;
    }

    .m-progress-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }

    .m-next-steps-grid {
        grid-template-columns: 1fr;
    }

    .m-onboarding-support {
        flex-direction: column;
        text-align: center;
    }

    .m-onboarding-support .m-btn {
        width: 100%;
    }
}

/* ============================================================
   NOVO: Acesso Rápido — Design Moderno
   ============================================================ */
.m-quick-access-grid-new {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.m-quick-access-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: 1rem;
    transition: var(--transition);
    cursor: pointer;
}

.m-quick-access-card:hover {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(148, 163, 184, 0.2);
    transform: translateX(4px);
}

.m-quick-access-card-left {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 1;
}

.m-quick-access-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.m-quick-access-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.m-quick-access-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}

.m-quick-access-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.m-quick-access-desc {
    font-size: 0.875rem;
    color: #cbd5e1;
    margin: 0;
}

.m-quick-access-arrow {
    color: #64748b;
    transition: var(--transition);
    flex-shrink: 0;
}

.m-quick-access-card:hover .m-quick-access-arrow {
    color: #94a3b8;
    transform: translateX(2px);
}

@media (max-width: 768px) {
    .m-quick-access-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .m-quick-access-card {
        padding: 1.25rem;
    }

    .m-quick-access-icon {
        width: 48px;
        height: 48px;
    }

    .m-quick-access-title {
        font-size: 1rem;
    }

    .m-quick-access-desc {
        font-size: 0.8rem;
    }
}

/* ============================================================
   Header Support Icons
   ============================================================ */
.m-header-support {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-right: 1.5rem;
}

.m-header-support-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    color: #94a3b8;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.m-header-support-item:hover {
    background: rgba(37, 99, 235, 0.15);
    color: #60a5fa;
    border-color: rgba(37, 99, 235, 0.3);
}

/* ============================================================
   Floating Help Button
   ============================================================ */
.m-floating-help {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    animation: slideInUp 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
               pulse 2.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.m-floating-help:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(37, 99, 235, 0.5);
}

.m-floating-help:active {
    transform: scale(0.95);
}

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

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 99, 235, 0.6);
    }
}

@media (max-width: 768px) {
    .m-floating-help {
        bottom: 1rem;
        right: 1rem;
    }

    .m-floating-help-inner {
        flex-direction: column;
        min-width: 280px;
        align-items: flex-start;
    }

    .m-floating-help-icon {
        align-self: flex-start;
    }

    .m-floating-help-btn {
        width: 100%;
        text-align: center;
    }

    .m-header-support {
        display: none;
    }
}

/* ============================================================
   Tool Sections - Collapsible/Accordion
   ============================================================ */
.m-tool-section {
    position: relative;
}

.m-tool-header {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: 12px;
    transition: var(--transition);
    user-select: none;
}

.m-tool-header::after {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-left: auto;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%2394a3b8" stroke-width="2"><polyline points="6 9 12 15 18 9"></polyline></svg>') no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.m-tool-header:hover {
    background: rgba(30, 41, 59, 0.6);
    border-color: rgba(148, 163, 184, 0.25);
}

.m-tool-section.collapsed .m-tool-header::after {
    transform: rotate(-90deg);
}

.m-tool-section.collapsed .m-video-track {
    display: none;
}

.m-video-track {
    margin-top: 1rem;
    transition: all 0.3s ease;
}