/* COLOR PALETTE VARIABLES */
:root {
    /* Primary Colors */
    --primary-900: #16002b;
    --primary-800: #2b0057;
    --primary-700: #410082;
    --primary-600: #5600ae;
    --primary-500: #6b00d9;
    --primary-400: #8235ff;
    --primary-300: #9e62ff;
    --primary-200: #b38bff;
    --primary-100: #d1b3ff;
    --primary-50: #f0e5ff;

    /* Neutral Colors */
    --neutral-900: #121212;
    --neutral-800: #1d1d1d;
    --neutral-700: #2a2a2a;
    --neutral-600: #383838;
    --neutral-500: #4a4a4a;
    --neutral-400: #707070;
    --neutral-300: #999999;
    --neutral-200: #c4b7da;
    --neutral-100: #dddddd;
    --neutral-50: #eeeeee;
    --neutral-0: #ffffff;

    /* Semantic Colors */
    --background: var(--neutral-900);
    --text: var(--neutral-50);
    --heading: var(--primary-200);
    --highlight: var(--primary-400);
    --button-bg: var(--primary-500);
    --button-hover: var(--primary-100);
    --button-text: var(--neutral-900);
    --button-text-hover: var(--primary-500);
    --mentor-name: var(--primary-400);
    --background-transparent: rgba(18, 18, 18, 0.973);
    --purple-transparent: rgba(75, 0, 130, 0.4);
    --purple-transparent-light: rgba(41, 2, 70, 0.644);
    --purple-transparent-xlight: rgba(130, 53, 255, 0.1);
}

/* RESET & BASE STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Quicksand", sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    background: linear-gradient(90deg,
            var(--background-transparent) 40%,
            var(--purple-transparent)),
        url("/images/bg-texture.jpg") no-repeat center;
    background-size: cover;
}

.section {
    max-width: 100vw;
    padding: 40px 20px;
}

/* Scroll Animations */
.section {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.section.visible {
    opacity: 1;
    transform: translateY(0);
}


h1, h2, h3, h4 {
    color: var(--heading);
    font-weight: 600;
    padding-top: 8px;
    padding-bottom: 8px;
}

h1 {
    font-size: 2.8rem;
}

h2 {
    font-size: 1.8rem;
    text-align: center;
}

h3 {
    text-align: center;
}

a {
    text-decoration: none;
}

.highlight {
    color: var(--highlight);
}

.btn,
.btn-primary {
    display: inline-block;
    background-color: var(--button-bg);
    color: var(--button-text);
    padding: 14px 28px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: background 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.btn:hover,
.btn-primary:hover {
    background-color: var(--button-hover);
    color: var(--button-text-hover);
}


/* 1. HERO SECTION */
.hero-section {
    background: linear-gradient(90deg,
            var(--background-transparent) 50%,
            var(--purple-transparent)),
        url("/images/bg-texture.jpg") no-repeat center;
    background-size: cover;
    padding: 25px 40px;
    color: var(--neutral-0);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 100vw;
    margin: 0 auto;
    padding: 15px 65px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.hero-text {
    flex: 1 1 280px;
    animation: fadeInLeft 1.2s ease forwards;
}

.hero-text h1 {
    font-size: 2.4rem;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--neutral-100);
}

.hero-text .highlight {
    transition: color 0.6s;
}

.hero-text .highlight:hover {
    color: var(--button-text-hover);
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--neutral-300);
    margin-bottom: 30px;
    max-width: 90%;
}

.hero-text .mentor-name {
    display: block;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 4px;
    color: var(--mentor-name);
}

.hero-image {
    flex: 1 1 100px;
    text-align: center;
    animation: fadeInRight 1.5s ease forwards;
}

.hero-image img {
    max-width: 80%;
    filter: drop-shadow(0 0 20px rgba(33, 1, 63, 0.685)) brightness(1.05);
}

/* 2. FEATURES CAROUSEL SECTION */
.features-section .container {
    max-width: 100vw;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.features-section h2 {
    color: var(--heading);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 10px rgba(130, 53, 255, 0.3);
}

.features-section h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 14%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(130, 53, 255, 0.5);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    padding: 20px 0;
    margin: 40px 0;
    height: 450px;
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
}

.carousel-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(90deg, var(--background) 0%, var(--background) 60%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.carousel-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 100%;
    background: linear-gradient(270deg, var(--background) 0%, var(--background) 30%, transparent 100%);
    z-index: 10;
    pointer-events: none;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    will-change: transform;
    gap: 30px;
    padding: 0 100px;
}

.carousel-card {
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    width: 300px;
    filter: blur(0px);
    opacity: 1;
}

.carousel-card:not(.active) {
    filter: blur(2px);
    opacity: 0.7;
}

.carousel-card.active {
    width: 600px;
    filter: blur(0px);
    opacity: 1;
    transform: scale(1.04);
}

.card-content {
    padding: 35px;
    background: linear-gradient(to top, var(--purple-transparent-light) 80%, transparent 100%);
    color: var(--neutral-0);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.carousel-card h3 {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--primary-300);
    text-align: start;
}

.carousel-card p {
    font-size: 1.1rem;
}


/* 3. TARGET AUDIENCE SECTION */
.target-audience {
    max-width: 55vw;
    margin: 0 auto;
    padding: 50px 40px;
    position: relative;
    background: linear-gradient(135deg, var(--purple-transparent-xlight), transparent 80%);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(130, 53, 255, 0.2);
    animation: float-animation 6s ease-in-out infinite;
}

.target-audience h2 {
    color: var(--heading);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 10px rgba(130, 53, 255, 0.3);
}

.target-audience h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 14%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(130, 53, 255, 0.5);
}

.bullet-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin-top: 20px;
}

.bullet-list li {
    position: relative;
    padding: 25px 30px 25px 75px;
    background: linear-gradient(135deg, rgba(130, 53, 255, 0.08), transparent);
    border-radius: 10px;
    border-left: 4px solid var(--primary-400);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(130, 53, 255, 0.1);
}

.bullet-list li::before {
    content: '✓';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--primary-400), var(--primary-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(130, 53, 255, 0.4);
    transition: transform 0.35s, box-shadow 0.35s;
}

.bullet-list li:hover {
    transform: scale(1.02);
    background: linear-gradient(135deg, rgba(130, 53, 255, 0.15), rgba(130, 53, 255, 0.05));
    box-shadow: 0 8px 25px rgba(130, 53, 255, 0.2), 0 0 0 1px rgba(130, 53, 255, 0.1);
}

.bullet-list li:hover::before {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(130, 53, 255, 0.6);
}


/* 4. WHAT YOU LEARN SECTION */
.what-you-learn {
    max-width: 80vw;
    margin: 45px auto;
}

.what-you-learn h2 {
    color: var(--heading);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 10px rgba(130, 53, 255, 0.3);
}

.what-you-learn h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 14%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(130, 53, 255, 0.5);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--neutral-200);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.learn-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
    margin-top: 50px;
}

.learn-card {
    position: relative;
    padding: 45px 45px;
    background: linear-gradient(135deg, rgba(130, 53, 255, 0.05), rgba(130, 53, 255, 0.02), transparent);
    border-radius: 20px;
    border: 1px solid rgba(130, 53, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: float-animation 8s ease-in-out infinite;
}

.learn-card:nth-child(2n) {
    animation-delay: -2s;
}

.learn-card:nth-child(3n) {
    animation-delay: -4s;
}

.learn-card:hover {
    animation-play-state: paused;
}

.learn-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s;
}

.learn-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(130, 53, 255, 0.3);
    box-shadow: 0 10px 40px rgba(130, 53, 255, 0.15), 0 0 0 0 rgba(130, 53, 255, 0.1);
}

.learn-card:hover::before {
    transform: scaleX(1);
}

.card-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 8px rgba(130, 53, 255, 0.3));
    transition: all 0.3s ease;
}

.learn-card:hover .card-icon {
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(0 6px 12px rgba(130, 53, 255, 0.5));
}

.learn-card p {
    font-size: 1rem;
    color: var(--neutral-200);
    font-weight: 500;
}


/* 5. UNIQUE MENTORSHIP SECTION */
.unique-mentorship {
    max-width: 1200px;
    margin: 0 auto;
}

.unique-mentorship h2 {
    color: var(--heading);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 10px rgba(130, 53, 255, 0.3);
}

.unique-mentorship h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 14%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(130, 53, 255, 0.5);
}

.unique-mentorship p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 25px;
    text-align: start;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.unique-mentorship p strong {
    color: var(--primary-300);
    font-weight: 700;
}

.unique-mentorship ul {
    list-style: none;
    padding: 0;
    margin: 35px auto;
    max-width: 800px;
}

.unique-mentorship li {
    position: relative;
    padding: 20px 25px 20px 70px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, rgba(130, 53, 255, 0.06), rgba(130, 53, 255, 0.02), transparent);
    border-radius: 15px;
    border: 1px solid rgba(130, 53, 255, 0.1);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.4s;
}

.unique-mentorship li::before {
    content: '✓';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(130, 53, 255, 0.3);
    transition: all 0.3s ease;
}

.unique-mentorship li:hover {
    border-color: rgba(130, 53, 255, 0.2);
    box-shadow: 0 8px 25px rgba(130, 53, 255, 0.15);
}

.unique-mentorship li:hover::before {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 18px rgba(130, 53, 255, 0.4);
}

.unique-mentorship .highlight-box {
    background: linear-gradient(135deg, rgba(130, 53, 255, 0.15), rgba(130, 53, 255, 0.05));
    border: 2px solid rgba(130, 53, 255, 0.3);
    border-radius: 20px;
    padding: 25px 35px;
    margin: 40px auto 0;
    max-width: 600px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-200);
    transition: all 0.4s;
}

.unique-mentorship .highlight-box:hover {
    transform: scale(1.02);
    border-color: rgba(130, 53, 255, 0.4);
    box-shadow: 0px 10px 25px rgba(130, 53, 255, 0.2);
}

.unique-mentorship-content-image {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

.unique-image-mentorship img {
    max-width: 70%;
    filter: drop-shadow(0 0 30px rgba(33, 1, 63, 0.438)) brightness(1.03);
}

/* 6. INVESTMENT SECTION */
.investment {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.investment::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(130, 53, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    z-index: -1;
}

.investment::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: 20%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(130, 53, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(30px);
    z-index: -1;
}

.investment h2 {
    color: var(--heading);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 10px rgba(130, 53, 255, 0.3);
}

.investment h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 14%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(130, 53, 255, 0.5);
}

.investment p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.investment p strong {
    color: var(--primary-300);
    font-weight: 700;
    font-size: 1.4rem;
    text-shadow: 0 0 20px rgba(130, 53, 255, 0.3);
}

.investment p:first-of-type strong {
    background: linear-gradient(135deg, var(--primary-300), var(--primary-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.investment p:first-of-type strong::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 1s ease-out 1.5s forwards;
}

.investment ul {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 700px;
}

.investment li {
    position: relative;
    padding: 20px 25px 20px 70px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, rgba(130, 53, 255, 0.08), rgba(130, 53, 255, 0.03), transparent);
    border-radius: 15px;
    border: 1px solid rgba(130, 53, 255, 0.15);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    text-align: left;
    transition: all 0.4s;
    overflow: hidden;
    font-weight: 500;
}

.investment li::before {
    content: '💎';
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, var(--primary-400), var(--primary-600));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(130, 53, 255, 0.3);
    transition: all 0.3s ease;
}

.investment li:hover {
    border-color: rgba(130, 53, 255, 0.25);
    box-shadow: 0 10px 30px rgba(130, 53, 255, 0.2);
}

.investment li:hover::before {
    transform: translateY(-50%) scale(1.1) rotate(10deg);
    box-shadow: 0 6px 20px rgba(130, 53, 255, 0.4);
}

.investment .cta-btn {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-400));
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 20px 40px;
    border-radius: 12px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(130, 53, 255, 0.3);
    border: 2px solid transparent;
    animation: pulse 3s ease-in-out infinite;
    transition: 
        transform 0.3s cubic-bezier(0.4,0,0.2,1),
        box-shadow 0.3s cubic-bezier(0.4,0,0.2,1),
        border-color 0.3s cubic-bezier(0.4,0,0.2,1);
}

.investment .cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(130, 53, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
    animation-play-state: paused;
}


/* 7. FINAL CTA SECTION */
.final-cta {
    max-width: 100vw;
    margin: 50px auto;
    padding: 50px 60px;
    text-align: center;
    backdrop-filter: blur(20px);
    overflow: hidden;
}

.final-cta h2 {
    color: var(--heading);
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    text-shadow: 0 2px 10px rgba(130, 53, 255, 0.3);
}

.final-cta h2::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 14%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-400), var(--primary-600));
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(130, 53, 255, 0.5);
}

.final-cta p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.final-cta .cta-btn.final {
    background: linear-gradient(135deg, var(--primary-500), var(--primary-400), var(--primary-600));
    background-size: 200% 200%;
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 25px 50px;
    border-radius: 12px;
    margin-top: 60px;
    border: 3px solid transparent;
    animation: gradient-shift 3s ease-in-out infinite, mega-pulse 4s ease-in-out infinite;
}

.final-cta .cta-btn.final:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 50px rgba(130, 53, 255, 0.6), 0 0 0 15px rgba(130, 53, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    animation-play-state: paused;
}

.urgency {
    position: absolute;
    top: -15px;
    right: -15px;
    background: linear-gradient(135deg, #ff4757, #ff6b7a);
    color: white;
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    animation: urgency-pulse 2s ease-in-out infinite;
}

.especialista {
    position: absolute;
    bottom: 220px;
    left: 380px;
    z-index: 10;
    transform: rotate(55deg);
    background: linear-gradient(135deg, #9747ff, #6e6bff);
    color: white;
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    animation: urgency-pulse 2s ease-in-out infinite;
}

.renomada {
    position: absolute;
    bottom: 620px;
    left: 140px;
    transform: rotate(55deg);
    background: linear-gradient(135deg, #47ffb2, #6b6eff);
    color: white;
    padding: 8px 15px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(255, 71, 87, 0.3);
    animation: urgency-pulse 2s ease-in-out infinite;
}

/* Tablet */
@media (max-width: 900px) {
    .especialista {
        display: none;
    }
    .renomada {
        display: none;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .especialista {
        display: block;
        bottom: 650px;
        left: 55vw;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    .renomada {
        display: block;
        bottom: 950px;
        left: 15vw;
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

/* Decorative elements */
.final-cta .decoration {
    position: absolute;
    font-size: 1.5rem;
    opacity: 0.6;
    animation: sparkle-float 3s ease-in-out infinite;
}

.final-cta .decoration:nth-child(1) {
    top: 5px;
    left: 5%;
    animation-delay: 0s;
}

.final-cta .decoration:nth-child(2) {
    top: 80px;
    right: 15%;
    animation-delay: 1s;
}

.final-cta .decoration:nth-child(3) {
    bottom: 40px;
    left: 20%;
    animation-delay: 2s;
}

.final-cta .decoration:nth-child(4) {
    bottom: 20px;
    right: 10%;
    animation-delay: 0.5s;
}    

/* KEYFRAMES & ANIMATIONS */
@keyframes sparkle-float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px) rotate(10deg) scale(1.2);
        opacity: 1;
    }
}

@keyframes star-twinkle {
    0%, 100% { 
        opacity: 0.8;
        transform: scale(1) rotate(0deg);
    }
    50% { 
        opacity: 1;
        transform: scale(1.2) rotate(10deg);
    }
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

@keyframes float-animation {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes float-emoji {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 8px 25px rgba(130, 53, 255, 0.3); }
    50% { box-shadow: 0 8px 25px rgba(130, 53, 255, 0.5), 0 0 0 10px rgba(130, 53, 255, 0.1); }
}

@keyframes pulse-glow {
    0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.7; }
    50% { transform: translateX(-50%) scale(1.2); opacity: 1; }
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes mega-pulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(130, 53, 255, 0.4), 0 0 0 0 rgba(130, 53, 255, 0.5); }
    50% { box-shadow: 0 10px 30px rgba(130, 53, 255, 0.6), 0 0 0 20px rgba(130, 53, 255, 0.2); }
}

@keyframes urgency-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1000px) {
    .carousel-container::before,
    .carousel-container::after { width: 150px; }
    .carousel-track { padding: 0 75px; }
    .carousel-card { width: 200px; }
    .carousel-card.active { width: 400px; }
    .learn-cards-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
}

@media (max-width: 900px) {
    .hero-content { flex-direction: column-reverse; text-align: center; }
    .hero-text h1 { font-size: 2rem; }
    .hero-text p { font-size: 1rem; margin: 0 auto 20px; }
    .hero-image img { max-width: 90%; }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    .section { padding: 40px 25px; }
    .features-section .section-title, .what-you-learn h2, .unique-mentorship h2, .investment h2, .final-cta h2 { font-size: 2.2rem; }
    .carousel-container { height: 300px; }
    .carousel-container::before, .carousel-container::after { width: 100px; }
    .carousel-track { padding: 0 50px; }
    .carousel-card { width: 150px; }
    .carousel-card.active { width: 300px; }
    .carousel-card h3 { font-size: 1.3rem; }
    .card-content { padding: 20px; }
    .learn-cards-grid { grid-template-columns: 1fr; }
    .investment p, .unique-mentorship p, .final-cta p, .subtitle { font-size: 1.1rem; }
    .investment li, .unique-mentorship li, .bullet-list li { padding: 18px 20px 18px 60px; font-size: 1rem; }
    .investment .cta-btn, .final-cta .cta-btn.final { font-size: 1.1rem; padding: 18px 35px; }
}

@media (max-width: 480px) {
    body { padding: 0; }
    .section { padding: 40px 20px; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    .hero-content { padding: 0 1px; }
    a.btn, .btn-primary { width: 100%; text-align: center; font-size: .9rem; }
    .features-section .section-title, .what-you-learn h2, .unique-mentorship h2, .investment h2, .final-cta h2 { font-size: 1.8rem; }
    .carousel-container { height: 380px; }
    .carousel-track { gap: 15px; }
    .carousel-card { width: 120px; }
    .carousel-card.active { width: 240px; }
    .card-content { padding: 10px; }
    .carousel-card h3 { font-size: .9rem; }
    .carousel-card p { font-size: .8rem; line-height: normal; }
    .learn-card p { font-size: 0.95rem; }
    .target-audience { max-width: 90vw; }
    .target-audience .bullet-list li::before { left: 10px; }
    .unique-mentorship p { padding: 0 22px; text-align: justify; }
    .unique-mentorship ul { margin: 0 0; }
    .unique-mentorship .bullet-list { gap: 0px; }
    .unique-mentorship .bullet-list li::before { left: 10px; }
    .unique-mentorship-content-image { flex-direction: column; align-items: center; }
    .unique-image-mentorship { display: flex; justify-content: center; }

    .investment p, .unique-mentorship p, .final-cta p, .subtitle { font-size: 1rem; }
    .investment .bullet-list { gap: 0px; }
    .investment .bullet-list li::before { left: 10px; }
    .investment li, .unique-mentorship li, .bullet-list li { font-size: 0.95rem; padding: 15px 18px 15px 55px; }

    .investment .cta-btn, .final-cta .cta-btn.final { font-size: 1rem; padding: 15px 25px; }

}