/* ============================================================
   RIZEUP - CSS COMPLETO VERSÃO 2.0
   ============================================================ */

/* ============================================================
   1. VARIÁVEIS
   ============================================================ */
: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);
    --coral-light: #F5A98A;
    --gold: #D9A441;
    --gold-deep: #B8802E;
    --gold-tint: rgba(217, 164, 65, 0.12);
    --gold-light: #EDD09E;
    --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);
    --shadow-xl: 0 40px 80px -24px rgba(23, 20, 15, 0.35);
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-sans: 'Inter', sans-serif;
    --font-display: 'Sora', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-sans);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.015em;
    color: var(--ink);
}

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

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

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

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

ul, ol {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hidden { display: none !important; }

/* ============================================================
   3. UTILITÁRIOS
   ============================================================ */
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
}

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

/* ============================================================
   4. EYEBROW
   ============================================================ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--coral-deep);
    margin-bottom: 16px;
}

.eyebrow::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--coral);
    display: inline-block;
    flex-shrink: 0;
}

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

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

/* ============================================================
   5. BOTÕES
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: none;
    border-radius: var(--radius-sm);
    padding: 14px 28px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-sans);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: var(--transition);
}

.btn:hover::after {
    background: rgba(255, 255, 255, 0.15);
}

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

.btn:active {
    transform: translateY(0) scale(0.98);
}

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

.btn-primary:hover {
    background: var(--coral-deep);
    box-shadow: 0 12px 32px -10px rgba(232, 86, 42, 0.5);
}

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

.btn-outline:hover {
    border-color: var(--ink);
    background: rgba(23, 20, 15, 0.04);
}

.btn-outline-dark {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
}

.btn-outline-dark:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.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);
    color: #fff;
}

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

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-outline-light {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
    background: rgba(251, 247, 240, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    height: 64px;
}

.navbar.scrolled {
    padding: 8px 0;
    background: rgba(251, 247, 240, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--paper-line);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    height: 56px;
}

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

.logo {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    background: none;
    border: none;
    cursor: pointer;
    letter-spacing: -0.02em;
    transition: var(--transition);
    line-height: 1;
    color: var(--ink);
    padding: 0;
}

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

.navbar.scrolled .logo {
    font-size: 19px;
}

.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--coral);
    transition: var(--transition);
    border-radius: 99px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

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

.navbar.scrolled .nav-link {
    font-size: 12px;
    padding: 6px 14px;
}

.nav-burger {
    display: none;
    background: none;
    border: none;
    font-size: 22px;
    cursor: pointer;
    color: var(--ink);
    padding: 4px 8px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-burger:hover {
    background: var(--coral-tint);
}

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

.nav-cta-group .btn {
    font-size: 12px;
    padding: 7px 16px;
    border-radius: 8px;
}

.navbar.scrolled .nav-cta-group .btn {
    font-size: 11px;
    padding: 6px 14px;
}

/* Navbar Dark (sobre hero) */
.navbar.dark-init {
    background: rgba(23, 20, 15, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.dark-init .logo {
    color: #fff;
}

.navbar.dark-init .logo span {
    color: var(--gold);
}

.navbar.dark-init .nav-link {
    color: rgba(255, 255, 255, 0.75);
}

.navbar.dark-init .nav-link:hover,
.navbar.dark-init .nav-link.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.navbar.dark-init .nav-link::after {
    background: var(--gold);
}

.navbar.dark-init .nav-burger {
    color: #fff;
}

.navbar.dark-init .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.navbar.dark-init .btn-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.navbar.dark-init.scrolled .logo {
    color: var(--ink);
}

.navbar.dark-init.scrolled .logo span {
    color: var(--coral);
}

.navbar.dark-init.scrolled .nav-link {
    color: var(--muted);
}

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

.navbar.dark-init.scrolled .nav-link::after {
    background: var(--coral);
}

.navbar.dark-init.scrolled .nav-burger {
    color: var(--ink);
}

.navbar.dark-init.scrolled .btn-outline {
    border-color: var(--paper-line);
    color: var(--ink);
}

.navbar.dark-init.scrolled .btn-outline:hover {
    border-color: var(--ink);
    background: transparent;
}

/* Mobile Menu */
.nav-mobile {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 16px 28px 20px;
    border-top: 1px solid var(--paper-line);
    background: var(--paper);
}

.nav-mobile button {
    text-align: left;
    background: none;
    border: none;
    padding: 12px 0;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    color: var(--ink);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.nav-mobile button:hover {
    color: var(--coral);
    border-bottom-color: var(--coral);
}

.navbar.dark-init .nav-mobile {
    background: rgba(23, 20, 15, 0.96);
    border-top-color: rgba(255, 255, 255, 0.06);
}

.navbar.dark-init .nav-mobile button {
    color: rgba(255, 255, 255, 0.8);
}

.navbar.dark-init .nav-mobile button:hover {
    color: #fff;
}

.navbar.dark-init.scrolled .nav-mobile {
    background: var(--paper);
    border-top-color: var(--paper-line);
}

.navbar.dark-init.scrolled .nav-mobile button {
    color: var(--ink);
}

@media (max-width: 992px) {
    .nav-links,
    .nav-cta-group {
        display: none;
    }
    .nav-burger {
        display: block;
    }
    .nav-mobile.open {
        display: flex;
    }
    .navbar-inner {
        padding: 0 16px;
    }
    .navbar {
        height: 56px;
    }
    .navbar.scrolled {
        height: 50px;
    }
}

/* ============================================================
   7. SCROLL PROGRESS
   ============================================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--coral), var(--gold));
    z-index: 2000;
    transition: width 0.1s linear;
}

/* ============================================================
   8. SIDE DOTS
   ============================================================ */
.side-dots {
    position: fixed;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 90;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

.side-dots button::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1.5px solid transparent;
    transition: var(--transition);
}

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

.side-dots button.active::after {
    border-color: var(--coral);
}

.side-dots button:hover {
    transform: scale(1.2);
}

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

/* ============================================================
   9. HERO
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    padding: 88px 0 0;
    width: 100%;
}

.hero-bg {
    background-image: url('/assets/images/hero.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    width: 100%;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.30) 60%, rgba(0, 0, 0, 0.15) 100%);
    z-index: 0;
}

.hero-bg .wrap {
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-inner {
    display: grid;
    gap: 56px;
    align-items: center;
    padding-bottom: 56px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-bg .hero-inner {
    padding-bottom: 0;
}

.hero-text {
    max-width: 750px;
    width: 100%;
}

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

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

.hero-bg .hero-title {
    color: #fff;
}

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

.hero-sub {
    font-size: 18px;
    max-width: 100%;
    margin-bottom: 32px;
}

.hero-bg .hero-sub {
    color: rgba(255, 255, 255, 0.85);
}

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

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

.hero-bg .hero-trust {
    border-top-color: rgba(255, 255, 255, 0.2);
}

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

.hero-bg .trust-item strong {
    color: #fff;
}

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

.hero-bg .trust-item span {
    color: rgba(255, 255, 255, 0.7);
}

.hero-bg .eyebrow {
    color: var(--gold-light);
}

.hero-bg .eyebrow::before {
    background: var(--gold);
}

@media (max-width: 992px) {
    .hero-bg {
        min-height: auto;
        padding: 100px 0 60px;
    }
    .hero-bg .hero-inner {
        text-align: center;
    }
    .hero-bg .hero-actions {
        justify-content: center;
    }
    .hero-bg .hero-trust {
        justify-content: center;
    }
    .hero-bg .hero-title {
        font-size: 38px;
        max-width: 100%;
    }
    .hero-bg .hero-sub {
        max-width: 100%;
    }
    .hero-text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-bg {
        padding: 80px 0 40px;
        min-height: auto;
    }
    .hero-bg .hero-title {
        font-size: 32px;
    }
    .hero-bg .hero-sub {
        font-size: 16px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    .hero-trust {
        gap: 16px;
    }
    .trust-item {
        flex: 1 1 45%;
        text-align: center;
    }
    .hero-bg::before {
        background: rgba(0, 0, 0, 0.6);
    }
}

@media (max-width: 480px) {
    .hero-bg {
        padding: 60px 0 30px;
    }
    .hero-bg .hero-title {
        font-size: 28px;
    }
    .hero-bg .hero-sub {
        font-size: 15px;
    }
    .hero-bg::before {
        background: rgba(0, 0, 0, 0.7);
    }
}

/* ============================================================
   10. GROW STAGE
   ============================================================ */
.grow-stage {
    position: relative;
    height: 380px;
    perspective: 1400px;
    max-width: 100%;
}

.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, 0.35);
    animation: sway 6s ease-in-out infinite;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.gbar .gtop {
    position: absolute;
    inset: 0 0 auto 0;
    height: 10px;
    background: rgba(255, 255, 255, 0.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, 0.9), rgba(217, 164, 65, 0.55));
    animation-delay: 0s;
}

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

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

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

.g5 {
    left: 256px;
    bottom: 0;
    height: 225px;
    background: linear-gradient(180deg, rgba(184, 128, 46, 0.95), rgba(184, 128, 46, 0.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: var(--radius-sm);
    padding: 12px 16px;
    box-shadow: var(--shadow);
    font-family: var(--font-mono);
    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;
}

@media (max-width: 480px) {
    .grow-stage {
        height: 250px;
    }
    .gbar {
        width: 32px;
    }
    .g1 {
        left: 0;
        height: 50px;
    }
    .g2 {
        left: 40px;
        height: 80px;
    }
    .g3 {
        left: 80px;
        height: 65px;
    }
    .g4 {
        left: 120px;
        height: 110px;
    }
    .g5 {
        left: 160px;
        height: 145px;
    }
    .grow-line {
        width: 220px;
        bottom: 145px;
    }
    .grow-badge {
        top: 0;
        right: 0;
        font-size: 10px;
        padding: 8px 12px;
    }
}

/* ============================================================
   11. PROOF STRIP
   ============================================================ */
.proof-strip {
    background: var(--ink);
    padding: 24px 0;
    width: 100%;
}

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

.proof-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

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

.proof-logos span {
    color: rgba(255, 255, 255, 0.8);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.01em;
    opacity: 0.7;
    transition: var(--transition);
}

.proof-logos span:hover {
    opacity: 1;
}

/* ============================================================
   12. SECTION
   ============================================================ */
.section {
    padding: 96px 0;
    width: 100%;
}

.section-alt {
    background: #F3ECE1;
}

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

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

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

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

.section-title {
    font-size: 38px;
    margin: 10px 0 16px;
    line-height: 1.15;
}

.section-body {
    font-size: 16px;
    color: var(--muted);
}

/* ============================================================
   13. REVEAL
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}
.reveal-delay-5 {
    transition-delay: 0.5s;
}

/* ============================================================
   14. PROBLEM GRID
   ============================================================ */
.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    margin-bottom: 64px;
}

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

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

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

/* ============================================================
   15. CYCLE
   ============================================================ */
.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: var(--font-mono);
    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;
}

/* ============================================================
   16. TRACK GRID
   ============================================================ */
.track-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

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

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

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

.track-tagline {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--coral-deep);
    margin-bottom: 10px;
    font-family: var(--font-mono);
}

.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;
    color: var(--muted);
}

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

.track-features li {
    display: flex;
    gap: 12px;
    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: var(--radius-sm);
    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);
}

@media (max-width: 992px) {
    .track-grid {
        grid-template-columns: 1fr;
    }
    .track-card {
        padding: 32px 28px;
    }
}

@media (max-width: 480px) {
    .track-card {
        padding: 24px 20px;
    }
    .track-card h3 {
        font-size: 22px;
    }
}

/* ============================================================
   17. STEPS
   ============================================================ */
.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: var(--font-display);
    font-weight: 800;
    font-size: 18px;
}

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

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

@media (max-width: 480px) {
    .step-row {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 24px 0;
    }
    .step-badge {
        width: 44px;
        height: 44px;
        font-size: 16px;
    }
}

/* ============================================================
   18. CAROUSEL
   ============================================================ */
.carousel {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
}

.carousel-track-wrap {
    overflow: hidden;
    border-radius: var(--radius);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0.1, 0.2, 1);
}

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

.slide-quote {
    font-family: var(--font-display);
    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: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

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

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

.slide-metric {
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 700;
    color: var(--coral-deep);
    background: var(--coral-tint);
    padding: 6px 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: var(--transition);
}

.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;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .slide {
        padding: 36px 28px;
    }
    .slide-quote {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .slide {
        padding: 24px 16px;
    }
    .slide-quote {
        font-size: 16px;
    }
    .slide-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .slide-metric {
        align-self: flex-start;
    }
}

/* ============================================================
   19. CLUBE GRID
   ============================================================ */
.clube-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.clube-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line-dark);
    border-radius: var(--radius);
    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, 0.75);
}

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

@media (max-width: 992px) {
    .clube-grid {
        grid-template-columns: 1fr;
    }
    .clube-card {
        padding: 28px 24px;
    }
}

/* ============================================================
   20. CITY GRID
   ============================================================ */
.city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

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

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

.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: var(--font-display);
    font-size: 20px;
    color: var(--ink);
}

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

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

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

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

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

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

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

.price-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.price-tag {
    position: absolute;
    top: -13px;
    left: 28px;
    background: var(--coral);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.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;
}

@media (max-width: 992px) {
    .pricing-grid {
        grid-template-columns: 1fr 1fr;
    }
    .price-card.featured {
        transform: scale(1);
    }
    .price-card.featured:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .price-card {
        padding: 28px 24px;
    }
}

/* ============================================================
   22. FAQ
   ============================================================ */
.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);
    transition: var(--transition);
}

.faq-q:hover {
    color: var(--coral);
}

.faq-q .plus {
    font-size: 22px;
    color: var(--coral);
    transition: transform 0.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 0.4s ease;
}

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

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

/* ============================================================
   23. CTA FINAL
   ============================================================ */
.cta-final {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
}

.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, 0.8);
    margin-bottom: 24px;
    font-size: 14.5px;
}

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

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

@media (max-width: 992px) {
    .cta-final {
        grid-template-columns: 1fr;
    }
    .cta-panel {
        padding: 40px 32px;
    }
}

@media (max-width: 480px) {
    .cta-panel {
        padding: 32px 24px;
    }
    .cta-panel h3 {
        font-size: 20px;
    }
}

/* ============================================================
   24. QUIZ
   ============================================================ */
.quiz-card {
    background: #fff;
    border-radius: var(--radius-lg);
    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 0.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: var(--radius-sm);
    padding: 16px 20px;
    text-align: left;
    font-size: 14.5px;
    font-weight: 600;
    cursor: pointer;
    color: var(--ink);
    transition: var(--transition);
    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;
    transition: var(--transition);
}

.quiz-restart:hover {
    color: var(--coral);
}

@media (max-width: 480px) {
    .quiz-card {
        padding: 28px 20px;
    }
    .quiz-question h3 {
        font-size: 18px;
    }
}

/* ============================================================
   25. CALCULADORA
   ============================================================ */
.calc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.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);
    transition: var(--transition);
}

.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);
    cursor: pointer;
}

.calc-current {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 15px;
    color: var(--ink);
}

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

.calc-result-label {
    font-family: var(--font-mono);
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    display: block;
    margin-bottom: 10px;
}

.calc-result-value {
    font-family: var(--font-display);
    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, 0.2);
    border-radius: 6px 6px 0 0;
    transition: height 0.6s ease;
}

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

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

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

@media (max-width: 992px) {
    .calc-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .calc-result {
        padding: 28px 24px;
    }
    .calc-result-value {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .calc-result-value {
        font-size: 28px;
    }
    .calc-bars {
        gap: 16px;
        height: 90px;
    }
    .calc-bar {
        width: 32px;
    }
}

/* ============================================================
   26. CERTIFICADO
   ============================================================ */
.cert-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: center;
}

.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: var(--radius-sm);
    padding: 16px 18px;
    box-shadow: var(--shadow);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    transition: var(--transition);
}

.perk-chip:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.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: var(--radius);
    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: 32px;
    color: var(--gold-deep);
    margin-bottom: 10px;
}

.cert-kicker {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.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: var(--font-mono);
    font-size: 11px;
    color: var(--muted);
    border-top: 1px solid var(--paper-line);
    padding-top: 14px;
}

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

/* ============================================================
   27. PAGE HERO
   ============================================================ */
.page-hero {
    padding: 80px 0 48px;
}

.page-hero .wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ============================================================
   28. TWO COL
   ============================================================ */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

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

/* ============================================================
   29. ALERT
   ============================================================ */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 16px;
    font-size: 14px;
}

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

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

/* ============================================================
   30. BACK TO TOP
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 24px;
    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: var(--transition);
}

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

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

@media (max-width: 768px) {
    .back-to-top {
        bottom: 80px;
        right: 16px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* ============================================================
   31. LOGIN
   ============================================================ */
.login-wrap {
    max-width: 460px;
    margin: 0 auto;
}

.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;
    transition: var(--transition);
}

.text-input:focus {
    outline: none;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px var(--coral-tint);
}

select.text-input {
    appearance: auto;
}

/* ============================================================
   32. LMS
   ============================================================ */
.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;
}

.lms-course-card {
    background: #fff;
    border-radius: var(--radius);
    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;
}

.lms-panel {
    background: #fff;
    border-radius: var(--radius);
    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;
}

.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);
    transition: var(--transition);
}

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

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

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

.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;
    transition: var(--transition);
}

.notes-input:focus {
    outline: none;
    border-color: var(--coral);
}

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

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

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

.track-tag {
    font-family: var(--font-mono);
    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: var(--font-mono);
    font-size: 11px;
    color: var(--muted);
    margin-left: 6px;
    align-self: center;
}

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

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

.metric-value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 25px;
}

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

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

@media (max-width: 768px) {
    .lms-header-inner {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
    }
    .metric-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================================================
   33. CURSOS
   ============================================================ */
.course-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.course-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

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

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

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

@media (max-width: 768px) {
    .course-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 18px 20px;
    }
    .course-count {
        margin-left: 0;
    }
}

/* ============================================================
   34. EVENTOS
   ============================================================ */
.event-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.event-row:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-lg);
}

.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: var(--font-mono);
    font-size: 13px;
    color: var(--muted);
    white-space: nowrap;
}

@media (max-width: 768px) {
    .event-row {
        flex-wrap: wrap;
        padding: 16px 18px;
    }
    .event-date {
        margin-left: 0;
        width: 100%;
        padding-top: 8px;
        border-top: 1px solid var(--paper-line);
    }
}

/* ============================================================
   35. LEAD
   ============================================================ */
.lead-card {
    background: #fff;
    border-radius: var(--radius);
    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;
}

/* ============================================================
   36. ECO GRID
   ============================================================ */
.eco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

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

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

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

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

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

/* ============================================================
   37. ROLE GRID
   ============================================================ */
.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: var(--radius-sm);
    padding: 18px 10px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    color: var(--muted);
    transition: var(--transition);
}

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

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

@media (max-width: 768px) {
    .role-grid {
        grid-template-columns: 1fr 1fr;
    }
    .role-grid-2 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .role-grid {
        grid-template-columns: 1fr 1fr;
    }
    .role-grid-2 {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   38. WHATSAPP FLOAT
   ============================================================ */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 8px 30px -6px rgba(37, 211, 102, 0.5);
    z-index: 150;
    text-decoration: none;
    transition: var(--transition);
}

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

@media (max-width: 768px) {
    .wa-float {
        width: 48px;
        height: 48px;
        font-size: 20px;
        bottom: 16px;
        right: 16px;
    }
}

/* ============================================================
   39. FOOTER
   ============================================================ */
.footer {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
}

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

.footer-col h4 {
    color: #fff;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
    font-family: var(--font-mono);
    font-weight: 600;
}

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

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

.footer-brand p {
    font-size: 14px;
    margin-top: 14px;
    max-width: 280px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
}

.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;
}

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

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .footer-brand p {
        max-width: 100%;
    }
}

/* ============================================================
   40. RESPONSIVE GERAL
   ============================================================ */
@media (max-width: 768px) {
    .section {
        padding: 64px 0;
    }
    .section-title {
        font-size: 30px;
    }
    .wrap {
        padding: 0 16px;
    }
    .wrap-narrow {
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 48px 0;
    }
    .section-title {
        font-size: 26px;
    }
    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
    .btn-sm {
        padding: 8px 14px;
        font-size: 12px;
    }
    .page-hero {
        padding: 40px 0 24px;
    }
    .hero {
        padding: 56px 0 0;
    }
}

/* ============================================================
   CATÁLOGO - ESTILO COURSERA
   ============================================================ */

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

/* ============================================================
   CURSO CARD - ESTILO COURSERA
   ============================================================ */
.curso-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--paper-line);
}

.curso-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.10);
}

.curso-card.gold .curso-badge {
    background: var(--gold-tint);
    color: var(--gold-deep);
}

/* Imagem do curso */
.curso-card-image {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: var(--coral);
}

.curso-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.curso-card:hover .curso-card-image img {
    transform: scale(1.04);
}

.curso-progress-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 999px;
    backdrop-filter: blur(4px);
}

/* Corpo do card */
.curso-card-body {
    padding: 18px 20px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.curso-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.curso-badge {
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 600;
    color: var(--coral-deep);
    background: var(--coral-tint);
    padding: 3px 12px;
    border-radius: 999px;
}

.curso-rating {
    font-size: 13px;
    font-weight: 600;
    color: #f5a623;
    display: flex;
    align-items: center;
    gap: 4px;
}

.curso-card-body h3 {
    font-size: 17px;
    margin-bottom: 6px;
    line-height: 1.3;
    color: var(--ink);
}

.curso-card-body p {
    font-size: 13.5px;
    color: var(--muted);
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 14px;
}

.curso-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--paper-line);
}

.curso-card-info {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.curso-card-info span {
    font-size: 12px;
    color: var(--muted);
    display: flex;
    align-items: center;
    gap: 4px;
}

.curso-card-footer .btn {
    font-size: 13px;
    padding: 8px 18px;
    border-radius: 8px;
    flex-shrink: 0;
}

/* ============================================================
   CATÁLOGO - RESPONSIVO
   ============================================================ */
@media (max-width: 992px) {
    .catalogo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .curso-card-image {
        height: 140px;
    }
}

@media (max-width: 768px) {
    .catalogo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .curso-card-image {
        height: 160px;
    }
    .curso-card-body {
        padding: 16px 16px 18px;
    }
    .curso-card-body h3 {
        font-size: 16px;
    }
    .curso-card-body p {
        font-size: 13px;
    }
    .curso-card-footer {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    .curso-card-info {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .curso-card-image {
        height: 130px;
    }
    .curso-card-body h3 {
        font-size: 15px;
    }
    .curso-card-body p {
        font-size: 12.5px;
    }
    .curso-card-info span {
        font-size: 11px;
    }
    .curso-rating {
        font-size: 12px;
    }
}

/* Adicionar no style.css */
.g-recaptcha {
    display: flex;
    justify-content: center;
    margin: 8px 0;
}

/* Para mobile */
@media (max-width: 480px) {
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: center;
    }
}