.page {
    min-height: 100vh;
}

.hero {
    display: grid;
    grid-template-columns: minmax(420px, .9fr) minmax(520px, 1.1fr);
    gap: 54px;
    padding: 58px 7vw 135px;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    right: -160px;
    top: -180px;
    width: 760px;
    height: 760px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,232,255,.26), rgba(24,104,255,.04) 46%, transparent 70%);
    pointer-events: none;
}



.brand-icon img, .logo-icon img, .mascot-brand-icon img {
    width: 120px !important;
    height: 120px !important;
    object-fit: contain !important;
    display: block !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.logo-primary{
    color:#38e8ff;
    font-weight:900;
}

.logo-secondary{
    color:#ffffff;
    font-weight:800;
}

.hero::after {
    content: '';
    position: absolute;
    left: 7vw;
    bottom: 64px;
    width: 720px;
    height: 1px;
    background: linear-gradient(90deg, rgba(56,232,255,.55), transparent);
    opacity: .45;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 999px;
    color: #c9f8ff;
    background: rgba(56, 232, 255, .10);
    border: 1px solid rgba(56, 232, 255, .18);
    font-weight: 800;
    margin-bottom: 24px;
    font-size: 14px;
}

.hero h1 {
    font-size: clamp(44px, 5vw, 78px);
    line-height: .98;
    letter-spacing: -.07em;
    font-weight: 900;
    max-width: 780px;
}

.hero h1 strong {
    background: linear-gradient(90deg, #38e8ff, #23d6c8);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    color: rgba(255,255,255,.78);
    font-size: 20px;
    line-height: 1.58;
    margin-top: 26px;
    max-width: 650px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 36px;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(3, minmax(140px, 1fr));
    gap: 18px;
    margin-top: 38px;
    max-width: 720px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 13px;
    color: rgba(255,255,255,.88);
    border-right: 1px solid rgba(255,255,255,.12);
    padding-right: 12px;
}

.feature:last-child {
    border-right: 0;
}

.feature i {
    color: var(--cyan-400);
    font-size: 25px;
}

.feature strong {
    display: block;
    font-size: 14px;
}

.feature span {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,.64);
    margin-top: 2px;
}

.hero-visual {
    position: relative;
    min-height: 520px;
    z-index: 2;
}

.dashboard-shot-card {
    position: relative;
    border-radius: 30px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 34px 90px rgba(0,0,0,.34);
    padding: 10px;
    transform: rotate(-2deg);
    overflow: hidden;
}

.dashboard-shot-card img {
    display: block;
    width: 100%;
    border-radius: 22px;
    box-shadow: none;
    filter: contrast(1.08) saturate(1.08) brightness(1.02);
}

.shot-badge {
    position: absolute;
    left: 30px;
    top: 30px;
    z-index: 3;
    padding: 10px 14px;
    border-radius: 999px;
    color: #06204a;
    background: rgba(255,255,255,.94);
    box-shadow: 0 16px 40px rgba(8, 39, 95, .18);
    font-weight: 900;
    font-size: 13px;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.shot-fallback {
    display: none;
}

.dashboard-shot-card.image-error img {
    display: none;
}

.dashboard-shot-card.image-error .shot-fallback {
    display: block;
}

.mock-dashboard {
    height: 430px;
    border-radius: 22px;
    overflow: hidden;
    background: #f5f8fd;
    display: grid;
    grid-template-columns: 150px 1fr 230px;
    color: #0f1f3a;
}

.mock-sidebar {
    background: #082555;
}

.mock-content {
    padding: 46px 24px 24px;
}

.mock-title,
.mock-row {
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.mock-title {
    width: 260px;
    height: 30px;
    margin-bottom: 20px;
}

.mock-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.mock-cards span,
.mock-row {
    display: block;
    height: 95px;
    border-radius: 18px;
    background: #fff;
    box-shadow: var(--soft-shadow);
}

.mock-row {
    margin-top: 18px;
}

.mock-row.small {
    width: 70%;
}

.mock-chat {
    margin: 18px 18px 18px 0;
    border-radius: 22px;
    background: #fff;
    padding: 18px;
    box-shadow: var(--shadow);
}

.mock-chat strong {
    display: block;
    padding: 14px;
    margin: -18px -18px 16px;
    border-radius: 22px 22px 0 0;
    color: white;
    background: linear-gradient(135deg, #1868ff, #6d35ff);
}

.mock-chat p,
.mock-chat span {
    border-radius: 14px;
    background: #eef5ff;
    padding: 12px;
    display: block;
    margin-bottom: 10px;
    font-size: 13px;
}

.ai-floating-card {
    position: absolute;
    right: -10px;
    bottom: 10px;
    width: 320px;
    border-radius: 26px;
    padding: 20px;
    background: linear-gradient(135deg, #1868ff, #7438ff);
    color: white;
    box-shadow: 0 28px 70px rgba(24,104,255,.38);
    display: flex;
    align-items: center;
    gap: 16px;
}

.ai-orb {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.25);
    font-size: 25px;
}

.ai-floating-card strong,
.ai-floating-card span {
    display: block;
}

.ai-floating-card strong {
    font-size: 18px;
}

.ai-floating-card span {
    margin-top: 4px;
    color: rgba(255,255,255,.75);
    font-size: 13px;
}

.ai-section {
    width: min(1480px, calc(100% - 7vw));
    margin: -80px auto 70px;
    position: relative;
    z-index: 5;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 26px;
    align-items: stretch;
}

.ai-copy,
.chat-preview,
.dashboard-preview,
.resources-section {
    border-radius: 28px;
    background: white;
    border: 1px solid #e7eef7;
    box-shadow: var(--shadow);
}

.ai-copy {
    padding: 42px;
    background: linear-gradient(135deg, #061a3f, #0b356c 55%, #06214b);
    color: white;
    overflow: hidden;
    position: relative;
}

.ai-copy::after {
    content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    right: -90px;
    bottom: -130px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,232,255,.23), transparent 65%);
}

.ai-copy h2 {
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.02;
    letter-spacing: -.055em;
    max-width: 760px;
}

.ai-copy p {
    margin-top: 18px;
    color: rgba(255,255,255,.76);
    font-size: 18px;
    line-height: 1.6;
    max-width: 820px;
}

.ai-points {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 14px;
    position: relative;
    z-index: 2;
}

.ai-points span {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    font-weight: 800;
    color: rgba(255,255,255,.9);
}

.ai-points i {
    color: var(--cyan-400);
    margin-right: 8px;
}

.chat-preview {
    padding: 22px;
    overflow: hidden;
}

.chat-head {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 18px;
    border-radius: 20px;
    color: white;
    background: linear-gradient(135deg, #1868ff, #6d35ff);
}

.chat-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: rgba(255,255,255,.16);
}

.chat-head strong,
.chat-head span {
    display: block;
}

.chat-head strong {
    font-size: 17px;
}

.chat-head span {
    color: rgba(255,255,255,.75);
    margin-top: 3px;
    font-size: 13px;
}

.chat-hero {
    height: 120px;
    margin: 16px 0;
    border-radius: 20px;
    background:
        radial-gradient(circle at 22% 58%, rgba(255,255,255,.9), transparent 8%),
        radial-gradient(circle at 72% 35%, rgba(56,232,255,.7), transparent 3%),
        radial-gradient(circle at 58% 42%, rgba(255,216,76,.85), transparent 2%),
        linear-gradient(135deg, #052b8c, #2c37ff 55%, #0aa8ff);
    position: relative;
}

.chat-message {
    padding: 15px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.45;
    margin-top: 12px;
}

.chat-message.bot {
    background: #eef5ff;
    color: #172a4a;
}

.chat-message.user {
    background: #1868ff;
    color: white;
    margin-left: 70px;
}

.dashboard-preview {
    width: min(1480px, calc(100% - 7vw));
    margin: 0 auto 70px;
    position: relative;
    z-index: 4;
    padding: 34px;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    align-items: end;
    margin-bottom: 22px;
}

.preview-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
}

.preview-title i {
    color: var(--blue-600);
}

.preview-header p {
    color: var(--slate-500);
    font-weight: 700;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(190px, 1fr));
    gap: 16px;
}

.module-card {
    border-radius: 22px;
    background: white;
    border: 1px solid #e7eef7;
    box-shadow: var(--soft-shadow);
    padding: 24px;
    min-height: 178px;
    transition: .22s ease;
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: .12;
    background: var(--module-color);
}

.module-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(8, 39, 95, .16);
}

.module-card:nth-child(1) { --module-color: linear-gradient(135deg, #22c58b, #38e8ff); }
.module-card:nth-child(2) { --module-color: linear-gradient(135deg, #1868ff, #38e8ff); }
.module-card:nth-child(3) { --module-color: linear-gradient(135deg, #06b6d4, #22d3ee); }
.module-card:nth-child(4) { --module-color: linear-gradient(135deg, #f97316, #facc15); }
.module-card:nth-child(5) { --module-color: linear-gradient(135deg, #ef4444, #fb7185); }
.module-card:nth-child(6) { --module-color: linear-gradient(135deg, #7c3aed, #38e8ff); }

.module-top,
.percent,
.progress {
    position: relative;
    z-index: 2;
}

.module-top {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    align-items: center;
    margin-bottom: 18px;
}

.module-top strong {
    display: block;
    font-size: 18px;
    text-align: right;
}

.module-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--blue-600);
    background: rgba(24,104,255,.1);
    font-size: 22px;
}

.module-card:nth-child(1) .module-icon { color: #0f9f70; background: rgba(34,197,139,.12); }
.module-card:nth-child(2) .module-icon { color: #1868ff; background: rgba(24,104,255,.12); }
.module-card:nth-child(3) .module-icon { color: #0891b2; background: rgba(6,182,212,.12); }
.module-card:nth-child(4) .module-icon { color: #f97316; background: rgba(249,115,22,.12); }
.module-card:nth-child(5) .module-icon { color: #ef4444; background: rgba(239,68,68,.12); }
.module-card:nth-child(6) .module-icon { color: #7c3aed; background: rgba(124,58,237,.12); }

.percent {
    display: block;
    text-align: right;
    font-size: 30px;
    font-weight: 900;
    color: #0f2b56;
}

.progress {
    margin-top: 12px;
    height: 9px;
    border-radius: 999px;
    background: #dde8f5;
    overflow: hidden;
}

.progress span {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--module-color);
}

.resources-section {
    width: min(1480px, calc(100% - 7vw));
    margin: 0 auto 80px;
    padding: 28px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.resource-card {
    border-radius: 24px;
    padding: 28px;
    color: white;
    min-height: 220px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--soft-shadow);
}

.resource-card::after {
    content: '';
    position: absolute;
    right: -54px;
    bottom: -54px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,.12);
}

.resource-card i {
    font-size: 34px;
    margin-bottom: 28px;
}

.resource-card h3 {
    font-size: 22px;
    letter-spacing: -.04em;
    margin-bottom: 10px;
}

.resource-card p {
    color: rgba(255,255,255,.78);
    line-height: 1.55;
}

.resource-card.video { background: linear-gradient(135deg, #1868ff, #0ea5e9); }
.resource-card.ai { background: linear-gradient(135deg, #06204a, #7c3aed); }
.resource-card.chat { background: linear-gradient(135deg, #23d6c8, #1868ff); }
.resource-card.cert { background: linear-gradient(135deg, #f59e0b, #ef4444); }

@media (max-width: 1180px) {
    .hero,
    .ai-section {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        min-height: auto;
    }

    .dashboard-shot-card {
        transform: none;
    }

    .ai-floating-card {
        right: 20px;
        bottom: -30px;
    }

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

@media (max-width: 760px) {
    .hero {
        padding-top: 38px;
        padding-bottom: 110px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-features,
    .modules-grid,
    .ai-points,
    .resources-section {
        grid-template-columns: 1fr;
    }

    .feature {
        border-right: 0;
    }

    .ai-section {
        margin-top: -70px;
    }

    .preview-header {
        display: block;
    }

    .preview-header p {
        margin-top: 8px;
    }

    .mock-dashboard {
        grid-template-columns: 1fr;
        height: auto;
    }

    .mock-sidebar,
    .mock-chat {
        display: none;
    }

    .ai-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 18px;
    }
}

/* =========================================================
   Ajustes finais VSM Academy - CSS consolidado
   ========================================================= */

/* Scroll correto com menu fixo */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 118px;
}

section[id],
#ia,
#gestao,
#modulos,
#recursos,
#acesso-empresa,
#empresa,
.company-access,
.dashboard-preview,
.admin-showcase,
.resources-section {
    scroll-margin-top: 118px;
}

/* Menu fixo ao rolar */
.site-header,
.header,
.topbar,
.navbar {
    position: sticky !important;
    top: 0 !important;
    z-index: 9999 !important;
    min-height: 104px !important;
    overflow: visible !important;
    background: rgba(5, 24, 55, .97) !important;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

/* Marca / logo */
.brand {
    display: flex !important;
    align-items: center !important;
    gap: 4px !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    overflow: visible !important;
}

.brand-icon,
.logo-icon,
.mascot-brand-icon {
    width: 126px !important;
    height: 94px !important;
    min-width: 126px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    background-color: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 !important;
}

.brand-icon::before,
.brand-icon::after,
.logo-icon::before,
.logo-icon::after,
.mascot-brand-icon::before,
.mascot-brand-icon::after {
    display: none !important;
    content: none !important;
}

.brand-icon img,
.logo-icon img,
.mascot-brand-icon img {
    width: 225px !important;
    height: auto !important;
    max-width: none !important;
    object-fit: contain !important;
    display: block !important;
    border: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    transform: translateY(6px) !important;
    filter:
        drop-shadow(0 0 10px rgba(56, 232, 255, .22))
        drop-shadow(0 0 22px rgba(56, 232, 255, .14));
}

.brand-name {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 30px !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    margin-left: 0 !important;
}

.brand .brand-vsm,
.brand-vsm,
.logo-primary {
    color: var(--cyan-400, #38e8ff) !important;
    font-weight: 900 !important;
    text-shadow: 0 0 18px rgba(56, 232, 255, .22);
}

.brand .brand-academy,
.brand-academy,
.logo-secondary {
    color: #ffffff !important;
    font-weight: 900 !important;
}

/* Menu maior e mais clicável */
.site-header nav,
.header nav,
.topbar nav,
.navbar nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-header nav a,
.header nav a,
.topbar nav a,
.navbar nav a {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    font-size: 16px !important;
    font-weight: 900 !important;
    padding: 14px 18px !important;
    border-radius: 16px !important;
    color: rgba(255, 255, 255, .9) !important;
    text-decoration: none !important;
    transition: .2s ease;
}

.site-header nav a:hover,
.header nav a:hover,
.topbar nav a:hover,
.navbar nav a:hover,
.site-header nav a.active,
.header nav a.active,
.topbar nav a.active,
.navbar nav a.active {
    background: rgba(56, 232, 255, .10) !important;
    color: #38e8ff !important;
}

.access-top-btn {
    font-size: 17px !important;
    font-weight: 900 !important;
    padding: 18px 30px !important;
    border-color: rgba(56, 232, 255, .65) !important;
    background: rgba(56, 232, 255, .08) !important;
}

.access-top-btn:hover {
    background: rgba(56, 232, 255, .16) !important;
}

/* Gestão / Administração */
.admin-showcase {
    width: min(1480px, calc(100% - 7vw));
    margin: 0 auto 70px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    align-items: stretch;
    position: relative;
    z-index: 4;
}

.admin-copy,
.admin-screen {
    border-radius: 30px;
    background: white;
    border: 1px solid #e7eef7;
    box-shadow: var(--shadow);
}

.admin-copy {
    padding: 44px;
    background:
        radial-gradient(circle at 88% 12%, rgba(56,232,255,.18), transparent 34%),
        linear-gradient(135deg, #ffffff, #f4fbff);
}

.admin-copy h2 {
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.04;
    letter-spacing: -.06em;
    color: #0f1f3a;
    margin-top: 8px;
}

.admin-copy p {
    margin-top: 18px;
    color: var(--slate-500);
    font-size: 18px;
    line-height: 1.62;
}

.admin-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    gap: 14px;
    margin-top: 28px;
}

.admin-points span {
    padding: 16px;
    border-radius: 18px;
    background: #eef7ff;
    border: 1px solid #dbeafe;
    color: #0f2b56;
    font-weight: 900;
    line-height: 1.35;
}

.admin-points i {
    color: var(--blue-600);
    margin-right: 8px;
}

.admin-screen {
    padding: 18px;
    position: relative;
    overflow: hidden;
    min-height: 420px;
    background:
        radial-gradient(circle at 80% 10%, rgba(24,104,255,.12), transparent 38%),
        #ffffff;
}

.screen-label {
    position: absolute;
    top: 34px;
    left: 34px;
    z-index: 4;
    padding: 11px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    color: #06204a;
    box-shadow: 0 16px 40px rgba(8, 39, 95, .16);
    font-size: 13px;
    font-weight: 900;
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.admin-screen img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    object-position: top left;
    border-radius: 22px;
    display: block;
    box-shadow: 0 22px 54px rgba(8, 39, 95, .16);
}

.admin-fallback {
    display: none;
}

.admin-screen.image-error img {
    display: none;
}

.admin-screen.image-error .admin-fallback {
    display: grid;
}

.admin-fallback {
    min-height: 390px;
    grid-template-columns: 190px 1fr;
    border-radius: 22px;
    overflow: hidden;
    background: #f5f8fd;
    box-shadow: 0 22px 54px rgba(8, 39, 95, .16);
}

.admin-fake-sidebar {
    background: #082555;
}

.admin-fake-content {
    padding: 58px 28px 28px;
}

.admin-fake-title,
.admin-fake-toolbar,
.admin-fake-grid span,
.admin-fake-table span {
    background: white;
    border-radius: 16px;
    box-shadow: var(--soft-shadow);
}

.admin-fake-title {
    width: 320px;
    height: 36px;
    margin-bottom: 18px;
}

.admin-fake-toolbar {
    width: 100%;
    height: 54px;
    margin-bottom: 18px;
}

.admin-fake-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.admin-fake-grid span {
    height: 110px;
}

.admin-fake-table {
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.admin-fake-table span {
    height: 38px;
}

/* Recursos: agora com Gestão */
.resources-section {
    grid-template-columns: repeat(5, 1fr);
}

.resource-card.management {
    background: linear-gradient(135deg, #0f9f70, #23d6c8);
}

/* Acesso à empresa */
.company-access {
    width: min(1480px, calc(100% - 7vw));
    margin: 0 auto 90px;
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 28px;
    position: relative;
    z-index: 4;
}

.access-visual,
.access-card {
    border-radius: 30px;
    border: 1px solid #e7eef7;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.access-visual {
    padding: 46px;
    color: white;
    background:
        radial-gradient(circle at 80% 18%, rgba(56,232,255,.24), transparent 34%),
        linear-gradient(135deg, #061a3f, #0b356c 58%, #06214b);
    position: relative;
}

.access-visual::after {
    content: '';
    position: absolute;
    right: -90px;
    bottom: -120px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(56,232,255,.25), transparent 68%);
}

.access-orb {
    width: 86px;
    height: 86px;
    border-radius: 28px;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.18);
    color: var(--cyan-400);
    font-size: 36px;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(56,232,255,.14);
}

.access-visual h2 {
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.04;
    letter-spacing: -.06em;
    max-width: 620px;
}

.access-visual p {
    margin-top: 18px;
    color: rgba(255,255,255,.76);
    font-size: 18px;
    line-height: 1.62;
    max-width: 660px;
}

.access-card {
    padding: 46px;
    background: white;
}

.access-card h2 {
    font-size: clamp(32px, 3vw, 46px);
    line-height: 1.05;
    letter-spacing: -.055em;
    color: #0f1f3a;
    margin: 8px 0 22px;
}

.company-form {
    display: grid;
    gap: 18px;
}

.access-toggle {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.access-toggle label {
    cursor: pointer;
}

.access-toggle input {
    display: none;
}

.access-toggle span {
    min-height: 56px;
    border-radius: 16px;
    background: #eef5ff;
    color: #0f2b56;
    border: 1px solid #dbe7f5;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: .2s ease;
}

.access-toggle input:checked + span {
    background: linear-gradient(135deg, #35e6ff, #1868ff);
    border-color: transparent;
    color: white;
    box-shadow: 0 16px 34px rgba(24,104,255,.22);
}

.access-input-wrap {
    position: relative;
}

.access-input-wrap i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--blue-600);
}

.access-input-wrap input {
    width: 100%;
    min-height: 62px;
    padding: 0 20px 0 54px;
    border-radius: 18px;
    border: 1px solid #dbe7f5;
    outline: none;
    background: #fbfdff;
    color: #0f1f3a;
    font-size: 16px;
    font-weight: 800;
}

.access-input-wrap input:focus {
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(24,104,255,.08);
}

.access-button {
    min-height: 62px;
    border: 0;
    border-radius: 18px;
    color: white;
    background: linear-gradient(135deg, #35e6ff, #1868ff);
    box-shadow: 0 18px 36px rgba(24, 104, 255, .30);
    font-weight: 900;
    font-size: 16px;
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    transition: .2s ease;
}

.access-button:hover {
    transform: translateY(-2px);
}

.access-error {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: #fff1f2;
    border: 1px solid #fecdd3;
    color: #be123c;
    font-weight: 800;
    display: flex;
    gap: 10px;
    align-items: center;
}

@media (max-width: 1180px) {
    .admin-showcase,
    .company-access {
        grid-template-columns: 1fr;
    }

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

    .brand-icon,
    .logo-icon,
    .mascot-brand-icon {
        width: 104px !important;
        height: 82px !important;
        min-width: 104px !important;
    }

    .brand-icon img,
    .logo-icon img,
    .mascot-brand-icon img {
        width: 126px !important;
    }

    .site-header nav a,
    .header nav a,
    .topbar nav a,
    .navbar nav a {
        padding: 12px 10px !important;
        font-size: 14px !important;
    }
}

@media (max-width: 760px) {
    html {
        scroll-padding-top: 92px;
    }

    section[id],
    #ia,
    #gestao,
    #modulos,
    #recursos,
    #acesso-empresa,
    #empresa,
    .company-access,
    .dashboard-preview,
    .admin-showcase,
    .resources-section {
        scroll-margin-top: 92px;
    }

    .access-top-btn {
        display: none;
    }

    .site-header,
    .header,
    .topbar,
    .navbar {
        min-height: 86px !important;
    }

    .brand-name {
        font-size: 24px !important;
    }

    .brand-icon,
    .logo-icon,
    .mascot-brand-icon {
        width: 82px !important;
        height: 72px !important;
        min-width: 82px !important;
    }

    .brand-icon img,
    .logo-icon img,
    .mascot-brand-icon img {
        width: 102px !important;
        transform: translateY(5px) !important;
    }

    .admin-copy,
    .access-card,
    .access-visual {
        padding: 28px;
    }

    .admin-points,
    .access-toggle {
        grid-template-columns: 1fr;
    }

    .admin-fallback {
        grid-template-columns: 1fr;
    }

    .admin-fake-sidebar {
        display: none;
    }

    .admin-screen img,
    .admin-fallback {
        min-height: 280px;
    }
}


/* =========================================================
   RESPONSIVIDADE FINAL - HOME VSM ACADEMY
   ========================================================= */

/* Tablet / notebooks menores */
@media (max-width: 1100px) {
    .site-header,
    .header,
    .topbar,
    .navbar {
        min-height: auto !important;
        padding: 12px 22px !important;
        flex-wrap: wrap !important;
        gap: 12px !important;
    }

    .brand {
        flex: 1 1 auto !important;
    }

    .site-header nav,
    .header nav,
    .topbar nav,
    .navbar nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 8px;
        padding-bottom: 6px;
        scrollbar-width: none;
    }

    .site-header nav::-webkit-scrollbar,
    .header nav::-webkit-scrollbar,
    .topbar nav::-webkit-scrollbar,
    .navbar nav::-webkit-scrollbar {
        display: none;
    }

    .site-header nav a,
    .header nav a,
    .topbar nav a,
    .navbar nav a {
        min-width: max-content;
        font-size: 14px !important;
        padding: 12px 14px !important;
    }

    .access-top-btn {
        padding: 14px 22px !important;
        font-size: 15px !important;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 42px 24px 100px;
        gap: 34px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        max-width: 860px;
        font-size: clamp(44px, 8vw, 68px);
    }

    .hero p {
        max-width: 760px;
    }

    .hero-visual {
        min-height: auto;
    }

    .dashboard-shot-card {
        transform: none;
        max-width: 920px;
        margin: 0 auto;
    }

    .ai-floating-card {
        right: 20px;
        bottom: -28px;
    }

    .ai-section,
    .admin-showcase,
    .company-access {
        grid-template-columns: 1fr;
    }

    .dashboard-preview,
    .ai-section,
    .admin-showcase,
    .company-access,
    .resources-section {
        width: calc(100% - 48px);
    }

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

    .modules-grid {
        grid-template-columns: repeat(2, minmax(220px, 1fr));
    }

    .admin-screen img,
    .admin-fallback {
        min-height: 320px;
    }
}

/* Celular */
@media (max-width: 720px) {
    html {
        scroll-padding-top: 92px;
    }

    section[id],
    #ia,
    #gestao,
    #modulos,
    #recursos,
    #acesso-empresa,
    #empresa,
    .company-access,
    .dashboard-preview,
    .admin-showcase,
    .resources-section {
        scroll-margin-top: 92px;
    }

    .site-header,
    .header,
    .topbar,
    .navbar {
        position: sticky !important;
        top: 0 !important;
        min-height: auto !important;
        padding: 10px 16px !important;
        z-index: 9999 !important;
        overflow: visible !important;
    }

    .brand {
        gap: 2px !important;
        max-width: calc(100% - 10px);
    }

    .brand-icon,
    .logo-icon,
    .mascot-brand-icon {
        width: 78px !important;
        height: 66px !important;
        min-width: 78px !important;
    }

    .brand-icon img,
    .logo-icon img,
    .mascot-brand-icon img {
        width: 104px !important;
        transform: translateY(5px) !important;
    }

    .brand-name {
        font-size: 23px !important;
        gap: 4px !important;
    }

    .access-top-btn {
        display: none !important;
    }

    .site-header nav,
    .header nav,
    .topbar nav,
    .navbar nav {
        width: 100%;
        display: flex;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 4px 0 8px;
        margin-top: 4px;
    }

    .site-header nav a,
    .header nav a,
    .topbar nav a,
    .navbar nav a {
        font-size: 13px !important;
        padding: 10px 12px !important;
        border-radius: 12px !important;
    }

    .hero {
        padding: 30px 18px 84px;
        gap: 28px;
    }

    .eyebrow,
    .section-kicker {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .hero h1 {
        font-size: clamp(38px, 13vw, 48px);
        letter-spacing: -.06em;
        line-height: 1;
    }

    .hero p {
        font-size: 16px;
        line-height: 1.55;
        margin-top: 20px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-top: 26px;
    }

    .hero-actions a,
    .hero-actions button,
    .primary-btn,
    .secondary-btn {
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 28px;
    }

    .feature {
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.10);
        padding: 0 0 12px;
    }

    .feature:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .dashboard-shot-card {
        padding: 6px;
        border-radius: 22px;
        box-shadow: 0 24px 60px rgba(0,0,0,.28);
    }

    .dashboard-shot-card img {
        border-radius: 16px;
    }

    .shot-badge {
        left: 10px;
        top: 10px;
        font-size: 11px;
        padding: 7px 10px;
    }

    .ai-floating-card {
        position: relative;
        right: auto;
        bottom: auto;
        width: 100%;
        margin-top: 16px;
        border-radius: 22px;
    }

    .dashboard-preview,
    .ai-section,
    .admin-showcase,
    .company-access,
    .resources-section {
        width: calc(100% - 28px);
        margin-left: auto;
        margin-right: auto;
    }

    .ai-section {
        margin-top: -60px;
        gap: 18px;
    }

    .ai-copy,
    .chat-preview,
    .dashboard-preview,
    .admin-copy,
    .admin-screen,
    .access-card,
    .access-visual {
        padding: 22px;
        border-radius: 24px;
    }

    .ai-copy h2,
    .admin-copy h2,
    .access-visual h2,
    .access-card h2 {
        font-size: 32px;
        letter-spacing: -.05em;
    }

    .ai-copy p,
    .admin-copy p,
    .access-visual p {
        font-size: 16px;
    }

    .ai-points,
    .admin-points,
    .access-toggle,
    .modules-grid,
    .resources-section {
        grid-template-columns: 1fr;
    }

    .chat-hero {
        height: 105px;
    }

    .chat-message.user {
        margin-left: 34px;
    }

    .preview-header {
        display: block;
    }

    .preview-title {
        font-size: 20px;
    }

    .module-card {
        min-height: 150px;
        padding: 20px;
    }

    .module-top strong,
    .percent {
        text-align: left;
    }

    .module-top {
        align-items: flex-start;
    }

    .resource-card {
        min-height: auto;
        padding: 24px;
    }

    .admin-screen img,
    .admin-fallback {
        min-height: 250px;
    }

    .admin-fallback {
        grid-template-columns: 1fr;
    }

    .admin-fake-sidebar {
        display: none;
    }

    .access-orb {
        width: 72px;
        height: 72px;
        font-size: 30px;
        margin-bottom: 22px;
    }

    .access-input-wrap input,
    .access-button {
        min-height: 56px;
    }
}

/* Celulares muito pequenos */
@media (max-width: 420px) {
    .brand-name {
        font-size: 20px !important;
    }

    .brand-icon,
    .logo-icon,
    .mascot-brand-icon {
        width: 66px !important;
        height: 58px !important;
        min-width: 66px !important;
    }

    .brand-icon img,
    .logo-icon img,
    .mascot-brand-icon img {
        width: 88px !important;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero {
        padding-left: 14px;
        padding-right: 14px;
    }

    .dashboard-preview,
    .ai-section,
    .admin-showcase,
    .company-access,
    .resources-section {
        width: calc(100% - 20px);
    }
}
/* Correção menu mobile fixo */
@media (max-width: 720px) {
    .site-header,
    .header,
    .topbar,
    .navbar {
        position: sticky !important;
        top: 0 !important;
        z-index: 99999 !important;

        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;

        background: #061a3f !important;
        box-shadow: 0 14px 35px rgba(0,0,0,.35);
        border-bottom: 1px solid rgba(56,232,255,.25);

        padding: 10px 14px 12px !important;
        overflow: hidden !important;
    }

    .brand {
        justify-content: center !important;
        width: 100% !important;
        margin-bottom: 8px !important;
    }

    .site-header nav,
    .header nav,
    .topbar nav,
    .navbar nav {
        width: 100% !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;

        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.08);
        border-radius: 16px;

        padding: 8px !important;
        margin: 0 !important;
    }

    .site-header nav a,
    .header nav a,
    .topbar nav a,
    .navbar nav a {
        min-width: max-content !important;
        padding: 10px 12px !important;
        font-size: 13px !important;
        border-radius: 12px !important;
        background: transparent !important;
    }

    .site-header nav a:hover,
    .header nav a:hover,
    .topbar nav a:hover,
    .navbar nav a:hover {
        background: rgba(56,232,255,.14) !important;
    }

    .site-header nav::-webkit-scrollbar,
    .header nav::-webkit-scrollbar,
    .topbar nav::-webkit-scrollbar,
    .navbar nav::-webkit-scrollbar {
        display: none;
    }

    html {
        scroll-padding-top: 132px !important;
    }

    section[id],
    #ia,
    #gestao,
    #modulos,
    #recursos,
    #acesso-empresa {
        scroll-margin-top: 132px !important;
    }
}

@media (max-width: 720px) {
    .site-header,
    .header,
    .topbar,
    .navbar {
        display: grid !important;
        grid-template-columns: 1fr !important;
        width: 100% !important;
        overflow: hidden !important;
        border-radius: 0 !important;
    }

    .site-header .brand,
    .header .brand,
    .topbar .brand,
    .navbar .brand {
        width: 100% !important;
        justify-content: center !important;
    }

    .site-header nav,
    .header nav,
    .topbar nav,
    .navbar nav {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
        margin: 8px 0 0 !important;

        display: flex !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        white-space: nowrap !important;

        background: rgba(255,255,255,.07) !important;
        border-radius: 14px !important;
        padding: 8px !important;
    }

    .site-header nav a,
    .header nav a,
    .topbar nav a,
    .navbar nav a {
        flex: 0 0 auto !important;
    }
}