@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&display=swap');

:root {
    --purple: #9C51E0;
    --teal: #00C2CB;
    --orange: #F9A825;
    --dark: #050515;
    --dark2: #0a0a28;
    --dark3: #0d0d35;
    --white: #FFFFFF;
    --grad: linear-gradient(135deg, #9C51E0, #F9A825);
    --grad-teal: linear-gradient(135deg, #00C2CB, #9C51E0);
    --smooth: all 0.4s cubic-bezier(0.2, 0, 0, 1);
    --pop: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html, body {
    height: 100%; width: 100%;
    font-family: 'Montserrat', sans-serif;
    background: var(--dark);
    color: var(--white);
    overflow: hidden;
    cursor: grab;
}
body:active { cursor: grabbing; }

/* ── FLOATING SPHERES ── */
.spheres-container {
    position: fixed; inset: 0;
    z-index: 0; pointer-events: none;
    overflow: hidden;
}
.sphere {
    position: absolute;
    border-radius: 50%;
    filter: blur(1px);
    opacity: 0;
    animation: sphereFloat linear infinite;
}
@keyframes sphereFloat {
    0%   { transform: translate(0, 0) scale(1); opacity: 0; }
    10%  { opacity: 0.7; }
    90%  { opacity: 0.7; }
    100% { transform: translate(var(--tx), var(--ty)) scale(0.3); opacity: 0; }
}

/* ── NAV ── */
nav {
    position: fixed; top: 0; left: 0; width: 100%;
    padding: 20px 40px;
    display: flex; align-items: center; justify-content: space-between;
    z-index: 100;
    background: linear-gradient(180deg, rgba(5,5,21,0.8) 0%, transparent 100%);
    backdrop-filter: blur(10px);
}
.nav-brand { display: flex; align-items: center; gap: 24px; }
.logo img { height: 36px; }

.nav-profile {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 16px 4px 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    transition: var(--smooth);
}
.nav-profile:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--purple);
    transform: translateY(-1px);
}
.profile-photo {
    width: 32px; height: 32px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--purple);
    box-shadow: 0 0 15px rgba(156, 81, 224, 0.3);
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}
.slide-indicators { display: flex; gap: 8px; }
.indicator {
    width: 36px; height: 36px; border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    background: transparent; color: rgba(255,255,255,0.4);
    font-size: 0.7rem; font-weight: 700;
    cursor: pointer; transition: var(--smooth);
    display: flex; align-items: center; justify-content: center;
}
.indicator.active {
    border-color: var(--purple);
    background: var(--purple);
    color: var(--white);
    box-shadow: 0 0 20px rgba(156,81,224,0.5);
}
.indicator:hover:not(.active) { border-color: rgba(255,255,255,0.5); color: var(--white); }
.nav-arrows { display: flex; gap: 10px; }
.nav-arrow {
    width: 42px; height: 42px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--white); font-size: 0.9rem;
    cursor: pointer; transition: var(--smooth);
    display: flex; align-items: center; justify-content: center;
}
.nav-arrow:hover { background: var(--purple); border-color: var(--purple); }

/* ── CAROUSEL ── */
.carousel-viewport {
    width: 100%; height: 100vh;
    overflow: hidden; position: relative; z-index: 1;
}
.carousel-track {
    display: flex; height: 100%;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
}
.slide {
    min-width: 100vw; height: 100vh;
    position: relative; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
}

/* Slide BG Variants */
.slide-dark   { background: linear-gradient(135deg, #080828 0%, #000 100%); }
.slide-deep   { background: linear-gradient(135deg, #0d0d35 0%, #060620 100%); }
.slide-darker { background: linear-gradient(135deg, #050515 0%, #0a0a28 100%); }
.slide-accent { background: linear-gradient(135deg, #0a0a28 0%, #080828 100%); }
.slide-deepest{ background: linear-gradient(135deg, #060620 0%, #030310 100%); }
.slide-final  { background: linear-gradient(135deg, #0B0B2A 0%, #000 100%); }

/* ── BG EFFECTS ── */
.slide-bg-effects { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.nebula {
    position: absolute; border-radius: 50%;
    filter: blur(120px); opacity: 0.3;
}
.nebula-1 { width: 600px; height: 600px; background: rgba(156,81,224,0.3); top: -20%; right: -10%; }
.nebula-2 { width: 500px; height: 500px; background: rgba(0,194,203,0.25); bottom: -15%; left: -5%; }
.nebula-3 { width: 700px; height: 700px; background: rgba(156,81,224,0.2); top: 10%; left: -15%; }
.nebula-4 { width: 400px; height: 400px; background: rgba(249,168,37,0.15); bottom: 10%; right: 5%; }
.nebula-5 { width: 350px; height: 350px; background: rgba(0,194,203,0.2); top: 60%; left: 10%; }
.star-field {
    position: absolute; inset: 0;
    background-image:
        radial-gradient(1px 1px at 10% 20%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 30% 65%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1.5px 1.5px at 50% 10%, rgba(255,255,255,0.7), transparent),
        radial-gradient(1px 1px at 70% 80%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1px 1px at 90% 40%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1.5px 1.5px at 15% 85%, rgba(255,255,255,0.5), transparent),
        radial-gradient(1px 1px at 80% 15%, rgba(255,255,255,0.4), transparent),
        radial-gradient(1px 1px at 45% 50%, rgba(255,255,255,0.3), transparent),
        radial-gradient(1.5px 1.5px at 60% 35%, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 25% 45%, rgba(255,255,255,0.4), transparent);
    animation: twinkle 4s ease-in-out infinite alternate;
}
@keyframes twinkle { 0% { opacity: 0.6; } 100% { opacity: 1; } }

/* ── WAVE DIVIDERS ── */
.wave-divider {
    position: absolute; bottom: 0; left: 0;
    width: 100%; height: 80px;
    z-index: 2;
}
.wave-flip { transform: scaleX(-1); }

/* ── SLIDE INNER ── */
.slide-inner {
    position: relative; z-index: 3;
    width: 100%; max-width: 1200px;
    padding: 100px 50px 50px;
    height: 100%; display: flex; align-items: center;
}

/* ── GRADIENT TEXT ── */
.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── HERO LAYOUT (Slide 1) ── */
.hero-layout { display: flex; align-items: center; gap: 60px; width: 100%; }
.hero-text { flex: 1.2; }
.hero-tag {
    font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; color: var(--teal); margin-bottom: 20px;
}
.hero-text h1 { font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1.1; margin-bottom: 24px; font-weight: 900; }
.hero-sub { font-size: 1.15rem; opacity: 0.7; line-height: 1.7; margin-bottom: 40px; max-width: 520px; }
.hero-visual { flex: 1; position: relative; display: flex; justify-content: center; }
.astro-glow {
    position: absolute; width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(156,81,224,0.35) 0%, transparent 70%);
    border-radius: 50%; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.astro-img { max-width: 480px; width: 100%; position: relative; z-index: 2; }

/* Animations */
.float-anim { animation: floatY 6s ease-in-out infinite; }
.float-anim-slow { animation: floatY 8s ease-in-out infinite; }
.pulse-anim { animation: pulse 3s ease-in-out infinite; }
@keyframes floatY { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-25px); } }
@keyframes pulse { 0%,100%{ opacity: 0.8; transform: scale(1); } 50%{ opacity: 1; transform: scale(1.05); } }

/* ── BUTTONS ── */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 16px 36px; border-radius: 50px;
    text-decoration: none; font-weight: 700; font-size: 0.95rem;
    transition: var(--smooth); border: none; cursor: pointer;
}
.btn-glow {
    background: var(--grad); color: var(--white);
    box-shadow: 0 8px 30px rgba(156,81,224,0.3);
}
.btn-glow:hover { transform: translateY(-3px); box-shadow: 0 15px 40px rgba(156,81,224,0.5); }
.btn-outline {
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); }
.btn-lg { padding: 20px 44px; font-size: 1.05rem; }

/* ── SPLIT LAYOUT (Slides 2, 4) ── */
.split-layout { display: flex; align-items: center; gap: 80px; width: 100%; }
.split-layout.reverse { flex-direction: row-reverse; }
.split-content { flex: 1; }
.split-visual { flex: 1; display: flex; justify-content: center; }

.section-tag {
    font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 3px; color: var(--teal); margin-bottom: 16px;
}
.split-content h2, .center-layout h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 20px; font-weight: 800; }
.section-desc { font-size: 1.05rem; opacity: 0.7; line-height: 1.8; margin-bottom: 30px; }

/* Glass Frame */
.glass-frame {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 30px; padding: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.glass-frame img { width: 100%; border-radius: 20px; }
.glow-teal { box-shadow: 0 20px 60px rgba(0,194,203,0.15); }

/* Stats */
.stats-row { display: flex; gap: 40px; margin-top: 10px; }
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 2.2rem; font-weight: 900; }
.stat-label { font-size: 0.8rem; opacity: 0.5; margin-top: 4px; text-transform: uppercase; letter-spacing: 1px; }

/* ── CENTER LAYOUT (Slides 3, 5) ── */
.center-layout { text-align: center; width: 100%; }

/* Solutions Grid */
.solutions-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 40px; text-align: left; }
.solution-card {
    padding: 36px; border-radius: 24px; position: relative;
    transition: var(--smooth);
}
.solution-card:hover { transform: translateY(-8px); border-color: rgba(156,81,224,0.3); }
.sol-icon {
    width: 52px; height: 52px; border-radius: 14px;
    background: rgba(156,81,224,0.15);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--purple); margin-bottom: 18px;
}
.solution-card h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 700; }
.solution-card p { font-size: 0.9rem; opacity: 0.6; line-height: 1.6; }
.sol-tag {
    display: inline-block; margin-top: 16px;
    padding: 4px 14px; border-radius: 20px;
    font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
    background: rgba(0,194,203,0.1); color: var(--teal);
    letter-spacing: 1px;
}

/* Glass Card base */
.glass-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(15px);
}

/* ── DIFFERENTIALS (Slide 4) ── */
.diff-list { display: flex; flex-direction: column; gap: 24px; }
.diff-item {
    display: flex; gap: 20px; align-items: flex-start;
    padding: 20px; border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--smooth);
}
.diff-item:hover { background: rgba(156,81,224,0.08); border-color: rgba(156,81,224,0.2); }
.diff-icon {
    min-width: 46px; height: 46px; border-radius: 12px;
    background: var(--grad); display: flex;
    align-items: center; justify-content: center;
    font-size: 1rem; color: var(--white);
}
.diff-item h4 { font-size: 1rem; margin-bottom: 6px; }
.diff-item p { font-size: 0.85rem; opacity: 0.6; line-height: 1.5; }

/* ── RESULTS (Slide 5) ── */
.results-showcase { display: flex; gap: 24px; margin: 40px 0 30px; justify-content: center; }
.result-card {
    padding: 40px 30px; border-radius: 24px; flex: 1; max-width: 260px;
    transition: var(--smooth);
}
.result-card:hover { transform: translateY(-8px); }
.result-number { font-size: 3rem; font-weight: 900; display: block; margin-bottom: 12px; }
.result-card p { font-size: 0.9rem; opacity: 0.6; line-height: 1.5; }

.testimonial {
    max-width: 700px; margin: 0 auto; padding: 40px;
    border-radius: 24px; position: relative; text-align: left;
}
.quote-icon { color: var(--purple); font-size: 1.5rem; opacity: 0.4; margin-bottom: 16px; }
.testimonial-text { font-size: 1.1rem; font-style: italic; opacity: 0.8; line-height: 1.7; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--grad); display: flex;
    align-items: center; justify-content: center; font-size: 1.1rem;
}
.testimonial-author strong { display: block; font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; opacity: 0.5; }

/* ── CTA (Slide 6) ── */
.cta-layout { display: flex; align-items: center; gap: 80px; width: 100%; }
.cta-content { flex: 1.5; }
.cta-content h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); }
.cta-visual { flex: 1; display: flex; justify-content: center; align-items: center; }
.cta-logo { max-width: 300px; opacity: 0.8; }
.cta-actions { display: flex; gap: 16px; margin: 36px 0; flex-wrap: wrap; }
.contact-info { display: flex; gap: 30px; margin-top: 10px; flex-wrap: wrap; }
.contact-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.9rem; opacity: 0.6;
}
.contact-item i { color: var(--teal); }

/* ── COVER SLIDE ── */
.cover-slide .hero-text h1 { font-size: clamp(3rem, 6vw, 5rem); }
.big-astro { transform: scale(1.4); filter: drop-shadow(0 0 50px rgba(156,81,224,0.4)); }
.presenter-info.prominent {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 60px;
    padding: 15px 25px 15px 15px;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(10px);
    border-radius: 80px;
    width: fit-content;
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: var(--smooth);
}
.presenter-info.prominent:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-5px);
}
.presenter-photo.rounded {
    width: 80px; height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--purple);
    box-shadow: 0 0 20px rgba(156,81,224,0.4);
}
.presenter-photo img { width: 100%; height: 100%; object-fit: cover; }
.presenter-text { display: flex; flex-direction: column; }
.presenter-name { font-weight: 800; font-size: 1.3rem; color: var(--white); margin-bottom: 2px; }
.presenter-label { font-size: 0.8rem; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 1.5px; }

/* ── DATA COMPONENTS ── */
.glass-light {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    transition: var(--smooth);
}
.glass-light:hover { background: rgba(255,255,255,0.08); border-color: var(--purple); }

/* Churn Patterns */
.pattern-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.pattern-list li {
    display: flex; align-items: center; gap: 12px;
    font-size: 0.95rem; padding: 12px 20px;
    border-radius: 12px; background: rgba(255,255,255,0.02);
}
.pattern-list li.done i { color: #4CAF50; }
.pattern-list li.missing { color: rgba(255, 255, 255, 0.6); }
.pattern-list li.missing i { color: #f44336; }

/* Modal 800x800 */
.glass-modal-800 {
    width: 100%; max-width: 600px; height: 600px; /* Ajustado para visualização, mantendo proporção */
    aspect-ratio: 1/1;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.modal-placeholder { text-align: center; opacity: 0.4; }
.modal-placeholder i { font-size: 3rem; margin-bottom: 15px; display: block; }

/* Insights */
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.insight-card { padding: 30px; text-align: left; }
.ins-header { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.ins-number {
    font-size: 0.8rem; font-weight: 900; color: var(--purple);
    padding: 4px 10px; border: 1px solid var(--purple); border-radius: 4px;
}
.insight-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.insight-card p { font-size: 0.9rem; opacity: 0.8; line-height: 1.6; }
.insight-card:hover { transform: translateY(-10px) scale(1.02); }

/* KPI Table */
.kpi-table-container { padding: 20px; overflow: hidden; }
.kpi-table { width: 100%; border-collapse: collapse; text-align: left; }
.kpi-table th { padding: 15px; font-size: 0.8rem; text-transform: uppercase; color: var(--teal); border-bottom: 1px solid rgba(255,255,255,0.1); }
.kpi-table td { padding: 15px; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.05); }

/* Reason Bars */
.reason-card { padding: 30px; }
.reason-item { margin: 20px 0; }
.reason-bar { height: 8px; background: var(--purple); border-radius: 10px; margin-bottom: 8px; box-shadow: 0 0 15px rgba(156,81,224,0.3); }
.reason-bar.highlight { background: var(--teal); box-shadow: 0 0 15px rgba(0,194,203,0.3); }
.critical-question { margin-top: 30px; font-style: italic; color: var(--orange); }

/* Essential Grid */
.essential-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr); gap: 20px; margin-top: 40px;
}
.ess-item {
    padding: 30px; display: flex; flex-direction: column; align-items: center; gap: 15px;
    text-align: center;
}
.ess-item i { font-size: 1.5rem; color: var(--purple); }

/* Implementation */
.quote-box { margin-top: 40px; padding: 30px; position: relative; border-left: 4px solid var(--purple); }
.quote-box i { position: absolute; top: 10px; left: 10px; opacity: 0.1; font-size: 2rem; }
.implementation-steps { display: flex; flex-direction: column; gap: 20px; }
.step-card { padding: 25px; text-align: left; }
.step-card i { font-size: 1.2rem; color: var(--teal); margin-bottom: 10px; }

/* ── GLASS WHITE — alto contraste para modais de texto ── */
.glass-white {
    background: rgba(255, 255, 255, 0.96) !important;
    border: none !important;
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.2);
    color: #0d0d35 !important;
    border-radius: 28px;
}
.glass-white h3, .glass-white h4 { color: #0d0d35; }
.glass-white p { color: #2a2a60; opacity: 1 !important; }
.glass-white .ins-number { color: var(--purple); border-color: var(--purple); }
.glass-white:hover { 
    transform: translateY(-10px) scale(1.02) !important; 
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6) !important; 
}
.glass-white .reason-bar { background: var(--purple); }
.glass-white .reason-bar.highlight { background: var(--teal); }
.glass-white .critical-question { color: #9C51E0; }

/* ── INFO PILL & TOOLTIP — hover interativo nas listas ── */
.pattern-list li { position: relative; }
.item-text { flex: 1; }
.info-pill {
    margin-left: auto;
    min-width: 24px; height: 24px;
    border-radius: 50%;
    background: rgba(156, 81, 224, 0.15);
    border: 1px solid rgba(156, 81, 224, 0.4);
    color: var(--purple);
    font-size: 0.75rem;
    font-weight: 900;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    position: relative;
    flex-shrink: 0;
    transition: all 0.25s;
    letter-spacing: -1px;
    user-select: none;
}
.info-pill:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.info-pill.critical {
    background: rgba(244, 67, 54, 0.12);
    border-color: rgba(244, 67, 54, 0.5);
    color: #f44336;
}
.info-pill.critical:hover { background: #f44336; color: #fff; border-color: #f44336; }

.info-tooltip {
    position: absolute;
    right: 0; bottom: calc(100% + 15px);
    width: 320px;
    background: #ffffff !important;
    color: #0d0d35 !important;
    font-size: 0.88rem;
    font-weight: 500;
    line-height: 1.65;
    padding: 22px 26px;
    border-radius: 22px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5), 0 10px 25px rgba(0,0,0,0.1);
    border: 1px solid rgba(156,81,224,0.1);
    pointer-events: none;
    opacity: 0;
    transform: scale(0.85) translateY(15px);
    transform-origin: bottom right;
    transition: opacity 0.35s var(--pop), transform 0.35s var(--pop);
    z-index: 10000 !important;
    text-align: left;
    white-space: normal;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}
.info-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px; right: 12px;
    width: 12px; height: 12px;
    background: #ffffff;
    transform: rotate(45deg);
    box-shadow: 3px 3px 6px rgba(0,0,0,0.06);
    border-right: 1px solid rgba(156,81,224,0.2);
    border-bottom: 1px solid rgba(156,81,224,0.2);
}
.pattern-list li:hover .info-tooltip,
.ess-row:hover .info-tooltip,
.kpi-card:hover .info-tooltip {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
    visibility: visible !important;
}
.info-pill:hover, .ess-row:hover, .kpi-card:hover { z-index: 10001 !important; }
.pattern-list li:hover { z-index: 10001 !important; position: relative; }
.ess-list { position: relative; z-index: 5; }
.ess-row:hover { z-index: 10001 !important; }
.kpi-card:hover { z-index: 10001 !important; }
.split-content { position: relative; }
.split-visual { position: relative; }
.impl-split .split-content { z-index: 10; }
.impl-split .split-visual { z-index: 1; }

/* Highlights dentro dos tooltips */
.info-tooltip strong, .info-tooltip b { color: #9C51E0; font-weight: 700; }
.info-tooltip em { color: #e53935; font-style: normal; font-weight: 700; }
.info-tooltip mark {
    background: rgba(156,81,224,0.12);
    color: #6d1fc7;
    border-radius: 4px;
    padding: 1px 4px;
    font-weight: 700;
}

/* ── QUOTE STRIP — citação compacta no slide 2 ── */
.quote-strip {
    margin-top: 20px;
    padding: 16px 20px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    border-left: 3px solid var(--purple);
    border-radius: 14px;
}
.quote-strip i { color: var(--purple); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; opacity: 0.6; }
.quote-strip p { font-size: 0.82rem; font-style: italic; line-height: 1.55; margin: 0; }

/* ── SLIDE 5 REESTRUTURADO — impl-split ── */
.impl-split { align-items: flex-start; gap: 60px; }
.impl-split .split-content h2 { font-size: clamp(1.7rem, 3vw, 2.5rem); margin-bottom: 10px; }
.section-desc-sm { font-size: 0.88rem; opacity: 0.6; line-height: 1.7; margin-bottom: 18px; }

.essential-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
.ess-item-compact {
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.83rem;
    font-weight: 600;
    border-radius: 14px;
}
.ess-item-compact i { font-size: 1rem; color: var(--purple); flex-shrink: 0; }

.action-section {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    min-width: 0;
}
.action-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--teal);
}
.step-card.glass-white {
    padding: 20px 22px;
    border-radius: 16px;
    width: 100%;
}
.step-card.glass-white i { font-size: 1.1rem; color: var(--purple); margin-bottom: 8px; display: block; }
.step-card.glass-white h4 { font-size: 0.95rem; margin-bottom: 6px; }
.step-card.glass-white p { font-size: 0.8rem; line-height: 1.55; }

.contact-strip { display: flex; flex-direction: column; gap: 12px; width: 100%; margin-top: 4px; }
.btn-contact {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 11px 24px; border-radius: 50px;
    background: var(--grad); color: #fff;
    text-decoration: none; font-weight: 700; font-size: 0.85rem;
    box-shadow: 0 6px 24px rgba(156, 81, 224, 0.35);
    transition: var(--smooth); width: fit-content;
}
.btn-contact:hover { transform: translateY(-2px); box-shadow: 0 10px 32px rgba(156, 81, 224, 0.5); }
.contact-items { display: flex; flex-wrap: wrap; gap: 14px; }
.contact-items span { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; opacity: 0.6; }
.contact-items span i { color: var(--teal); }

/* ── SLIDE ARQUIVADO — existe mas fora do fluxo de navegação ── */
.slide[data-archived="true"] { visibility: hidden; pointer-events: none; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .insights-grid, .essential-grid { grid-template-columns: 1fr; }
    .big-astro { transform: scale(1); }
    .glass-modal-800 { height: 400px; }
}

/* ── PROGRESS BAR ── */
.progress-bar {
    position: fixed; bottom: 0; left: 0;
    height: 3px; background: var(--grad);
    z-index: 100; transition: width 0.8s cubic-bezier(0.65,0,0.35,1);
    width: 16.66%;
}

/* ── KEYBOARD HINT ── */
.keyboard-hint {
    position: fixed; bottom: 20px; left: 50%;
    transform: translateX(-50%);
    padding: 10px 24px; border-radius: 30px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    font-size: 0.78rem; opacity: 0.5;
    z-index: 100; transition: opacity 0.5s;
    pointer-events: none;
}
.keyboard-hint.hidden { opacity: 0; }

/* ── SLIDE ENTRANCE ANIMATIONS ── */
.slide-inner > * { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(0.4,0,0.2,1); }
.slide.active .slide-inner > * { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE (Global) ── */
@media (max-width: 1024px) {
    .hero-layout, .split-layout, .split-layout.reverse, .cta-layout {
        flex-direction: column; text-align: center;
    }
    .hero-text, .split-content { text-align: center; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .solutions-grid { grid-template-columns: 1fr; }
    .results-showcase { flex-direction: column; align-items: center; }
    .stats-row { justify-content: center; }
    .slide-inner { padding: 100px 30px 30px; }
    .astro-img { max-width: 300px; }
    .contact-info { justify-content: center; }
    .cta-actions { justify-content: center; }
}
@media (max-width: 600px) {
    .slide-indicators { display: none; }
    nav { padding: 15px 20px; }
    .hero-text h1 { font-size: 2rem; }
}

/* ═══════════════════════════════════════════
   NOVOS COMPONENTES — Churn & CsOps Slides
   ═══════════════════════════════════════════ */

/* Cover Meta Badges */
.cover-meta-row { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0 30px; }
.cover-badge {
    display: inline-flex; align-items: center; gap: 7px;
    padding: 6px 14px; border-radius: 20px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7);
}
.cover-badge i { color: var(--teal); }
.alert-badge { border-color: rgba(244,67,54,0.4); background: rgba(244,67,54,0.08); color: #ff6b6b; }
.alert-badge i { color: #ff6b6b; }

/* gap-lg layout modifier */
.gap-lg { gap: 60px; }

/* Pattern Groups */
.pattern-group { display: flex; flex-direction: column; gap: 8px; }
.pattern-group-label {
    font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.5px; display: flex; align-items: center; gap: 8px;
    padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 4px;
}
.pattern-group-label.available { color: #4caf50; }
.pattern-group-label.missing { color: #f44336; }
.pattern-group-label i { font-size: 0.85rem; }
.pattern-list.compact { gap: 6px; }
.pattern-list.compact li {
    padding: 9px 14px; font-size: 0.85rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
}
.mt-16 { margin-top: 16px; }

/* Slide subtitle (center-layout) */
.slide-subtitle {
    font-size: 0.9rem; opacity: 0.6; max-width: 640px;
    margin: 0 auto 30px; line-height: 1.7;
}

/* 4-column insights grid */
.insights-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px; margin-top: 24px; text-align: left;
}
.insight-card.big { padding: 32px; border-radius: 32px; }
.ins-top { display: flex; flex-direction: column; gap: 4px; margin-bottom: 12px; }
.ins-tag {
    font-size: 0.68rem; font-weight: 800; text-transform: uppercase;
    letter-spacing: 1px; padding: 3px 8px; border-radius: 6px; width: fit-content;
}
.critical-tag { background: rgba(244,67,54,0.15); color: #f44336; }
.warn-tag     { background: rgba(249,168,37,0.15); color: #F9A825; }
.neutral-tag  { background: rgba(156,81,224,0.15); color: var(--purple); }
.ins-number-lg {
    font-size: 2.4rem; font-weight: 900; line-height: 1;
    background: var(--grad); -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; background-clip: text;
}
.ins-number-lg small { font-size: 1.2rem; }
.insight-card.big h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.insight-card.big p  { font-size: 0.8rem; line-height: 1.6; }
.insight-conclusion {
    margin-top: 14px; padding-top: 12px;
    border-top: 1px solid rgba(156,81,224,0.2);
    font-size: 0.75rem; font-weight: 700; color: var(--purple);
    display: flex; align-items: center; gap: 7px;
}

/* KPI Cards (Slide 4) */
.kpi-cards {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 12px; margin: 18px 0;
}
.kpi-card {
    padding: 22px 24px; border-radius: 28px;
    position: relative; cursor: default;
    transition: var(--smooth);
}
.kpi-card:hover { transform: translateY(-4px); }

.kpi-val { font-size: 1.8rem; font-weight: 900; line-height: 1; margin-bottom: 4px; }
.critical-val { color: #f44336; }
.warn-val { color: #F9A825; }
.kpi-name { font-size: 0.78rem; font-weight: 700; color: #0d0d35; }
.kpi-context { font-size: 0.7rem; color: rgba(13,13,53,0.55); margin-top: 2px; }
.kpi-conclusion {
    padding: 16px 20px; border-radius: 16px;
    display: flex; gap: 14px; align-items: flex-start;
}
.kpi-conclusion i { color: var(--purple); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.kpi-conclusion p { font-size: 0.82rem; line-height: 1.6; }

/* Reason Panel (Slide 4) */
.reason-panel { padding: 32px; border-radius: 32px; }
.reason-header { margin-bottom: 20px; }
.reason-header h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 5px; }
.reason-note { font-size: 0.72rem; color: #F9A825; font-weight: 600; }
/* Fact Grid (Slide 4 Right Side) */
.fact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.fact-card {
    background: rgba(255,255,255,0.4);
    border: 1px solid rgba(156,81,224,0.15);
    border-radius: 16px;
    padding: 16px;
    transition: var(--smooth);
}
.glass-white .fact-card:hover {
    background: rgba(156,81,224,0.05);
    border-color: rgba(156,81,224,0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}
.fact-val { font-size: 1.5rem; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.purple-val { color: var(--purple); }
.fact-title { font-size: 0.85rem; font-weight: 800; color: #0d0d35; margin-bottom: 6px; }
.fact-desc { font-size: 0.72rem; color: rgba(13,13,53,0.7); line-height: 1.5; }
.fact-desc strong { color: var(--purple); }

/* ESS List (Slide 5) */
.ess-list { display: flex; flex-direction: column; gap: 9px; margin-top: 16px; }
.ess-row {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 16px; border-radius: 14px;
    cursor: default; position: relative; transition: var(--smooth);
}
.ess-row:hover { background: rgba(255,255,255,0.05); }
.ess-row .info-tooltip {
    left: calc(100% + 20px);
    right: auto;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%) scale(0.8);
    transform-origin: left center;
    width: 280px;
}
/* Last items in list: flip tooltip to open upward instead of downward */
.ess-list .ess-row:nth-last-child(-n+2) .info-tooltip {
    left: calc(100% + 20px);
    top: auto;
    bottom: calc(100% + 12px);
    right: auto;
    transform: scale(0.85);
    transform-origin: bottom left;
}
.ess-list .ess-row:nth-last-child(-n+2):hover .info-tooltip {
    opacity: 1 !important;
    transform: scale(1) translateY(0) !important;
}
.ess-list .ess-row:nth-last-child(-n+2) .info-tooltip::after {
    bottom: -6px;
    left: 20px;
    right: auto;
    top: auto;
    transform: rotate(45deg);
    border-right: 1px solid rgba(156,81,224,0.2);
    border-bottom: 1px solid rgba(156,81,224,0.2);
    border-left: none;
    border-top: none;
}

.ess-row .info-tooltip::after {
    bottom: auto;
    top: 50%;
    left: -6px;
    right: auto;
    transform: translateY(-50%) rotate(45deg);
    border-right: none;
    border-bottom: 1px solid rgba(156,81,224,0.2);
    border-left: 1px solid rgba(156,81,224,0.2);
    border-top: none;
}

.ess-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(156,81,224,0.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ess-icon i { font-size: 1rem; color: var(--purple); }
.ess-body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.ess-body strong { font-size: 0.82rem; }
.ess-body span   { font-size: 0.73rem; opacity: 0.55; }
.ess-impact { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: 3px 9px; border-radius: 8px; white-space: nowrap; }
.ess-impact.high   { background: rgba(76,175,80,0.12); color: #4caf50; }
.ess-impact.medium { background: rgba(249,168,37,0.12); color: #F9A825; }

/* Action Column (Slide 5) */
.action-col { display: flex; flex-direction: column; gap: 16px; }
.action-card {
    padding: 22px; border-radius: 18px; flex: 1;
}
.action-icon-wrap {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(156,81,224,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 12px;
}
.action-icon-wrap i { font-size: 1.1rem; color: var(--purple); }
.action-icon-wrap.teal { background: rgba(0,194,203,0.12); }
.action-icon-wrap.teal i { color: var(--teal); }
.action-card h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 8px; }
.action-card p { font-size: 0.8rem; line-height: 1.65; }
.quote-final {
    padding: 16px 20px; border-radius: 14px;
    display: flex; gap: 12px; align-items: flex-start;
    border-left: 3px solid var(--purple) !important;
}
.quote-final i { color: var(--purple); opacity: 0.4; font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.quote-final p { font-size: 0.8rem; font-style: italic; line-height: 1.6; }

/* Info pill ok modifier */
.info-pill.ok {
    background: rgba(76,175,80,0.12);
    border-color: rgba(76,175,80,0.4);
    color: #4caf50;
}
.info-pill.ok:hover { background: #4caf50; color: #fff; border-color: #4caf50; }

/* glass-white for dark-bg text elements */
.glass-white h4 { color: #0d0d35; }
.glass-white strong { color: #0d0d35; }
.glass-white .kpi-name { color: #0d0d35; }

@media (max-width: 1200px) {
    .insights-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .kpi-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .insights-grid-4 { grid-template-columns: 1fr; }
    .cover-meta-row { flex-direction: column; }
    .ess-row[data-tooltip]:hover::after { left: 0; top: calc(100% + 8px); transform: none; }
}

/* ═══════════════════════════════════════════
   RADAR CHART — Integrado no Slide 2
   ═══════════════════════════════════════════ */

.radar-visual { min-width: 0; flex: 1.2; }

.radar-embed {
    width: 100%;
    height: 100%;
    border-radius: 22px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 540px;
}

/* Header */
.radar-header {
    display: flex; flex-direction: column; gap: 12px;
    padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.radar-top-row {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%; gap: 15px;
}
.radar-title-row { display: flex; align-items: center; gap: 10px; }
.radar-icon { color: var(--purple); font-size: 1.1rem; }
.radar-label { font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.9); }
.radar-badge {
    font-size: 0.65rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px;
    padding: 3px 10px; border-radius: 8px;
    background: rgba(156,81,224,0.15); color: var(--purple);
    border: 1px solid rgba(156,81,224,0.3);
}
.radar-actions { display: flex; gap: 8px; }
.rdr-btn {
    padding: 4px 12px; border-radius: 8px; font-size: 0.72rem; font-weight: 700;
    border: 1px solid rgba(156,81,224,0.4); background: rgba(156,81,224,0.12);
    color: var(--purple); cursor: pointer; transition: var(--smooth);
}
.rdr-btn:hover { background: var(--purple); color: #fff; }
.rdr-btn.alt { border-color: rgba(255,255,255,0.15); background: transparent; color: rgba(255,255,255,0.45); }
.rdr-btn.alt:hover { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.8); }

/* Body: filters + chart */
.radar-body { display: flex; gap: 20px; flex: 1; min-height: 0; padding-top: 15px; }

/* Filters panel — widened to prevent stat clipping */
.radar-filters {
    display: flex; flex-direction: column; gap: 15px;
    width: 180px; flex-shrink: 0; overflow-y: auto;
}
.rf-section { display: flex; flex-direction: column; gap: 4px; }
.rf-label {
    font-size: 0.65rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--teal); display: flex; align-items: center; gap: 5px;
}
.rf-label i { font-size: 0.6rem; }

/* Checkboxes */
.rdr-check {
    display: flex; align-items: center; gap: 6px;
    padding: 5px 8px; border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.02);
    cursor: pointer; transition: var(--smooth);
}
.rdr-check:hover { background: rgba(156,81,224,0.08); border-color: rgba(156,81,224,0.3); }
.rdr-check.on { background: rgba(156,81,224,0.12); border-color: rgba(156,81,224,0.4); }
.rdr-dot {
    width: 7px; height: 7px; border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.25); flex-shrink: 0;
    transition: var(--smooth);
}
.rdr-check.on .rdr-dot { background: var(--purple); border-color: var(--purple); }
.rdr-name { flex: 1; font-size: 0.7rem; color: rgba(255,255,255,0.6); line-height: 1.3; }
.rdr-check.on .rdr-name { color: rgba(255,255,255,0.9); font-weight: 600; }
.rdr-count {
    font-size: 0.65rem; color: rgba(255,255,255,0.3); font-weight: 600;
    background: rgba(255,255,255,0.05); padding: 1px 5px; border-radius: 5px;
}

/* Stats compactos */
.radar-stats {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px;
    padding-top: 15px; border-top: 1px solid rgba(255,255,255,0.1);
}
.rs-item { 
    display: flex; flex-direction: column; gap: 4px; 
    padding: 10px; border-radius: 12px; background: rgba(255,255,255,0.03);
    transition: var(--smooth);
}
.rs-item:hover { background: rgba(255,255,255,0.08); transform: translateY(-3px); }
.rs-label { font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.4); margin-bottom: 2px; }
.rs-val { font-size: 1rem; font-weight: 900; color: var(--white); white-space: nowrap; }
.rs-val.danger { color: #ff5252; text-shadow: 0 0 10px rgba(255,82,82,0.3); }

/* Radar Note */
.radar-note-box {
    margin: 0; padding: 8px 12px;
    background: rgba(156,81,224,0.08); border-radius: 10px;
    border: 1px solid rgba(156,81,224,0.15);
    font-size: 0.7rem; color: rgba(255,255,255,0.6);
    line-height: 1.4; display: flex; align-items: center; gap: 8px;
    width: 100%;
}
.radar-note-box i { color: var(--purple); font-size: 0.9rem; }

/* ── DECORATIVE MOON EFFECT ── */
.decorative-moon-wrap {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    mix-blend-mode: screen;
}
.moon-1 {
    top: 5%;
    left: -12%;
    width: 550px;
    height: 550px;
    opacity: 0.35;
    filter: blur(3px) drop-shadow(0 0 50px rgba(156,81,224,0.3));
}
.moon-2 {
    top: -5%;
    right: -10%;
    width: 350px;
    height: 350px;
    opacity: 0.25;
    filter: blur(5px) drop-shadow(0 0 30px rgba(0,194,203,0.2));
    transform: rotate(45deg);
}
.decorative-moon {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── GLASS WHITE SOLID — CTA PREMIUM ── */
.glass-white-solid {
    background: #ffffff !important;
    color: #0d0d35 !important;
    border-radius: 20px;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
    border: none !important;
}
.glass-white-solid:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.3);
    background: #f8f8f8 !important;
}
.wa-icon-box {
    width: 45px; height: 45px;
    background: #25D366;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1.4rem;
}
.wa-text-box { display: flex; flex-direction: column; }
.wa-text-box strong { color: #0d0d35 !important; font-size: 1rem; margin-bottom: 2px; }
.wa-text-box span { color: #555 !important; font-size: 0.85rem; opacity: 1 !important; }

/* ── FINAL SLIDE HIGHLIGHTS ── */
.highlight-cta {
    position: relative;
    z-index: 50;
    text-decoration: none !important;
}
.featured-conclusion-image {
    margin-top: 40px;
    width: 100%;
    max-width: 450px;
    position: relative;
    z-index: 5;
}
.featured-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    filter: brightness(1.1);
}

/* ── GLOBAL FLOATING MOONS ── */
.floating-moon {
    position: absolute;
    z-index: 1;
    pointer-events: none;
    opacity: 0.2;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.1));
    mix-blend-mode: screen;
}
.moon-sm { width: 100px; height: 100px; }
.moon-md { width: 200px; height: 200px; }
.moon-lg { width: 350px; height: 350px; }

/* Custom positions for global moons */
.pos-1 { top: 15%; left: 5%; opacity: 0.15; }
.pos-2 { bottom: 10%; right: 8%; opacity: 0.25; animation-delay: -2s; }
.pos-3 { top: 60%; right: -5%; opacity: 0.1; transform: rotate(45deg); }
.pos-4 { top: -5%; left: 40%; opacity: 0.15; animation-delay: -4s; }

.moon-featured {
    top: 50%;
    right: -10%;
    width: 600px;
    height: 600px;
    opacity: 0.45;
    filter: blur(1px) drop-shadow(0 0 60px rgba(156,81,224,0.3));
    transform: translateY(-50%) rotate(-15deg);
}

.slide-final .hero-text h1 { margin-bottom: 15px; }
.slide-final .hero-sub { margin-bottom: 25px; }

/* Canvas */
.radar-chart-wrap {
    flex: 1; min-height: 0; position: relative;
    display: flex; align-items: center; justify-content: center;
}
.radar-chart-wrap canvas { width: 100% !important; height: 100% !important; }

