/* ================================================================
   CRM Angola — Formação Profissional · Design System v10
   ================================================================ */

:root {
    --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
    --font-display: 'Outfit', system-ui, sans-serif;
    --font-accent: 'IBM Plex Mono', ui-monospace, monospace;

    --navy-950: #060d09;
    --navy-900: #0b1610;
    --navy-800: #142318;
    --navy-700: #1d3724;
    --navy-600: #264d32;
    --blue-500: #1e6b4a;
    --blue-400: #2d8a5e;

    --brand-700: #005c1b;
    --brand-600: #007a24;
    --brand-500: #00a82d;
    --brand-400: #22c55e;
    --brand-300: #86efac;
    --brand-200: #bbf7d0;
    --brand-100: #dcfce7;
    --brand-50: #f0fdf4;

    --surface: #f7f9f8;
    --surface-elevated: #ffffff;
    --surface-subtle: #f1f5f3;
    --text: #111827;
    --text-secondary: #374151;
    --text-muted: #5b6b63;
    --border: #e2ebe6;
    --border-light: #eef3f0;

    --radius: 12px;
    --radius-lg: 18px;
    --radius-xl: 24px;
    --radius-2xl: 32px;

    --shadow-xs: 0 1px 2px rgba(10, 15, 12, 0.03);
    --shadow-sm: 0 1px 3px rgba(10, 15, 12, 0.04), 0 2px 8px rgba(10, 15, 12, 0.04);
    --shadow-md: 0 4px 16px rgba(10, 15, 12, 0.06), 0 1px 3px rgba(10, 15, 12, 0.04);
    --shadow-lg: 0 8px 32px rgba(10, 15, 12, 0.08), 0 2px 6px rgba(10, 15, 12, 0.03);
    --shadow-xl: 0 16px 48px rgba(10, 15, 12, 0.1), 0 4px 12px rgba(10, 15, 12, 0.04);
    --shadow-2xl: 0 24px 64px rgba(10, 15, 12, 0.12);
    --shadow-brand: 0 4px 16px rgba(0, 168, 45, 0.25);
    --shadow-brand-lg: 0 8px 32px rgba(0, 168, 45, 0.3);

    --gradient-hero: linear-gradient(152deg, #060d09 0%, #0e1d13 30%, #142318 50%, #1a3520 100%);
    --gradient-hero-vivid: linear-gradient(135deg, #0b1610 0%, #163d28 50%, #1e6b4a 100%);
    --gradient-brand: linear-gradient(135deg, #007a24 0%, #00a82d 50%, #22c55e 100%);
    --gradient-brand-soft: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    color: var(--text);
    background: var(--surface);
    font-size: 1.0625rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "kern" 1, "liga" 1;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--navy-900);
    line-height: 1.15;
}

.font-accent, .section-eyebrow, .hero-badge, .badge-cat, .stat-label {
    font-family: var(--font-accent);
    letter-spacing: 0.06em;
}

p.lead, .hero-lead {
    font-size: 1.2rem;
    line-height: 1.75;
    font-weight: 400;
}

.prose p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

::selection {
    background: rgba(0, 168, 45, 0.2);
    color: var(--navy-950);
}

img, svg, video { max-width: 100%; height: auto; }

.container {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
}

/* ——— Links ——— */
a {
    color: var(--brand-600);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--brand-700);
}

/* ——— Navbar ——— */
.navbar-main {
    padding: 0.85rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    border-bottom: 1px solid transparent;
}

.navbar-main.scrolled {
    background: rgba(6, 13, 9, 0.92);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    padding: 0.55rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.navbar-brand-pro {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    color: #fff !important;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    line-height: 1.2;
}

.navbar-brand-pro .brand-tagline {
    display: block;
    font-family: var(--font-accent);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-300);
    margin-top: 2px;
}

.navbar-brand-pro .brand-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-brand);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.brand-logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.brand-logo--navbar {
    height: 44px;
    max-width: 200px;
    background: #fff;
    border-radius: 8px;
    padding: 4px 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}

.brand-logo--footer {
    height: 52px;
    max-width: 220px;
    background: #fff;
    border-radius: 8px;
    padding: 6px 10px;
}

.brand-logo--sidebar {
    height: 42px;
    max-width: 100%;
    background: #fff;
    border-radius: 8px;
    padding: 5px 8px;
}

.brand-logo--auth {
    height: 56px;
    max-width: 240px;
    margin-inline: auto;
    background: #fff;
    border-radius: 10px;
    padding: 6px 12px;
}

.brand-logo--compact {
    height: 32px;
    max-width: 140px;
    background: #fff;
    border-radius: 6px;
    padding: 3px 6px;
}

.dashboard-topbar .brand-logo-link--compact {
    flex: 1;
    justify-content: center;
}

.navbar-main .nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    font-size: 0.92rem;
    padding: 0.5rem 1rem !important;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
}

.navbar-main .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--brand-400);
    border-radius: 2px;
    transition: transform var(--transition);
}

.navbar-main .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar-main .nav-link:hover {
    color: #fff !important;
    background: rgba(255,255,255,0.08);
}

.btn-nav-login {
    color: rgba(255,255,255,0.9) !important;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 10px;
    padding: 0.45rem 1.2rem !important;
    font-weight: 600;
    transition: var(--transition);
}

.btn-nav-login:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.5);
    color: #fff !important;
}

.btn-nav-cta {
    background: var(--gradient-brand) !important;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    padding: 0.5rem 1.25rem !important;
    font-weight: 700;
    box-shadow: var(--shadow-brand);
    transition: var(--transition);
}

.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-brand-lg);
    color: #fff !important;
}

/* ——— Hero ——— */
.hero-pro {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding: 6rem 0 7rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-pro::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 90% 60% at 85% 15%, rgba(0, 168, 45, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 70% 50% at 10% 85%, rgba(34, 197, 94, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.015) 0%, transparent 80%);
    pointer-events: none;
}

.hero-pro::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to top, var(--surface), transparent);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    color: var(--brand-300);
    padding: 0.4rem 1rem;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.2rem, 5.5vw, 3.75rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.06;
    margin-bottom: 1.5rem;
    letter-spacing: -0.04em;
}

.hero-title .highlight {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-lead {
    color: rgba(255,255,255,0.72);
    font-size: 1.15rem;
    max-width: 540px;
    margin-bottom: 2.25rem;
    line-height: 1.8;
}

.btn-hero-primary {
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow-brand-lg);
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 168, 45, 0.4);
    color: #fff;
}

.btn-hero-primary:active {
    transform: translateY(0);
}

.btn-hero-outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.35);
    font-weight: 600;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.btn-hero-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    color: #fff;
}

.hero-stats-card {
    background: var(--gradient-glass);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-xl);
    padding: 2rem;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-stat-item {
    text-align: center;
    padding: 1rem;
}

.hero-stat-item .number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-400);
    line-height: 1;
}

.hero-stat-item .label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.55);
    margin-top: 0.35rem;
    font-weight: 500;
}

/* ——— Sections ——— */
.section-padding { padding: 5.5rem 0; }

.section-eyebrow {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--brand-500);
    margin-bottom: 0.85rem;
    position: relative;
    padding-left: 1.5rem;
}

.section-eyebrow::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--brand-500);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(1.75rem, 3.2vw, 2.35rem);
    margin-bottom: 0.65rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ——— Feature cards ——— */
.features-grid-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.features-grid-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    transform: scaleX(0);
    transition: transform var(--transition);
    transform-origin: left;
}

.features-grid-card:hover {
    border-color: rgba(0, 168, 45, 0.2);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.features-grid-card:hover::before {
    transform: scaleX(1);
}

.features-grid-card .icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-brand-soft);
    color: var(--brand-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}

.features-grid-card:hover .icon {
    background: var(--gradient-brand);
    color: #fff;
    transform: scale(1.05);
}

/* ——— Step cards ——— */
.step-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    height: 100%;
    text-align: center;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-xs);
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 3px;
    background: var(--gradient-brand);
    border-radius: 0 0 4px 4px;
    opacity: 0;
    transition: var(--transition);
}

.step-card:hover {
    border-color: rgba(0, 168, 45, 0.2);
    box-shadow: var(--shadow-md);
    transform: translateY(-6px);
}

.step-card:hover::before { opacity: 1; }

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-hero);
    color: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 auto 1.25rem;
    transition: var(--transition);
}

.step-card:hover .step-number {
    background: var(--gradient-brand);
    transform: scale(1.08);
}

.step-card .icon-wrap {
    width: 56px;
    height: 56px;
    background: var(--gradient-brand-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--brand-600);
    font-size: 1.5rem;
    transition: var(--transition);
}

/* ——— Course cards ——— */
.course-card-pro {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.course-card-pro:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-6px);
    border-color: rgba(0, 168, 45, 0.15);
}

.course-card-thumb {
    height: 180px;
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
}

.course-card-thumb.cat-importacao { background: linear-gradient(135deg, #7c2d12, #ea580c); }
.course-card-thumb.cat-default { background: linear-gradient(135deg, var(--navy-800), var(--blue-500)); }

.course-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.badge-cat {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.85rem;
    border-radius: 8px;
    background: var(--brand-50);
    color: var(--brand-600);
    width: fit-content;
    margin-bottom: 0.75rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.course-meta span { display: flex; align-items: center; gap: 0.35rem; }

.course-price {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--navy-800);
    margin-top: auto;
}

/* ——— Categories strip ——— */
.cat-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.cat-pill:hover {
    border-color: var(--brand-400);
    color: var(--navy-800);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.cat-pill i {
    width: 42px;
    height: 42px;
    background: var(--gradient-brand-soft);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-600);
    font-size: 1.1rem;
    transition: var(--transition);
}

.cat-pill:hover i {
    background: var(--gradient-brand);
    color: #fff;
}

/* ——— Trust / Security ——— */
.trust-section {
    background: var(--navy-950);
    color: #fff;
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 70% 30%, rgba(0, 168, 45, 0.06) 0%, transparent 60%);
    pointer-events: none;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.65rem 1.25rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.trust-badge:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.2);
}

.trust-badge i { color: var(--brand-400); }

.trust-lead, .cta-lead {
    color: rgba(255,255,255,0.72);
    font-size: 1.1rem;
    line-height: 1.8;
}

.payment-methods-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.payment-method-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.65rem 1.35rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    color: #fff;
    backdrop-filter: blur(8px);
}

/* ——— Testimonials ——— */
.testimonial-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: var(--font-display);
    font-size: 3.5rem;
    line-height: 1;
    color: var(--brand-200);
    display: block;
    margin-bottom: -0.75rem;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 168, 45, 0.15);
    transform: translateY(-4px);
}

.testimonial-card .stars {
    color: var(--brand-500);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
}

/* ——— CTA band ——— */
.cta-band {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 4rem 2.5rem;
    text-align: center;
    color: #fff;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid rgba(255,255,255,0.06);
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 100% 0%, rgba(0, 168, 45, 0.15) 0%, transparent 55%);
    pointer-events: none;
}

/* ——— Page hero (inner pages) ——— */
.page-hero {
    background: var(--gradient-hero);
    padding: 3.75rem 0 3.25rem;
    color: #fff;
    margin-bottom: 0;
    position: relative;
    overflow: hidden;
}

.page-hero-pro {
    position: relative;
    overflow: hidden;
    padding: 3.75rem 0 3.25rem;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 50% 60% at 80% 20%, rgba(0, 168, 45, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero h1 {
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.page-hero .breadcrumb {
    margin-bottom: 0;
    --bs-breadcrumb-divider-color: rgba(255,255,255,0.4);
}

.page-hero .breadcrumb-item a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.page-hero .breadcrumb-item a:hover { color: #fff; }
.page-hero .breadcrumb-item.active { color: var(--brand-300); }

.page-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.68);
    max-width: 640px;
}

/* ——— Auth ——— */
.auth-wrapper {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.auth-card {
    background: var(--surface-elevated);
    border: none;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
}

.auth-card-header {
    background: var(--gradient-hero);
    color: #fff;
    padding: 2.25rem 2rem 1.75rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.auth-card-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 50% 120%, rgba(0, 168, 45, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.auth-card-header h2 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
    position: relative;
}

.auth-card-header .brand-logo--auth { background: #fff; }

.auth-card-body { padding: 2.25rem; }

.form-control-pro {
    border-radius: 10px;
    border: 1.5px solid var(--border);
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--surface);
}

.form-control-pro:focus {
    border-color: var(--brand-500);
    box-shadow: 0 0 0 3px rgba(0, 168, 45, 0.12);
    background: var(--surface-elevated);
}

.form-select:focus {
    border-color: var(--brand-500);
    box-shadow: 0 0 0 3px rgba(0, 168, 45, 0.12);
}

.btn-primary-pro {
    background: var(--gradient-brand);
    border: none;
    border-radius: 10px;
    font-weight: 700;
    padding: 0.8rem 1.75rem;
    transition: var(--transition);
    color: #fff;
    box-shadow: var(--shadow-brand);
    letter-spacing: -0.01em;
}

.btn-primary-pro:hover {
    background: linear-gradient(135deg, #006b1f 0%, #009526 100%);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--shadow-brand-lg);
}

.btn-primary-pro:active {
    transform: translateY(0);
}

/* ——— Form labels ——— */
.btn, .form-control, .form-label {
    font-family: var(--font-sans);
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    color: var(--text-secondary);
}

/* ——— Pricing box ——— */
.pricing-box {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.pricing-box-header {
    background: var(--gradient-hero);
    color: #fff;
    padding: 1.5rem;
    text-align: center;
}

.pricing-box .price-display {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--navy-800);
}

.bank-details-card {
    border: 2px solid var(--brand-400);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.bank-details-card .card-header {
    background: var(--gradient-hero);
    color: #fff;
    font-weight: 700;
    padding: 1rem 1.25rem;
    font-family: var(--font-display);
    letter-spacing: -0.02em;
}

.bank-details-card .table th {
    font-family: var(--font-accent);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ref-highlight {
    background: var(--gradient-brand-soft);
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px dashed var(--brand-500);
}

/* ——— Package pricing ——— */
.package-price-box {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    color: #fff;
    border-radius: var(--radius-xl);
}

.package-price-box .package-price-amount {
    font-family: var(--font-display);
    font-size: 2.65rem;
    font-weight: 800;
    color: var(--brand-400);
    line-height: 1.05;
    letter-spacing: -0.03em;
}

.page-hero + .section-padding .package-price-box,
.section-padding .package-price-box:not(.hero-pro .package-price-box) {
    background: var(--gradient-hero);
    border: none;
    color: #fff;
}

.pro-pricing-card {
    background: var(--gradient-hero) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: var(--shadow-2xl) !important;
    color: #fff;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0;
    color: rgba(255,255,255,0.85);
}

.package-features i {
    color: var(--brand-400);
    font-size: 1rem;
}

/* ——— Footer ——— */
.footer-pro {
    background: var(--navy-950);
    color: rgba(255,255,255,0.72);
    padding: 5rem 0 2rem;
    margin-top: 0;
    position: relative;
}

.footer-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 45, 0.3), transparent);
}

.footer-pro h5, .footer-pro h6 {
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
}

.footer-pro a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-pro a:hover { color: var(--brand-400); }

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--brand-500);
    border-color: var(--brand-500);
    color: #fff;
    transform: translateY(-2px);
}

.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.5;
}

.footer-contact-item i {
    color: var(--brand-400);
    margin-top: 2px;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-price {
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--brand-400);
    letter-spacing: -0.03em;
}

.btn-footer-cta {
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 0.6rem 1.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-brand);
}

.btn-footer-cta:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: var(--shadow-brand-lg);
}

.footer-divider {
    border-color: rgba(255,255,255,0.08) !important;
    margin: 3rem 0 1.5rem;
}

.footer-locale {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.35);
    font-family: var(--font-accent);
}

/* ——— Dashboard ——— */
.dashboard-body { background: var(--surface-subtle); }

.sidebar-pro {
    background: var(--gradient-hero);
    min-height: 100vh;
    padding: 1.5rem 0;
}

.sidebar-pro .brand-block {
    padding: 0 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1rem;
}

.sidebar-pro .nav-link {
    color: rgba(255,255,255,0.75);
    padding: 0.7rem 1.25rem;
    margin: 0.15rem 0.75rem;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    transition: var(--transition);
    border-left: 3px solid transparent;
}

.sidebar-pro .nav-link:hover {
    background: rgba(255,255,255,0.08);
    color: #fff;
}

.sidebar-pro .nav-link.active {
    background: rgba(0, 168, 45, 0.15);
    color: #fff;
    border-left-color: var(--brand-400);
    font-weight: 600;
}

.sidebar-pro .nav-link-danger {
    color: #fca5a5 !important;
}

.sidebar-brand-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient-brand);
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.dashboard-main {
    padding: 2.5rem;
    min-width: 0;
    max-width: 100%;
}

.stat-card-pro {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    height: 100%;
    transition: var(--transition);
    border-left: 3px solid var(--brand-500);
    position: relative;
    overflow: hidden;
}

.stat-card-pro::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-brand-soft);
    border-radius: 0 0 0 50%;
    opacity: 0.5;
}

.stat-card-pro:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.stat-card-pro .stat-value {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--navy-800);
    position: relative;
}

.stat-card-pro .stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
    font-family: var(--font-accent);
    letter-spacing: 0.03em;
}

.admin-sidebar-pro {
    background: linear-gradient(180deg, #1e293b 0%, #0f172a 100%);
}

.dashboard-shell {
    overflow-x: hidden;
}

/* ——— WhatsApp ——— */
.whatsapp-float {
    position: fixed;
    bottom: max(20px, env(safe-area-inset-bottom));
    right: max(20px, env(safe-area-inset-right));
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
    z-index: 1050;
    text-decoration: none;
    transition: var(--transition);
    animation: whatsapp-pulse 3s ease-in-out infinite;
}

@keyframes whatsapp-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.6), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08) translateY(-2px);
    animation: none;
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.5);
}

/* ——— Alerts ——— */
.alert { border-radius: var(--radius); border: none; }
.alert-container { padding-top: 1rem; }

.alert-pro {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-radius: var(--radius);
    border: none;
    box-shadow: var(--shadow-sm);
    font-weight: 500;
    padding: 1rem 1.25rem;
}

.alert-pro-success { background: #ecfdf5; color: #065f46; border-left: 4px solid #22c55e; }
.alert-pro-danger { background: #fef2f2; color: #991b1b; border-left: 4px solid #ef4444; }
.alert-pro-info { background: #eff6ff; color: #1e40af; border-left: 4px solid #3b82f6; }

/* ——— Tables ——— */
.table-pro {
    background: var(--surface-elevated);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.table-pro thead th {
    background: var(--brand-50);
    color: var(--navy-800);
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--border);
    padding: 0.85rem 1rem;
}

.table-responsive-pro {
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
}

/* ——— Accordion ——— */
.accordion-button:not(.collapsed) {
    background: var(--brand-50);
    color: var(--navy-800);
    box-shadow: none;
}

/* ——— Trust strip ——— */
.trust-strip {
    background: var(--surface-elevated);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.trust-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-strip-item i {
    color: var(--brand-500);
    font-size: 1rem;
}

/* ——— About ——— */
.about-highlight-card {
    background: var(--gradient-hero);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    color: #fff;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.about-highlight-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 80%, rgba(0, 168, 45, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.about-highlight-card .number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-400);
    position: relative;
}

.about-highlight-card .label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.6);
    position: relative;
}

/* ——— Contact ——— */
.contact-channel-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.contact-channel-card:hover {
    border-color: var(--brand-400);
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.contact-channel-card i {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* ——— Pro panels ——— */
.pro-panel-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.pro-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-left: 4px solid var(--brand-500);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    box-shadow: var(--shadow-sm);
}

.pro-info-banner-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-brand-soft);
    color: var(--brand-600);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.footer-brand-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-brand);
    border-radius: 10px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ——— Dashboard topbar ——— */
.dashboard-topbar {
    position: sticky;
    top: 0;
    z-index: 1040;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.65rem max(1rem, env(safe-area-inset-right)) 0.65rem max(1rem, env(safe-area-inset-left));
    background: var(--gradient-hero);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    box-shadow: var(--shadow-md);
}

.btn-dashboard-menu {
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    padding: 0;
    transition: var(--transition);
}

.btn-dashboard-menu:hover {
    background: rgba(255,255,255,0.15);
}

.btn-dashboard-cta {
    background: var(--gradient-brand);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    white-space: nowrap;
    box-shadow: var(--shadow-brand);
}

.sidebar-offcanvas {
    width: min(300px, 88vw);
    background: var(--gradient-hero);
}

.sidebar-offcanvas .sidebar-pro {
    min-height: auto;
    padding-bottom: 2rem;
}

.navbar-spacer { height: 72px; }

/* ——— Reveal animations ——— */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal.visible:nth-child(2) { transition-delay: 0.06s; }
.reveal.visible:nth-child(3) { transition-delay: 0.12s; }
.reveal.visible:nth-child(4) { transition-delay: 0.18s; }

/* ——— Utility ——— */
.bg-surface { background: var(--surface) !important; }
.bg-white-section { background: var(--surface-elevated); }
.text-brand { color: var(--brand-400) !important; }
.site-public { background: var(--surface); }

main > section:first-child:not(.page-hero):not(.hero-pro) {
    padding-top: 2rem;
}

/* ——— Progress bars ——— */
.progress {
    background: var(--border-light);
    border-radius: 100px;
    overflow: hidden;
}

.progress-bar {
    border-radius: 100px;
    transition: width 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ——— Buttons extra polish ——— */
.btn {
    transition: var(--transition);
    font-weight: 600;
    letter-spacing: -0.01em;
}

.btn:active {
    transform: scale(0.97);
}

.btn-success {
    background: var(--gradient-brand);
    border: none;
    box-shadow: var(--shadow-brand);
}

.btn-success:hover {
    box-shadow: var(--shadow-brand-lg);
    transform: translateY(-1px);
}

.btn-outline-primary {
    border-color: var(--brand-500);
    color: var(--brand-600);
}

.btn-outline-primary:hover {
    background: var(--brand-500);
    border-color: var(--brand-500);
    color: #fff;
}

/* ================================================================
   Solicitar Formação
   ================================================================ */
.solicitar-stepper-section {
    background: var(--surface-elevated);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
}

.solicitar-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 520px;
    margin: 0 auto;
}

.solicitar-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex-shrink: 0;
}

.solicitar-step-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--surface);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.solicitar-step.active .solicitar-step-icon {
    background: var(--gradient-brand);
    border-color: var(--brand-500);
    color: #fff;
    box-shadow: var(--shadow-brand);
}

.solicitar-step.completed .solicitar-step-icon {
    background: var(--brand-500);
    border-color: var(--brand-500);
    color: #fff;
}

.solicitar-step-label {
    font-size: 0.73rem;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
}

.solicitar-step.active .solicitar-step-label,
.solicitar-step.completed .solicitar-step-label {
    color: var(--brand-600);
}

.solicitar-step-line {
    flex: 1;
    height: 2px;
    background: var(--border);
    min-width: 40px;
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    border-radius: 2px;
}

.solicitar-step-line.filled {
    background: var(--brand-500);
}

.solicitar-step-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    flex-shrink: 0;
}

.solicitar-step-badge.success { background: #22c55e; }

.solicitar-package-summary {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-left: 4px solid var(--brand-500);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.solicitar-package-icon {
    width: 52px;
    height: 52px;
    background: var(--gradient-brand-soft);
    color: var(--brand-600);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.solicitar-features-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.solicitar-features-inline span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.solicitar-features-inline span i { color: var(--brand-500); }

.solicitar-price-tag {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.solicitar-price-amount {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--navy-900);
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.solicitar-price-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.solicitar-form-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.solicitar-form-header {
    background: var(--gradient-hero);
    color: #fff;
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.solicitar-form-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 80% at 80% 100%, rgba(0, 168, 45, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.solicitar-form-header h2 { color: #fff; position: relative; }
.solicitar-form-body { padding: 2rem; }

.input-group-icon {
    position: relative;
}

.input-group-icon > i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.92rem;
    pointer-events: none;
    z-index: 2;
    transition: color var(--transition-fast);
}

.input-group-icon > .form-control:focus ~ i,
.input-group-icon:focus-within > i {
    color: var(--brand-500);
}

.input-group-icon > .form-control,
.input-group-icon > .form-select {
    padding-left: 2.75rem;
}

.solicitar-submit-btn { position: relative; overflow: hidden; }
.solicitar-submit-btn:active { transform: scale(0.98); }

.solicitar-user-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.solicitar-user-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
}

.solicitar-user-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-brand);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.solicitar-user-details {
    padding: 1.25rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.solicitar-user-detail {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.solicitar-user-detail i { color: var(--brand-500); width: 20px; text-align: center; }

.solicitar-user-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.88rem;
    font-weight: 500;
}

.solicitar-user-status.success { background: #ecfdf5; color: #065f46; }

.solicitar-payment-card {
    background: var(--surface-elevated);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.solicitar-payment-card.is-active {
    border: 2px solid var(--brand-500);
    box-shadow: var(--shadow-xl);
}

.solicitar-payment-card.is-preview {
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    opacity: 0.85;
}

.solicitar-payment-header {
    background: var(--gradient-hero);
    color: #fff;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.solicitar-payment-badge {
    background: var(--gradient-brand);
    color: #fff;
    padding: 0.35rem 1rem;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 700;
}

.solicitar-payment-body { padding: 1.5rem; }

.solicitar-bank-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-light);
    gap: 1rem;
}

.solicitar-bank-row:last-of-type { border-bottom: none; }

.solicitar-bank-label {
    font-family: var(--font-accent);
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    font-weight: 600;
    padding-top: 0.2rem;
    flex-shrink: 0;
    min-width: 70px;
}

.solicitar-bank-value {
    font-weight: 600;
    color: var(--navy-900);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: right;
}

.solicitar-iban, .solicitar-express {
    font-size: 1.05rem;
    color: var(--brand-600);
    font-weight: 700;
    background: none;
    word-break: break-all;
}

.solicitar-copy-btn {
    width: 34px;
    height: 34px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--surface);
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
}

.solicitar-copy-btn:hover {
    border-color: var(--brand-500);
    color: var(--brand-600);
    background: var(--brand-50);
}

.solicitar-reference-box {
    background: var(--gradient-hero);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    margin-top: 1.25rem;
    position: relative;
    overflow: hidden;
}

.solicitar-reference-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(0, 168, 45, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.solicitar-reference-label {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    position: relative;
}

.solicitar-reference-code {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 4vw, 1.75rem);
    font-weight: 800;
    color: var(--brand-300);
    letter-spacing: 0.04em;
    word-break: break-all;
    position: relative;
}

.solicitar-payment-hint {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-top: 1.25rem;
    padding: 1rem;
    background: var(--gradient-brand-soft);
    border-radius: var(--radius);
    font-size: 0.85rem;
    color: var(--text-muted);
    border: 1px dashed rgba(0, 168, 45, 0.2);
}

.solicitar-payment-hint i { color: var(--brand-500); margin-top: 2px; flex-shrink: 0; }

.solicitar-confirm-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.solicitar-confirm-btn {
    position: relative;
    overflow: hidden;
    border: none;
    box-shadow: 0 4px 20px rgba(34, 197, 94, 0.3);
    transition: var(--transition);
}

.solicitar-confirm-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(34, 197, 94, 0.4);
}

.solicitar-guarantees {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.solicitar-guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-light);
}

.solicitar-guarantee-item:last-child { border-bottom: none; padding-bottom: 0; }
.solicitar-guarantee-item:first-of-type { padding-top: 0; }

.solicitar-guarantee-item > i { font-size: 1.15rem; margin-top: 2px; flex-shrink: 0; }
.solicitar-guarantee-item strong { display: block; font-size: 0.88rem; color: var(--navy-900); }
.solicitar-guarantee-item span { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }

.solicitar-help-strip {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-sm);
}

.solicitar-success-card {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 520px;
    margin: 0 auto;
}

.solicitar-success-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: var(--gradient-brand-soft);
    color: var(--brand-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.75rem;
    margin: 0 auto 1.5rem;
    animation: success-bounce 0.6s ease;
}

@keyframes success-bounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* ================================================================
   Responsive
   ================================================================ */
.navbar-main .navbar-collapse {
    margin-top: 0.75rem;
    padding: 1rem;
    background: rgba(6, 13, 9, 0.98);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.06);
    backdrop-filter: blur(16px);
}

.navbar-main .navbar-nav { gap: 0.25rem; }

.navbar-main .navbar-nav .nav-link {
    padding: 0.65rem 1rem !important;
    border-radius: 8px;
}

.navbar-main .navbar-nav .btn-nav-cta,
.navbar-main .navbar-nav .btn-nav-login {
    width: 100%;
    text-align: center;
    margin-top: 0.35rem;
}

.hero-actions .btn { width: 100%; }

@media (min-width: 576px) {
    .hero-actions .btn { width: auto; flex: 1 1 auto; }
}

@media (min-width: 992px) {
    .hero-actions .btn { flex: 0 0 auto; }
    .navbar-main .nav-link::after { display: block; }
}

.payment-details-table code {
    word-break: break-all;
    font-size: clamp(0.8rem, 3.5vw, 1.1rem);
    line-height: 1.4;
}

.ref-highlight .fs-3 {
    font-size: clamp(1.15rem, 5vw, 1.75rem) !important;
    word-break: break-all;
}

@media (max-width: 991.98px) {
    .hero-pro {
        min-height: auto;
        padding: 4rem 0 5rem;
        text-align: center;
    }

    .hero-lead {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
    }

    .hero-stats-card { margin-top: 2rem; }
    .hero-stat-item .number { font-size: 1.5rem; }
    .navbar-spacer { height: 64px; }
    .section-padding { padding: 4rem 0; }
    .section-title { font-size: 1.65rem; }

    .page-hero-pro { padding: 2.75rem 0 2.25rem; }
    .page-hero h1 { font-size: 1.65rem; }
    .page-hero-subtitle { font-size: 0.95rem; }

    .cta-band { padding: 3rem 1.5rem; border-radius: var(--radius-lg); }
    .package-price-box .package-price-amount { font-size: 2.15rem; }
    .auth-card-body { padding: 1.75rem 1.5rem; }
    .auth-card-header { padding: 1.5rem 1.25rem; }
    .auth-wrapper { padding: 2rem 0; min-height: auto; }

    .pro-info-banner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .bank-details-card .card-body { padding: 1.25rem !important; }

    .payment-details-table tr {
        display: block;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 1px solid var(--border);
    }

    .payment-details-table tr:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }

    .payment-details-table th,
    .payment-details-table td { display: block; width: 100% !important; padding: 0.15rem 0; }

    .payment-details-table th { font-size: 0.68rem; margin-bottom: 0.2rem; }
    .payment-details-table td { margin-bottom: 0.5rem; padding-bottom: 0.75rem; }

    .trust-section { padding: 3.5rem 0; }
    .payment-method-pill { font-size: 0.82rem; padding: 0.5rem 1rem; }

    .footer-pro { padding: 3.5rem 0 1.5rem; text-align: center; }
    .footer-pro .footer-social { justify-content: center; }
    .footer-contact-item { justify-content: center; text-align: left; }

    .dashboard-main { padding: 1.25rem; }

    .solicitar-price-tag { align-items: flex-start; }
    .solicitar-form-body { padding: 1.5rem 1.25rem; }
    .solicitar-form-header { padding: 1.25rem; }
    .solicitar-user-header { padding: 1.25rem; }
    .solicitar-user-details { padding: 1rem 1.25rem; }
    .solicitar-user-status { padding: 0.85rem 1.25rem; }
    .solicitar-help-strip { text-align: center; padding: 1.5rem; }
}

@media (max-width: 575.98px) {
    body { font-size: 1rem; }
    .hero-title { font-size: 1.85rem; }
    .hero-badge { font-size: 0.75rem; padding: 0.35rem 0.85rem; }
    .btn-lg { padding: 0.75rem 1.25rem; font-size: 1rem; }
    .cat-pill { padding: 0.85rem 1rem; }
    .cat-pill i { width: 36px; height: 36px; }
    .step-card { padding: 1.5rem 1.25rem; }
    .testimonial-card { padding: 1.5rem; }
    .col-6 .cat-pill small { display: none; }
    .alert-container { padding-left: 0.5rem; padding-right: 0.5rem; }
    .alert-pro { font-size: 0.9rem; }

    .solicitar-stepper { gap: 0; }
    .solicitar-step-label { font-size: 0.63rem; }
    .solicitar-step-icon { width: 34px; height: 34px; font-size: 0.75rem; }
    .solicitar-bank-row { flex-direction: column; gap: 0.25rem; }
    .solicitar-bank-value { justify-content: flex-start; text-align: left; }
    .solicitar-price-amount { font-size: 1.5rem; }
    .solicitar-features-inline { gap: 0.5rem; }
    .solicitar-features-inline span { font-size: 0.72rem; }
}

/* ——— Dashboard components ——— */
.stat-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gradient-brand-soft);
    color: var(--brand-600);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    position: relative;
    z-index: 1;
}

.dash-section-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.dash-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    background: var(--surface);
}

.dash-section-body {
    padding: 1.5rem;
}

.dash-notif-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border-light);
    transition: background var(--transition-fast);
}

.dash-notif-item:hover {
    background: var(--surface);
}

.dash-notif-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--gradient-brand-soft);
    color: var(--brand-600);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
}

.dash-course-card {
    background: var(--surface-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    padding: 1.5rem;
    gap: 1.25rem;
    transition: var(--transition);
    box-shadow: var(--shadow-xs);
}

.dash-course-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 168, 45, 0.15);
    transform: translateY(-2px);
}

.dash-course-body {
    flex: 1;
    min-width: 0;
}

.dash-course-action {
    flex-shrink: 0;
}

.dash-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--surface-elevated);
    border: 2px dashed var(--border);
    border-radius: var(--radius-xl);
}

.dash-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--gradient-brand-soft);
    color: var(--brand-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
}

/* ——— Smooth page load ——— */
@keyframes page-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.site-public {
    animation: page-fade-in 0.4s ease-out;
}
