/* ============================================================
   CSS COMPLETO DO RIZEUP
   ============================================================ */

:root {
    --ink: #17140F;
    --ink-soft: #241F17;
    --paper: #FBF7F0;
    --paper-line: rgba(23, 20, 15, 0.09);
    --white: #FFFFFF;
    --muted: #6B6053;
    --coral: #E8562A;
    --coral-deep: #C7431B;
    --coral-tint: rgba(232, 86, 42, 0.08);
    --gold: #D9A441;
    --gold-deep: #B8802E;
    --gold-tint: rgba(217, 164, 65, 0.12);
    --line-dark: rgba(255, 255, 255, 0.10);
    --shadow: 0 24px 48px -24px rgba(23, 20, 15, 0.18);
    --shadow-lg: 0 32px 64px -20px rgba(23, 20, 15, 0.28);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: 'Inter', sans-serif;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.015em;
    color: var(--ink);
}

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

button, input, textarea {
    font-family: inherit;
}

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

.hidden {
    display: none !important;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

.wrap-narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 28px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--coral-deep);
    margin-bottom: 18px;
}

.eyebrow::before {
    content: '';
    width: 18px;
    height: 1.5px;
    background: var(--coral);
    display: inline-block;
}

.eyebrow.on-dark {
    color: var(--gold);
}

.eyebrow.on-dark::before {
    background: var(--gold);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: 10px;
    padding: 15px 28px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    font-family: 'Inter', sans-serif;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--coral);
    color: #fff;
    box-shadow: 0 10px 24px -8px rgba(232, 86, 42, 0.5);
}

.btn-primary:hover {
    background: var(--coral-deep);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
    border: 1.5px solid var(--paper-line);
}

.btn-outline:hover {
    border-color: var(--ink);
}

.btn-outline-dark {
    background: transparent;
    color: #fff;
    border: 1.5px solid var(--line-dark);
}

.btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-dark:hover {
    background: var(--ink-soft);
}

.btn-gold {
    background: var(--gold);
    color: var(--ink);
}

.btn-gold:hover {
    background: var(--gold-deep);
}

.btn-sm {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 8px;
}

.btn-block {
    width: 100%;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(251, 247, 240, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--paper-line);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 28px;
    max-width: 1180px;
    margin: 0 auto;
}

.logo {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 21px;
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: -0.02em;
}

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

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

.nav-link {
    background: none;
    border: none;
    font-weight: 600;
    font-size: 14px;
    padding: 9px 16px;
    border-radius: 8px;
    color: var(--muted);
    cursor: pointer;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ink);
    background: var(--coral-tint);
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 12px 28px 22px;
    border-top: 1px solid var(--paper-line);
}

.nav-cta-group {
    display: flex;
    gap: 8px;
}

@media (max-width: 900px) {
    .nav-links,
    .nav-cta-group {
        display: none;
    }
    .nav-burger {
        display: block;
    }
    .nav-mobile.open {
        display: flex;
    }
}

.nav-mobile button {
    text-align: left;
    background: none;
    border: none;
    padding: 11px 0;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
}

.hero {
    padding: 88px 0 0;
    position: relative;
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    align-items: center;
    padding-bottom: 56px;
    position: relative;
    z-index: 1;
}

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        padding-bottom: 40px;
        gap: 40px;
    }
}

.hero-title {
    font-size: 52px;
    line-height: 1.08;
    margin-bottom: 22px;
    max-width: 600px;
}

.hero-title .hl {
    color: var(--coral);
}

.hero-sub {
    font-size: 17px;
    max-width: 520px;
    margin-bottom: 32px;
    color: var(--muted);
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 36px;
    }
}

.hero-trust {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    border-top: 1px solid var(--paper-line);
    padding-top: 24px;
}

.trust-item strong {
    font-family: 'Sora', sans-serif;
    font-size: 24px;
    display: block;
    color: var(--ink);
}

.trust-item span {
    font-size: 12px;
    color: var(--muted);
}

.grow-stage {
    position: relative;
    height: 380px;
    perspective: 1400px;
}

.grow-scene {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transform: rotateX(58deg) rotateZ(-32deg);
    transform-origin: center;
}

.gbar {
    position: absolute;
    width: 52px;
    border-radius: 6px 6px 2px 2px;
    transform-style: preserve-3d;
    box-shadow: 0 0 40px -10px rgba(232, 86, 42, .35);
    animation: sway 6s ease-in-out infinite;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, .5);
}

.gbar .gtop {
    position: absolute;
    inset: 0 0 auto 0;
    height: 10px;
    background: rgba(255, 255, 255, .55);
    border-radius: 6px 6px 0 0;
    transform: translateZ(1px);
}

.g1 {
    left: 0;
    bottom: 0;
    height: 70px;
    background: linear-gradient(180deg, rgba(217, 164, 65, .9), rgba(217, 164, 65, .55));
    animation-delay: 0s;
}

.g2 {
    left: 64px;
    bottom: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(232, 86, 42, .9), rgba(232, 86, 42, .55));
    animation-delay: .4s;
}

.g3 {
    left: 128px;
    bottom: 0;
    height: 100px;
    background: linear-gradient(180deg, rgba(217, 164, 65, .9), rgba(217, 164, 65, .55));
    animation-delay: .8s;
}

.g4 {
    left: 192px;
    bottom: 0;
    height: 170px;
    background: linear-gradient(180deg, rgba(232, 86, 42, .95), rgba(232, 86, 42, .6));
    animation-delay: 1.2s;
}

.g5 {
    left: 256px;
    bottom: 0;
    height: 225px;
    background: linear-gradient(180deg, rgba(184, 128, 46, .95), rgba(184, 128, 46, .6));
    animation-delay: 1.6s;
}

@keyframes sway {
    0%,
    100% {
        transform: translateZ(0) rotateZ(0deg);
    }
    50% {
        transform: translateZ(14px) rotateZ(0.6deg);
    }
}

.grow-line {
    position: absolute;
    width: 340px;
    height: 2px;
    left: 0;
    bottom: 225px;
    background: repeating-linear-gradient(90deg, var(--gold) 0 6px, transparent 6px 13px);
    transform: translateZ(60px) rotateX(0deg);
}

.grow-badge {
    position: absolute;
    top: 14px;
    right: 0;
    background: #fff;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow);
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 700;
    color: var(--coral-deep);
}

.grow-badge span {
    display: block;
    font-size: 10px;
    color: var(--muted);
    font-weight: 400;
    margin-top: 2px;
}

.proof-strip {
    background: var(--ink);
    padding: 26px 0;
}

.proof-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.proof-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    text-transform: uppercase;
    letter-spacing: .06em;
    white-space: nowrap;
}

.proof-logos {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.proof-logos span {
    color: rgba(255, 255, 255, .85);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .01em;
}

.section {
    padding: 96px 0;
}

.section-alt {
    background: #F3ECE1;
}

.section-dark {
    background: var(--ink);
    color: #fff;
}

.section-dark p {
    color: rgba(255, 255, 255, .65);
}

.section-dark .section-title {
    color: #fff;
}

.section-head {
    max-width: 640px;
    margin-bottom: 48px;
}

.section-title {
    font-size: 36px;
    margin: 10px 0 16px;
}

.section-body {
    font-size: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
}

@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.problem-grid p {
    font-size: 15.5px;
    margin-bottom: 14px;
}

.problem-grid p:last-child {
    margin-bottom: 0;
}

.cycle-row {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cycle-item {
    display: flex;
    gap: 24px;
    padding: 28px 0;
    border-top: 1px solid var(--paper-line);
}

.cycle-item:last-child {
    border-bottom: 1px solid var(--paper-line);
}

.cycle-num {
    font-family: 'JetBrains Mono', monospace;
    font-size: 14px;
    font-weight: 700;
    color: var(--coral);
    flex-shrink: 0;
    width: 36px;
}

.cycle-item h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.cycle-item p {
    font-size: 14.5px;
    max-width: 520px;
}

.track-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 900px) {
    .track-grid {
        grid-template-columns: 1fr;
    }
}

.track-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--coral);
}

.track-card.gold {
    border-top-color: var(--gold-deep);
}

.track-tagline {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--coral-deep);
    margin-bottom: 10px;
    font-family: 'JetBrains Mono', monospace;
}

.track-card.gold .track-tagline {
    color: var(--gold-deep);
}

.track-card h3 {
    font-size: 27px;
    margin-bottom: 14px;
}

.track-card>p {
    font-size: 15px;
    margin-bottom: 26px;
}

.track-features {
    list-style: none;
    margin: 0 0 28px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.track-features li {
    display: flex;
    gap: 10px;
    font-size: 14.5px;
    color: var(--ink);
    align-items: flex-start;
}

.track-features li::before {
    content: '✓';
    color: var(--coral);
    font-weight: 800;
    flex-shrink: 0;
}

.track-card.gold .track-features li::before {
    color: var(--gold-deep);
}

.track-outcome {
    background: var(--coral-tint);
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 24px;
    font-size: 13.5px;
}

.track-card.gold .track-outcome {
    background: var(--gold-tint);
}

.track-outcome strong {
    color: var(--ink);
}

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

.step-row {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    padding: 36px 0;
    border-top: 1px solid var(--paper-line);
}

.step-row:last-child {
    border-bottom: 1px solid var(--paper-line);
}

.step-badge {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 18px;
}

.step-row h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.step-row p {
    font-size: 15px;
    max-width: 640px;
}

.carousel {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.carousel-track-wrap {
    overflow: hidden;
    border-radius: 24px;
}

.carousel-track {
    display: flex;
    transition: transform .5s cubic-bezier(.4, .1, .2, 1);
}

.slide {
    min-width: 100%;
    background: #fff;
    padding: 56px 60px;
    box-shadow: var(--shadow-lg);
}

@media (max-width: 700px) {
    .slide {
        padding: 36px 28px;
    }
}

.slide-quote {
    font-family: 'Sora', sans-serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
    margin-bottom: 28px;
}

.slide-quote::before {
    content: '“';
    color: var(--coral);
}

.slide-quote::after {
    content: '”';
    color: var(--coral);
}

.slide-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.slide-person {
    display: flex;
    align-items: center;
    gap: 14px;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--gold));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.slide-name {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink);
}

.slide-role {
    font-size: 13px;
    color: var(--muted);
}

.slide-metric {
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--coral-deep);
    background: var(--coral-tint);
    padding: 8px 14px;
    border-radius: 999px;
    white-space: nowrap;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 28px;
}

.car-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--paper-line);
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .15s;
}

.car-arrow:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.car-dots {
    display: flex;
    gap: 8px;
}

.car-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--paper-line);
    border: none;
    cursor: pointer;
    padding: 0;
}

.car-dot.active {
    background: var(--coral);
    width: 22px;
    border-radius: 4px;
}

.clube-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

@media (max-width: 900px) {
    .clube-grid {
        grid-template-columns: 1fr;
    }
}

.clube-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--line-dark);
    border-radius: 20px;
    padding: 34px;
}

.clube-card h3 {
    color: #fff;
    font-size: 22px;
    margin-bottom: 16px;
}

.clube-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.clube-card li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, .75);
}

.clube-card li::before {
    content: '—';
    color: var(--gold);
    flex-shrink: 0;
}

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

@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

.price-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    position: relative;
}

.price-card.featured {
    border: 2px solid var(--coral);
}

.price-tag {
    position: absolute;
    top: -13px;
    left: 28px;
    background: var(--coral);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.price-card h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.price-card>p {
    font-size: 14px;
    margin-bottom: 20px;
}

.price-list {
    list-style: none;
    padding: 0;
    margin: 0 0 26px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex-grow: 1;
}

.price-list li {
    font-size: 13.5px;
    display: flex;
    gap: 8px;
    color: var(--ink);
}

.price-list li::before {
    content: '✓';
    color: var(--coral);
    font-weight: 800;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-top: 1px solid var(--paper-line);
}

.faq-list>.faq-item:last-child {
    border-bottom: 1px solid var(--paper-line);
}

.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 4px;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--ink);
}

.faq-q .plus {
    font-size: 20px;
    color: var(--coral);
    transition: transform .3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.faq-item.open .plus {
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
}

.faq-a p {
    padding: 0 4px 24px;
    font-size: 14.5px;
    max-width: 680px;
}

.faq-item.open .faq-a {
    max-height: 240px;
}

.cta-final {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: 24px;
    overflow: hidden;
}

@media (max-width: 900px) {
    .cta-final {
        grid-template-columns: 1fr;
    }
}

.cta-panel {
    padding: 56px 44px;
}

.cta-panel.a {
    background: var(--ink);
    color: #fff;
}

.cta-panel.b {
    background: linear-gradient(135deg, var(--coral), var(--gold-deep));
    color: #fff;
}

.cta-panel h3 {
    color: #fff;
    font-size: 24px;
    margin-bottom: 12px;
}

.cta-panel p {
    color: rgba(255, 255, 255, .8);
    margin-bottom: 24px;
    font-size: 14.5px;
}

.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .7);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

.footer-col h4 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 16px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 600;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 10px;
    cursor: pointer;
}

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

.footer-brand p {
    font-size: 14px;
    margin-top: 14px;
    max-width: 280px;
}

.footer-bottom {
    border-top: 1px solid var(--line-dark);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 13px;
}

.page-hero {
    padding: 80px 0 48px;
}

.login-wrap {
    max-width: 460px;
    margin: 0 auto;
}

.role-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin: 16px 0 22px;
}

.role-grid-2 {
    grid-template-columns: 1fr 1fr;
}

.role-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--paper-line);
    border-radius: 12px;
    padding: 18px 10px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    color: var(--muted);
}

.role-card.active {
    border-color: var(--coral);
    color: var(--coral-deep);
    background: var(--coral-tint);
}

.role-card .ic {
    font-size: 20px;
}

.field-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin: 16px 0 8px;
}

.text-input {
    width: 100%;
    background: #fff;
    border: 1.5px solid var(--paper-line);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
}

.lms-header {
    background: var(--ink);
    color: #fff;
    padding: 32px 0;
    margin-bottom: 36px;
}

.lms-header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lms-header h1 {
    color: #fff;
    font-size: 25px;
    margin-top: 6px;
}

.lms-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 24px;
    padding-bottom: 80px;
}

@media (max-width: 900px) {
    .lms-grid {
        grid-template-columns: 1fr;
    }
}

.lms-course-card {
    background: #fff;
    border-radius: 18px;
    padding: 24px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.lms-course-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 14px;
}

.lms-course-head h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.lms-course-head p {
    font-size: 13px;
}

.lesson-row {
    display: flex;
    align-items: center;
    gap: 10px;
    background: none;
    border: none;
    text-align: left;
    padding: 11px 8px;
    border-radius: 8px;
    font-size: 14px;
    width: 100%;
    cursor: pointer;
    color: var(--ink);
}

.lesson-row:hover {
    background: var(--paper);
}

.lesson-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--paper-line);
    flex-shrink: 0;
}

.lesson-check.done {
    background: var(--coral);
    border-color: var(--coral);
}

.lms-panel {
    background: #fff;
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 16px;
    box-shadow: var(--shadow);
}

.lms-panel h3 {
    font-size: 15px;
    margin: 8px 0 6px;
}

.lms-panel p {
    font-size: 13px;
}

.notes-input {
    width: 100%;
    min-height: 140px;
    border: 1.5px solid var(--paper-line);
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 14px;
    resize: vertical;
    margin-top: 10px;
}

.mentee-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1.5px solid var(--paper-line);
    border-radius: 12px;
    padding: 16px 18px;
    width: 100%;
    cursor: pointer;
    margin-bottom: 8px;
    text-align: left;
}

.mentee-row.active {
    border-color: var(--coral);
}

.mentee-row h3 {
    font-size: 15px;
    margin-bottom: 6px;
}

.track-tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 999px;
    display: inline-block;
}

.track-tag.empreendedor {
    background: var(--coral-tint);
    color: var(--coral-deep);
}

.track-tag.profissional {
    background: var(--gold-tint);
    color: var(--gold-deep);
}

.risebar {
    display: flex;
    align-items: flex-end;
    gap: 3px;
}

.risebar-step {
    width: 7px;
    border-radius: 2px;
    background: var(--paper-line);
}

.risebar-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    margin-left: 6px;
    align-self: center;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

@media (max-width: 860px) {
    .metric-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.metric-card {
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow);
}

.metric-value {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 25px;
}

.metric-label {
    font-size: 12px;
    color: var(--muted);
}

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

.course-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border-radius: 14px;
    padding: 22px 26px;
    box-shadow: var(--shadow);
}

.course-row h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.course-row p {
    font-size: 13.5px;
}

.course-count {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: var(--coral-deep);
    white-space: nowrap;
    margin-left: 16px;
}

.event-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.event-row {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 14px;
    padding: 20px 24px;
    box-shadow: var(--shadow);
}

.event-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--coral);
    flex-shrink: 0;
}

.event-row h3 {
    font-size: 15px;
}

.event-row p {
    font-size: 13px;
}

.event-date {
    margin-left: auto;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
}

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 900px) {
    .two-col {
        grid-template-columns: 1fr;
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--coral), var(--gold));
    z-index: 200;
}

.side-dots {
    position: fixed;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-dots button {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--paper-line);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: .2s;
}

.side-dots button.active {
    background: var(--coral);
    width: 9px;
    height: 26px;
    border-radius: 5px;
}

@media (max-width: 1150px) {
    .side-dots {
        display: none;
    }
}

.hero-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(420px circle at var(--x, 50%) var(--y, 20%), rgba(232, 86, 42, .10), transparent 65%);
    z-index: 0;
}

.hero .wrap {
    position: relative;
    z-index: 1;
}

.quiz-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    padding: 48px;
    max-width: 720px;
    margin: 0 auto;
}

.quiz-head {
    text-align: center;
    margin-bottom: 24px;
}

.quiz-progress {
    height: 4px;
    background: var(--paper-line);
    border-radius: 99px;
    overflow: hidden;
    margin-bottom: 32px;
}

.quiz-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--coral), var(--gold));
    transition: width .4s ease;
}

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

.quiz-question h3 {
    font-size: 20px;
    margin-bottom: 22px;
}

.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.quiz-opt {
    background: var(--paper);
    border: 1.5px solid var(--paper-line);
    border-radius: 12px;
    padding: 16px 20px;
    text-align: left;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    color: var(--ink);
    transition: .15s;
    width: 100%;
}

.quiz-opt:hover {
    border-color: var(--coral);
    background: var(--coral-tint);
}

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

.quiz-result .track-tagline {
    justify-content: center;
    display: flex;
}

.quiz-result h3 {
    font-size: 24px;
    margin: 10px 0 12px;
}

.quiz-result p {
    max-width: 440px;
    margin: 0 auto 24px;
}

.quiz-restart {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 13px;
    text-decoration: underline;
    cursor: pointer;
    margin-top: 16px;
}

.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

@media (max-width: 900px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.calc-toggle {
    display: flex;
    gap: 8px;
    margin: 20px 0;
}

.calc-toggle-btn {
    flex: 1;
    background: #fff;
    border: 1.5px solid var(--paper-line);
    border-radius: 10px;
    padding: 11px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    color: var(--muted);
}

.calc-toggle-btn.active {
    border-color: var(--coral);
    color: var(--coral-deep);
    background: var(--coral-tint);
}

.calc-slider {
    width: 100%;
    margin: 14px 0 10px;
    accent-color: var(--coral);
}

.calc-current {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
}

.calc-result {
    background: var(--ink);
    border-radius: 20px;
    padding: 36px;
    color: #fff;
    text-align: center;
}

.calc-result-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    text-transform: uppercase;
    letter-spacing: .06em;
    display: block;
    margin-bottom: 10px;
}

.calc-result-value {
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 38px;
    color: var(--gold);
    display: block;
    margin-bottom: 24px;
}

.calc-bars {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 28px;
    height: 110px;
    margin-bottom: 16px;
}

.calc-bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    gap: 8px;
}

.calc-bar {
    width: 44px;
    background: rgba(255, 255, 255, .25);
    border-radius: 6px 6px 0 0;
    transition: height .5s ease;
}

.calc-bar-proj {
    background: linear-gradient(180deg, var(--gold), var(--coral));
}

.calc-bar-col span {
    font-size: 11px;
    color: rgba(255, 255, 255, .6);
}

.calc-disclaimer {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .45);
}

.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

@media (max-width: 900px) {
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

.perk-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 24px;
}

.perk-chip {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: var(--shadow);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
}

.cert-preview {
    display: flex;
    justify-content: center;
}

.cert-card {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1.4;
    background: linear-gradient(145deg, #fff, #F3ECE1);
    border: 2px solid var(--gold);
    border-radius: 18px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.cert-seal {
    font-size: 28px;
    color: var(--gold-deep);
    margin-bottom: 10px;
}

.cert-kicker {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: .08em;
    color: var(--muted);
    margin-bottom: 14px;
}

.cert-name {
    font-size: 24px;
    margin-bottom: 6px;
}

.cert-sub {
    font-size: 13px;
    margin-bottom: 20px;
}

.cert-footer {
    display: flex;
    justify-content: space-between;
    width: 100%;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    color: var(--muted);
    border-top: 1px solid var(--paper-line);
    padding-top: 14px;
}

.wa-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 14px 30px -10px rgba(37, 211, 102, .6);
    z-index: 150;
    text-decoration: none;
    transition: transform .15s ease;
}

.wa-float:hover {
    transform: scale(1.08);
}

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

@media (max-width: 900px) {
    .city-grid {
        grid-template-columns: 1fr;
    }
}

.city-card {
    background: #fff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: var(--shadow);
}

.city-flag {
    font-size: 24px;
}

.city-card h3 {
    font-size: 19px;
    margin: 10px 0 6px;
}

.city-card p {
    font-size: 13.5px;
    margin-bottom: 18px;
}

.city-stats {
    display: flex;
    gap: 24px;
    border-top: 1px solid var(--paper-line);
    padding-top: 16px;
}

.city-stats strong {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 20px;
    color: var(--ink);
}

.city-stats span {
    font-size: 11.5px;
    color: var(--muted);
}

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

@media (max-width: 860px) {
    .eco-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.eco-card {
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow);
    border-left: 3px solid var(--coral);
}

.eco-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
}

.eco-card p {
    font-size: 13px;
}

.cta-proof {
    text-align: center;
    font-size: 14.5px;
    margin-bottom: 24px;
}

.cta-proof strong {
    color: var(--ink);
}

.lead-card {
    background: #fff;
    border-radius: 20px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.lead-success {
    text-align: center;
    padding: 24px 0;
}

.lead-success .ok-icon {
    font-size: 38px;
    margin-bottom: 14px;
    display: block;
}

.lead-success h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

select.text-input {
    appearance: auto;
}

.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 26px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 18px;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 140;
    box-shadow: var(--shadow);
    transition: transform .15s ease;
}

.back-to-top:hover {
    transform: scale(1.08);
}

.back-to-top.visible {
    display: flex;
}

.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}