/* ============ RESET & VARS ============ */
:root {
    --bg-darkest: #040d1f;
    --bg-dark: #0a1428;
    --bg-card: #0d1a35;
    --cyan: #00c8ff;
    --cyan-glow: rgba(0, 200, 255, 0.5);
    --cyan-soft: rgba(0, 200, 255, 0.15);
    --gold: #f5a623;
    --gold-glow: rgba(245, 166, 35, 0.5);
    --purple: #8b5cf6;
    --purple-glow: rgba(139, 92, 246, 0.5);
    --white: #ffffff;
    --gray-text: #b8c4d9;
    --gray-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --container-max: 1280px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-darkest);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.center { text-align: center; }
.mt-large { margin-top: 60px; }
.mt-medium { margin-top: 30px; }

.text-cyan { color: var(--cyan); }
.text-gold { color: var(--gold); }
.text-purple { color: var(--purple); }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(4, 13, 31, 0.75);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--gray-border);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(4, 13, 31, 0.95);
    box-shadow: 0 4px 24px rgba(0, 200, 255, 0.08);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 2px;
}

.logo-icon {
    color: var(--cyan);
    font-size: 28px;
    text-shadow: 0 0 12px var(--cyan-glow);
    transform: rotate(0deg);
}

.logo-text strong {
    color: var(--cyan);
    text-shadow: 0 0 12px var(--cyan-glow);
}

.nav-menu > ul {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-menu > ul > li {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-menu > ul > li + li::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.18);
}

.nav-menu a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    padding: 8px 0;
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--cyan);
}

.nav-menu .arrow {
    font-size: 10px;
    margin-left: 4px;
    opacity: 0.7;
    display: inline-block;
    transition: transform 0.25s ease;
}

.dropdown:hover .arrow,
.dropdown.open .arrow {
    transform: rotate(180deg);
}

/* ============ DROPDOWN ============ */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: -16px;
    min-width: 320px;
    background: #0d1526;
    border: 1px solid rgba(0, 200, 255, 0.18);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 110;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 200, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 14px;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 11px 22px;
    font-size: 12px;
    letter-spacing: 1.3px;
    color: var(--white);
    white-space: nowrap;
    border-left: 2px solid transparent;
}

.dropdown-menu a:hover {
    color: var(--cyan);
    background: rgba(0, 200, 255, 0.06);
    border-left-color: var(--cyan);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 26px;
    right: 26px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    z-index: 99;
    animation: pulseWhats 2s infinite;
    transition: var(--transition);
}

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

@keyframes pulseWhats {
    0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5); }
    50% { box-shadow: 0 4px 32px rgba(37, 211, 102, 0.85), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: 140px 0 80px;
    background:
        radial-gradient(ellipse at top left, rgba(0, 200, 255, 0.08), transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(139, 92, 246, 0.08), transparent 50%),
        var(--bg-darkest);
    overflow: hidden;
}

#particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

.eyebrow {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 13px;
    color: var(--gray-text);
    margin-bottom: 18px;
    font-weight: 600;
}

.eyebrow.text-cyan {
    color: var(--cyan);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 4.4vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.hero-block {
    margin-bottom: 30px;
    padding-left: 18px;
    border-left: 2px solid var(--cyan);
}

.hero-block-title {
    font-family: var(--font-heading);
    color: var(--cyan);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    text-shadow: 0 0 12px var(--cyan-soft);
}

.hero-block p {
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.7;
}

.hero-visual {
    position: sticky;
    top: 100px;
}

/* ============ HERO PAGE (páginas internas) ============ */
.hero-page {
    min-height: 70vh;
    padding: 170px 0 100px;
    display: flex;
    align-items: center;
}

.hero-single {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-single .eyebrow {
    margin-bottom: 22px;
}

.hero-single .hero-title {
    margin-bottom: 28px;
}

.hero-lead {
    font-size: 18px;
    color: var(--gray-text);
    line-height: 1.75;
    margin: 0 auto 40px;
    max-width: 760px;
}

.page-section {
    padding: 80px 0;
}

.placeholder-note {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.8;
}

/* ============ IMAGE PLACEHOLDERS ============ */
.image-placeholder {
    background: linear-gradient(135deg, #0d1a35 0%, #050b1a 100%);
    border: 1px solid var(--cyan);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    font-style: italic;
    font-size: 14px;
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.2), inset 0 0 50px rgba(0, 200, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(0, 200, 255, 0.03) 20px, rgba(0, 200, 255, 0.03) 21px);
}

.image-placeholder-tall {
    width: 100%;
    aspect-ratio: 5/6;
    min-height: 500px;
}

.image-placeholder-square {
    width: 100%;
    aspect-ratio: 1;
    min-height: 380px;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 14px 36px;
    border-radius: 999px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-outline {
    border-color: var(--white);
    color: var(--white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--bg-darkest);
}

.btn-outline-cyan {
    border-color: var(--cyan);
    color: var(--cyan);
    background: transparent;
    box-shadow: 0 0 18px var(--cyan-soft);
}

.btn-outline-cyan:hover {
    background: var(--cyan);
    color: var(--bg-darkest);
    box-shadow: 0 0 30px var(--cyan-glow);
}

.btn-outline-gold {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--bg-darkest);
}

.btn-lg {
    padding: 18px 48px;
    font-size: 16px;
}

.btn-link {
    color: var(--cyan);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    padding: 0;
    margin-top: 16px;
    display: inline-block;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--white);
    transform: translateX(4px);
}

/* ============ SECTIONS ============ */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.4vw, 44px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 50px;
    letter-spacing: -0.5px;
}

.center.section-title {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.section-title.uppercase {
    text-transform: uppercase;
}

.sub-eyebrow {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 14px;
    font-weight: 700;
    margin: 40px 0 30px;
}

/* ============ CARDS GRID ============ */
.cards-grid {
    display: grid;
    gap: 28px;
}

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

.card-center {
    grid-column: 2 / 3;
}

@media (max-width: 980px) {
    .card-center { grid-column: auto; }
}

.card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(13, 26, 53, 0.5) 100%);
    border: 1px solid rgba(0, 200, 255, 0.35);
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 0 0 1px rgba(0, 200, 255, 0.05), 0 4px 24px rgba(0, 0, 0, 0.4);
}

.card:hover {
    transform: translateY(-8px);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.4), 0 0 60px rgba(0, 200, 255, 0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #081428 0%, #04081a 100%);
    position: relative;
    overflow: hidden;
}

.card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(0, 200, 255, 0.15), transparent 50%),
        repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(0, 200, 255, 0.06) 28px, rgba(0, 200, 255, 0.06) 29px),
        repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(0, 200, 255, 0.06) 28px, rgba(0, 200, 255, 0.06) 29px);
}

.card-body {
    padding: 24px 24px 28px;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.25;
}

.card-text {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.65;
}

.badge-new {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--bg-darkest);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 1.5px;
    padding: 5px 12px;
    border-radius: 4px;
    z-index: 2;
    box-shadow: 0 0 14px var(--gold-glow);
}

/* ============ STATS ============ */
.section-stats {
    background: linear-gradient(180deg, var(--bg-darkest) 0%, #06122a 50%, var(--bg-darkest) 100%);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 70px;
    margin-bottom: 70px;
}

.stat {
    padding: 20px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(60px, 7vw, 96px);
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
    text-shadow: 0 0 24px var(--cyan-glow);
    margin-bottom: 16px;
}

.stat-label {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-text);
}

.social-row {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 30px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(0, 200, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--cyan);
    color: var(--bg-darkest);
    transform: translateY(-3px);
    box-shadow: 0 0 20px var(--cyan-glow);
}

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

.lead {
    font-size: 16px;
    color: var(--gray-text);
    line-height: 1.75;
    margin-bottom: 30px;
}

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

.benefit-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.6;
}

.benefit-list.compact li {
    font-size: 14px;
}

.bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 10px var(--cyan-glow);
    margin-top: 7px;
    flex-shrink: 0;
}

.bullet-gold {
    background: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow);
}

/* ============ IN COMPANY ============ */
.section-incompany {
    background: linear-gradient(180deg, var(--bg-darkest) 0%, #050f23 100%);
}

.tag {
    display: inline-block;
    background: var(--cyan-soft);
    color: var(--cyan);
    padding: 6px 16px;
    border-radius: 4px;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 18px;
    border: 1px solid rgba(0, 200, 255, 0.3);
}

.block-subtitle {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin: 24px 0 10px;
}

/* ============ FOUNDERS ============ */
.section-founders {
    background:
        radial-gradient(ellipse at center top, rgba(0, 200, 255, 0.06), transparent 60%),
        var(--bg-darkest);
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.founder-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(13, 26, 53, 0.5) 100%);
    border: 1px solid rgba(0, 200, 255, 0.3);
    border-radius: 14px;
    overflow: hidden;
    transition: var(--transition);
}

.founder-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.3);
}

.founder-photo {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #0a1530 0%, #04081a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-text);
    font-style: italic;
    font-size: 14px;
    position: relative;
    border-bottom: 1px solid rgba(0, 200, 255, 0.2);
}

.founder-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 50% 30%, rgba(0, 200, 255, 0.12), transparent 60%);
}

.founder-info {
    padding: 30px;
}

.founder-name {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.founder-role {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.founder-bio {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.founder-bio li {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
    padding-left: 18px;
    position: relative;
}

.founder-bio li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 8px var(--cyan-glow);
}

/* ============ FOOTER ============ */
.footer {
    background: #02060f;
    padding: 70px 0 30px;
    text-align: center;
    border-top: 1px solid var(--gray-border);
}

.footer-cta {
    margin-bottom: 40px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-bottom: 30px;
}

.copyright {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2.5px;
    color: var(--gray-text);
    text-transform: uppercase;
    margin-top: 20px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-border);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-container { grid-template-columns: 1fr; }
    .hero-visual { position: static; max-width: 480px; margin: 40px auto 0; }
    .two-col { grid-template-columns: 1fr; gap: 40px; }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .founders-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: absolute;
        top: 76px;
        left: 0;
        right: 0;
        background: rgba(4, 13, 31, 0.98);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--gray-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }
    .nav-menu.open {
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav-menu > ul {
        flex-direction: column;
        padding: 18px 24px 24px;
        gap: 8px;
        align-items: stretch;
    }
    .nav-menu > ul > li {
        display: block;
    }
    .nav-menu > ul > li + li::before {
        display: none;
    }
    .nav-menu > ul > li {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding-top: 10px;
    }
    .nav-menu > ul > li:first-child {
        border-top: none;
        padding-top: 0;
    }
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        min-width: 0;
        padding: 0 0 4px 14px;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        display: block;
    }
    .dropdown.open > .dropdown-menu {
        max-height: 600px;
    }
    .dropdown-menu a {
        padding: 8px 0;
        white-space: normal;
        border-left: none;
    }
    .dropdown-menu a:hover {
        background: transparent;
        border-left: none;
    }
    .hero { padding: 110px 0 60px; }
    .section { padding: 70px 0; }
    .grid-3 { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; gap: 30px; }
    .section-title { margin-bottom: 30px; }
    .hero-title { font-size: 34px; }
    .image-placeholder-tall { min-height: 380px; }
    .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 18px; }
    .whatsapp-float svg { width: 26px; height: 26px; }
    .founder-name { font-size: 26px; }
    .nav-menu .arrow { display: none; }
}

@media (max-width: 480px) {
    .container { padding: 0 18px; }
    .btn { padding: 12px 26px; font-size: 13px; }
    .hero-title { font-size: 28px; }
    .section-title { font-size: 24px; }
    .stat-number { font-size: 56px; }
}

/* ============ ANIMATIONS ============ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

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

/* ============ TOP BANNER (abaixo do header fixo) ============ */
.top-banner {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--gold);
    color: var(--white);
    text-align: center;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.2px;
    font-size: 12px;
    padding: 10px 16px;
    z-index: 99;
    line-height: 1.3;
}

body.with-top-banner .nav-menu {
    top: 114px;
}

/* ============ HERO INVERTIDO (FINANCEIRA) ============ */
.hero-financeira {
    min-height: auto;
    padding: 178px 0 90px;
    background:
        radial-gradient(ellipse at top right, rgba(0, 200, 255, 0.14), transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(0, 80, 180, 0.12), transparent 55%),
        linear-gradient(180deg, #04122b 0%, var(--bg-darkest) 100%);
}

.hero-financeira::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(0, 200, 255, 0.03) 80px, rgba(0, 200, 255, 0.03) 81px);
    pointer-events: none;
    z-index: 0;
}

.hero-financeira .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.hero-cover {
    background:
        radial-gradient(ellipse at top, rgba(0, 200, 255, 0.18), transparent 65%),
        linear-gradient(135deg, #0a1a3a 0%, #050a1c 100%);
    border: 1px solid var(--cyan);
    border-radius: 18px;
    padding: 70px 40px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 200, 255, 0.25), inset 0 0 80px rgba(0, 200, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.hero-cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 34px, rgba(0, 200, 255, 0.05) 34px, rgba(0, 200, 255, 0.05) 35px),
        repeating-linear-gradient(90deg, transparent, transparent 34px, rgba(0, 200, 255, 0.05) 34px, rgba(0, 200, 255, 0.05) 35px);
    pointer-events: none;
}

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

.hero-cover-badge {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-size: 12px;
    color: var(--cyan);
    border: 1px solid rgba(0, 200, 255, 0.45);
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 32px;
    background: rgba(0, 200, 255, 0.08);
}

.hero-cover-title {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5.4vw, 68px);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: 2px;
    background: linear-gradient(180deg, #ffffff 0%, #00c8ff 55%, #006fa0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 22px;
}

.hero-cover-subtitle {
    font-family: var(--font-heading);
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    opacity: 0.9;
}

.hero-financeira-text { color: var(--white); }

.hero-financeira-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 38px;
}

.btn-cta-cyan {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, #00c8ff 0%, #0095d4 100%);
    color: var(--bg-darkest);
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 16px;
    padding: 20px 28px;
    border-radius: 999px;
    box-shadow: 0 0 28px rgba(0, 200, 255, 0.55), 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.btn-cta-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 42px rgba(0, 200, 255, 0.85), 0 10px 28px rgba(0, 0, 0, 0.5);
}

/* ============ DIFERENCIAIS (4 ÍCONES) ============ */
.section-diff {
    background: #050d22;
    padding: 70px 0;
    border-top: 1px solid rgba(0, 200, 255, 0.08);
    border-bottom: 1px solid rgba(0, 200, 255, 0.08);
}

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

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

.diff-icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(0, 200, 255, 0.1);
    border: 1px solid rgba(0, 200, 255, 0.35);
    margin: 0 auto 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    box-shadow: 0 0 24px rgba(0, 200, 255, 0.2), inset 0 0 16px rgba(0, 200, 255, 0.08);
    transition: var(--transition);
}

.diff-item:hover .diff-icon {
    background: rgba(0, 200, 255, 0.2);
    box-shadow: 0 0 36px rgba(0, 200, 255, 0.45);
    transform: translateY(-4px);
}

.diff-icon svg { width: 40px; height: 40px; }

.diff-text {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--white);
    font-size: 15px;
    line-height: 1.4;
    max-width: 230px;
    margin: 0 auto;
}

/* ============ POS-INFINITA SECTION ============ */
.section-infinita {
    text-align: center;
    background:
        radial-gradient(ellipse at center top, rgba(0, 200, 255, 0.1), transparent 60%),
        var(--bg-darkest);
}

.infinity-symbol {
    font-family: var(--font-heading);
    font-size: clamp(120px, 14vw, 200px);
    font-weight: 700;
    line-height: 1;
    margin: 20px 0 32px;
    background: linear-gradient(90deg, #00c8ff 0%, #0080a8 50%, #00c8ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 60px rgba(0, 200, 255, 0.5);
    -webkit-user-select: none;
    user-select: none;
}

.infinita-text-block {
    max-width: 920px;
    margin: 0 auto;
}

.infinita-text-block p {
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.85;
    margin-bottom: 24px;
}

/* ============ AUDIÊNCIA GRID ============ */
.section-audience {
    background: linear-gradient(180deg, var(--bg-darkest) 0%, #050f23 100%);
    text-align: center;
}

.audience-subtitle {
    color: var(--gray-text);
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

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

.audience-card {
    background: linear-gradient(180deg, var(--bg-card) 0%, rgba(13, 26, 53, 0.5) 100%);
    border: 1px solid rgba(0, 200, 255, 0.25);
    border-radius: 14px;
    padding: 34px 28px;
    text-align: left;
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-6px);
    border-color: var(--cyan);
    box-shadow: 0 0 28px rgba(0, 200, 255, 0.3);
}

.audience-icon {
    width: 56px;
    height: 56px;
    color: var(--cyan);
    margin-bottom: 18px;
}

.audience-icon svg { width: 100%; height: 100%; }

.audience-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 19px;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.25;
}

.audience-desc {
    color: var(--gray-text);
    font-size: 14px;
    line-height: 1.6;
}

/* ============ FINAL CTA ============ */
.section-final-cta {
    text-align: center;
    background:
        radial-gradient(ellipse at center, rgba(0, 200, 255, 0.14), transparent 60%),
        var(--bg-darkest);
    padding: 90px 0;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 3.6vw, 44px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.final-cta-lead {
    color: var(--gray-text);
    font-size: 17px;
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.final-cta-btn {
    max-width: 460px;
    margin: 0 auto;
}

/* ============ RESPONSIVE — PÁGINA FINANCEIRA ============ */
@media (max-width: 1024px) {
    .hero-financeira .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .diff-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .audience-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .top-banner { font-size: 10px; letter-spacing: 1.5px; padding: 8px 14px; }
    body.with-top-banner .nav-menu { top: 108px; }
    .hero-financeira { padding: 150px 0 60px; }
    .hero-cover { padding: 44px 24px; }
    .diff-grid { grid-template-columns: 1fr; gap: 32px; }
    .audience-grid { grid-template-columns: 1fr; }
    .infinity-symbol { font-size: 100px; }
}

/* ============================================================ */
/* ============ TEMA ROXO (PÁGINA OSINT COM IA) =============== */
/* ============================================================ */

/* ---------- HERO ROXO ---------- */
.hero-osint {
    min-height: auto;
    padding: 178px 0 90px;
    background:
        radial-gradient(ellipse at top left, rgba(139, 92, 246, 0.18), transparent 55%),
        radial-gradient(ellipse at bottom right, rgba(80, 30, 180, 0.16), transparent 55%),
        linear-gradient(180deg, #0c0b24 0%, #04081a 100%);
    overflow: hidden;
    position: relative;
}

.hero-osint::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(90deg, transparent, transparent 80px, rgba(139, 92, 246, 0.04) 80px, rgba(139, 92, 246, 0.04) 81px);
    pointer-events: none;
    z-index: 0;
}

.hero-osint .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* Capa do curso (coluna esquerda) */
.hero-cover-purple {
    background:
        radial-gradient(ellipse at top, rgba(139, 92, 246, 0.25), transparent 65%),
        linear-gradient(135deg, #1a0e3a 0%, #06091c 100%);
    border: 1px solid var(--purple);
    border-radius: 18px;
    padding: 56px 36px;
    text-align: center;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.35), inset 0 0 80px rgba(139, 92, 246, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-cover-purple::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 34px, rgba(139, 92, 246, 0.06) 34px, rgba(139, 92, 246, 0.06) 35px),
        repeating-linear-gradient(90deg, transparent, transparent 34px, rgba(139, 92, 246, 0.06) 34px, rgba(139, 92, 246, 0.06) 35px);
    pointer-events: none;
}

.hero-cover-purple > * { position: relative; z-index: 1; }

.hero-cover-badge-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    margin: 0 auto 28px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5), rgba(139, 92, 246, 0.15));
    border: 2px solid var(--purple);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    font-size: 11px;
    line-height: 1.25;
    text-align: center;
    padding: 14px;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.55), inset 0 0 24px rgba(139, 92, 246, 0.35);
}

.hero-cover-eyebrow {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-size: 13px;
    color: var(--white);
    opacity: 0.85;
    margin-bottom: 6px;
}

.hero-cover-purple .hero-cover-title {
    font-size: clamp(72px, 9vw, 120px);
    line-height: 0.95;
    letter-spacing: 4px;
    background: linear-gradient(180deg, #d6c4ff 0%, #8b5cf6 55%, #5b21b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin: 0 0 4px;
}

.hero-cover-sub-large {
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 8px;
    font-size: clamp(28px, 3.6vw, 44px);
    color: #c4b1ff;
    margin-bottom: 14px;
}

.hero-cover-purple .hero-cover-subtitle {
    color: var(--white);
    margin-bottom: 28px;
}

.hero-cover-badge-outline {
    display: inline-block;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 11px;
    color: var(--purple);
    border: 1px solid rgba(139, 92, 246, 0.55);
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(139, 92, 246, 0.08);
}

/* Coluna direita (texto + botões) */
.hero-osint-text { color: var(--white); }

.hero-osint-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.15;
    letter-spacing: -0.5px;
    margin-bottom: 38px;
    color: var(--white);
}

.hero-osint-cta-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* Botão CTA roxo */
.btn-cta-purple {
    display: block;
    width: 100%;
    text-align: center;
    background: linear-gradient(90deg, #a855f7 0%, #7c3aed 100%);
    color: var(--white);
    border: none;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 15px;
    padding: 18px 28px;
    border-radius: 999px;
    box-shadow: 0 0 28px rgba(139, 92, 246, 0.55), 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    cursor: pointer;
}

.btn-cta-purple:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 42px rgba(139, 92, 246, 0.85), 0 10px 28px rgba(0, 0, 0, 0.5);
}

.btn-cta-purple.btn-cta-purple-outline {
    background: transparent;
    border: 2px solid var(--purple);
    color: var(--purple);
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.18);
}

.btn-cta-purple.btn-cta-purple-outline:hover {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 0 32px rgba(139, 92, 246, 0.6);
}

/* ---------- DIFERENCIAIS (variante roxa) ---------- */
.section-diff-purple {
    background: #0a0820;
    border-top: 1px solid rgba(139, 92, 246, 0.12);
    border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}

.diff-icon-purple {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.45);
    color: var(--purple);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.25), inset 0 0 16px rgba(139, 92, 246, 0.1);
}

.diff-item:hover .diff-icon-purple {
    background: rgba(139, 92, 246, 0.22);
    box-shadow: 0 0 36px rgba(139, 92, 246, 0.55);
}

/* ---------- INFINITA (variante roxa) ---------- */
.section-infinita-purple {
    background:
        radial-gradient(ellipse at center top, rgba(139, 92, 246, 0.14), transparent 60%),
        var(--bg-darkest);
}

.section-infinita-purple .eyebrow {
    color: var(--purple);
}

.infinity-symbol-purple {
    background: linear-gradient(90deg, #a855f7 0%, #5b21b6 50%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 60px rgba(139, 92, 246, 0.55);
}

/* ---------- AUDIENCE (variante roxa, ícone grande centralizado) ---------- */
.audience-card-purple {
    background: linear-gradient(180deg, #14102e 0%, rgba(20, 16, 46, 0.5) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 14px;
    padding: 40px 28px 32px;
    text-align: center;
    transition: var(--transition);
}

.audience-card-purple:hover {
    transform: translateY(-6px);
    border-color: var(--purple);
    box-shadow: 0 0 28px rgba(139, 92, 246, 0.4);
}

.audience-icon-purple {
    width: 72px;
    height: 72px;
    color: var(--purple);
    margin: 0 auto 22px;
    filter: drop-shadow(0 0 14px rgba(139, 92, 246, 0.5));
}

.audience-icon-purple svg { width: 100%; height: 100%; }

.audience-card-purple .audience-title {
    text-align: center;
    margin: 0;
}

.tag-purple {
    background: rgba(139, 92, 246, 0.12);
    color: var(--purple);
    border-color: rgba(139, 92, 246, 0.4);
}

/* ---------- LEARN (O que você vai aprender) ---------- */
.section-learn {
    background: var(--bg-darkest);
}

.section-title-purple {
    color: var(--purple);
    text-shadow: 0 0 24px rgba(139, 92, 246, 0.3);
    text-transform: uppercase;
}

.learn-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
    margin: 40px 0 50px;
    max-width: 1000px;
}

.learn-list li {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    color: var(--gray-text);
    font-size: 16px;
    line-height: 1.7;
}

.learn-check {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--purple);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
    box-shadow: 0 0 16px rgba(139, 92, 246, 0.45);
}

.learn-check svg { width: 16px; height: 16px; }

.learn-label { color: var(--white); font-weight: 700; }

.learn-cta { text-align: center; margin-top: 20px; }

.btn-purple-inline {
    display: inline-block;
    background: linear-gradient(90deg, #a855f7 0%, #7c3aed 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 15px;
    padding: 18px 44px;
    border-radius: 999px;
    box-shadow: 0 0 28px rgba(139, 92, 246, 0.55);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-purple-inline:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 42px rgba(139, 92, 246, 0.85);
}

/* ---------- MÓDULOS (carrossel) ---------- */
.section-modules {
    background:
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.06), transparent 65%),
        var(--bg-darkest);
    text-align: center;
}

.modules-carousel-wrap {
    position: relative;
    margin-top: 50px;
    padding: 0 4px;
}

.modules-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 10px 4px 30px;
    scrollbar-width: thin;
    scrollbar-color: rgba(139, 92, 246, 0.6) transparent;
}

.modules-carousel::-webkit-scrollbar { height: 8px; }
.modules-carousel::-webkit-scrollbar-thumb { background: rgba(139, 92, 246, 0.55); border-radius: 4px; }
.modules-carousel::-webkit-scrollbar-track { background: rgba(139, 92, 246, 0.08); border-radius: 4px; }

.module-card {
    flex: 0 0 320px;
    aspect-ratio: 4/5;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    background: linear-gradient(135deg, #14102e 0%, #06091c 100%);
    border: 1px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 0 24px rgba(139, 92, 246, 0.15);
    transition: var(--transition);
}

.module-card:hover {
    border-color: var(--purple);
    box-shadow: 0 0 36px rgba(139, 92, 246, 0.55);
    transform: translateY(-6px);
}

.module-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 30% 30%, rgba(139, 92, 246, 0.28), transparent 60%),
        repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(139, 92, 246, 0.05) 28px, rgba(139, 92, 246, 0.05) 29px),
        repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(139, 92, 246, 0.05) 28px, rgba(139, 92, 246, 0.05) 29px);
    pointer-events: none;
}

.module-card-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 24px;
    background: linear-gradient(180deg, transparent 0%, rgba(6, 5, 22, 0.95) 70%);
    z-index: 2;
    text-align: left;
}

.module-card-badge {
    display: inline-block;
    background: var(--purple);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 2px;
    padding: 5px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
    box-shadow: 0 0 14px rgba(139, 92, 246, 0.5);
}

.module-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--white);
    font-size: 17px;
    line-height: 1.3;
}

.carousel-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.18);
    border: 1px solid var(--purple);
    color: var(--purple);
    font-size: 22px;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

.carousel-arrow:hover {
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.7);
}

.carousel-arrow-left { left: -22px; }
.carousel-arrow-right { right: -22px; }

/* ---------- FINAL CTA (variante roxa) ---------- */
.section-final-cta-purple {
    background:
        radial-gradient(ellipse at center, rgba(139, 92, 246, 0.2), transparent 60%),
        var(--bg-darkest);
}

/* ---------- RESPONSIVE OSINT ---------- */
@media (max-width: 1024px) {
    .hero-osint .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
    .hero-osint { padding: 150px 0 60px; }
    .hero-cover-purple { padding: 44px 22px; }
    .hero-cover-badge-circle { width: 130px; height: 130px; font-size: 10px; }
    .module-card { flex-basis: 260px; }
    .carousel-arrow-left { left: -10px; }
    .carousel-arrow-right { right: -10px; }
    .learn-list li { font-size: 14px; }
}

/* ---------- PREÇO (variante roxa) ---------- */
.section-price-purple {
    background:
        radial-gradient(ellipse at center, rgba(124, 58, 237, 0.18), transparent 60%),
        linear-gradient(180deg, #07051a 0%, var(--bg-darkest) 100%);
    padding: 100px 0;
    text-align: center;
}

.section-price-purple .proposta-title {
    font-family: var(--font-heading);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    text-transform: uppercase;
    max-width: 880px;
    margin: 16px auto 40px;
    line-height: 1.25;
    color: var(--white);
}

.price-card-purple {
    max-width: 560px;
    margin: 0 auto;
    background: linear-gradient(180deg, #160e30 0%, #06081e 100%);
    border: 2px solid #7c3aed;
    border-radius: 20px;
    padding: 48px 40px;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.45), inset 0 0 60px rgba(124, 58, 237, 0.08);
    position: relative;
    overflow: hidden;
}

.price-card-purple::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(124, 58, 237, 0.05) 30px, rgba(124, 58, 237, 0.05) 31px);
    pointer-events: none;
}

.price-card-purple > * { position: relative; z-index: 1; }

.price-discount-tag-purple {
    display: inline-block;
    background: linear-gradient(90deg, #a855f7 0%, #7c3aed 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    padding: 7px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.65);
}

.price-old-purple {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--gray-text);
    text-decoration: line-through;
    margin-bottom: 8px;
    opacity: 0.75;
    letter-spacing: 1px;
}

.price-installments-purple {
    font-family: var(--font-heading);
    font-size: clamp(40px, 5vw, 60px);
    font-weight: 700;
    line-height: 1;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.price-installments-purple .pct-amount {
    background: linear-gradient(180deg, #e9d5ff 0%, #a855f7 60%, #5b21b6 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.price-cash-purple {
    font-family: var(--font-heading);
    font-size: clamp(16px, 1.8vw, 20px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #c4b5fd;
    margin-bottom: 30px;
    line-height: 1.4;
}

.price-cash-purple .price-cash-amount {
    color: #a855f7;
    text-shadow: 0 0 18px rgba(124, 58, 237, 0.55);
}

/* ---------- MENTOR (variante roxa) ---------- */
.section-mentor-purple {
    background:
        radial-gradient(ellipse at center top, rgba(139, 92, 246, 0.12), transparent 60%),
        var(--bg-darkest);
    padding: 100px 0;
    text-align: center;
}

.mentor-card-purple {
    max-width: 880px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 36px;
    background: linear-gradient(180deg, #160e30 0%, rgba(8, 6, 22, 0.5) 100%);
    border: 1px solid #7c3aed;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 0 32px rgba(124, 58, 237, 0.35), inset 0 0 50px rgba(124, 58, 237, 0.06);
    text-align: left;
}

.mentor-photo-purple {
    aspect-ratio: 3/4;
    border-radius: 14px;
    background:
        radial-gradient(ellipse at center, rgba(124, 58, 237, 0.22), transparent 65%),
        linear-gradient(135deg, #14102e 0%, #0a0820 100%);
    border: 2px solid #7c3aed;
    box-shadow: 0 0 24px rgba(124, 58, 237, 0.65), inset 0 0 30px rgba(124, 58, 237, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4b5fd;
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 13.5px;
    letter-spacing: 1.2px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mentor-photo-purple::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        repeating-linear-gradient(0deg, transparent, transparent 22px, rgba(124, 58, 237, 0.05) 22px, rgba(124, 58, 237, 0.05) 23px);
    pointer-events: none;
}

.mentor-photo-purple > span { position: relative; z-index: 1; }

.mentor-info-purple { padding-top: 4px; }

.mentor-name-purple {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(22px, 2.4vw, 28px);
    text-transform: uppercase;
    letter-spacing: 1.4px;
    color: #a855f7;
    margin-bottom: 22px;
    text-shadow: 0 0 14px rgba(124, 58, 237, 0.35);
    line-height: 1.2;
}

.mentor-bio-purple {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 0;
}

.mentor-bio-purple li {
    color: var(--gray-text);
    font-size: 14.5px;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.mentor-bio-purple li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #7c3aed;
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.7);
}

/* ---------- FAQ (variante roxa) ---------- */
.section-faq-purple {
    background: linear-gradient(180deg, var(--bg-darkest) 0%, #05071a 100%);
    padding: 100px 0;
}

.section-faq-purple .faq-header { text-align: center; margin-bottom: 50px; }
.section-faq-purple .faq-header .eyebrow { color: var(--white); opacity: 0.85; }
.section-faq-purple .faq-title { margin-bottom: 0; }

.section-faq-purple .faq-list {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.section-faq-purple .faq-item {
    background: linear-gradient(180deg, rgba(25, 18, 50, 0.6) 0%, rgba(8, 6, 22, 0.6) 100%);
    border: 1px solid rgba(124, 58, 237, 0.32);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.section-faq-purple .faq-item.open,
.section-faq-purple .faq-item:hover {
    border-color: #7c3aed;
    box-shadow: 0 0 22px rgba(124, 58, 237, 0.32);
}

.section-faq-purple .faq-q {
    cursor: pointer;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 18px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    line-height: 1.4;
    background: transparent;
    border: none;
    width: 100%;
    text-align: left;
}

.section-faq-purple .faq-num {
    color: #a855f7;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    min-width: 32px;
}

.section-faq-purple .faq-q-text { flex: 1; }

.section-faq-purple .faq-toggle {
    margin-left: auto;
    color: #a855f7;
    font-size: 22px;
    line-height: 1;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.section-faq-purple .faq-item.open .faq-toggle { transform: rotate(45deg); }

.section-faq-purple .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s ease;
    margin: 0;
    padding: 0 24px 0 74px;
    color: var(--gray-text);
    font-size: 15px;
    line-height: 1.7;
}

.section-faq-purple .faq-item.open .faq-answer {
    max-height: 800px;
    padding: 0 24px 22px 74px;
}

.section-faq-purple .faq-help { margin-top: 60px; text-align: center; }

.section-faq-purple .faq-help p {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    font-size: 13.5px;
    color: var(--white);
    max-width: 720px;
    margin: 0 auto 24px;
    line-height: 1.55;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    padding: 16px 36px;
    border-radius: 999px;
    box-shadow: 0 0 24px rgba(37, 211, 102, 0.55), 0 6px 20px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 38px rgba(37, 211, 102, 0.8);
}

.btn-whatsapp svg { width: 22px; height: 22px; }

@media (max-width: 768px) {
    .section-price-purple,
    .section-mentor-purple,
    .section-faq-purple { padding: 70px 0; }
    .price-card-purple { padding: 36px 22px; }
    .mentor-card-purple { grid-template-columns: 1fr; padding: 24px; gap: 24px; }
    .mentor-photo-purple { max-width: 220px; margin: 0 auto; aspect-ratio: 1/1; }
    .section-faq-purple .faq-q { font-size: 14.5px; padding: 16px 18px; gap: 12px; }
    .section-faq-purple .faq-answer { padding: 0 18px 0 56px; font-size: 14px; }
    .section-faq-purple .faq-item.open .faq-answer { padding: 0 18px 18px 56px; }
}
