.custom-cursor {

    position: fixed;

    width: 40px;

    height: 40px;

    border: 2px solid var(--primary-yellow);

    border-radius: 50%;

    pointer-events: none;

    z-index: 9999;

    transition: all 0.3s ease;

    mix-blend-mode: difference;

    transform: translate(-50%, -50%);

}

.custom-cursor-dot {

    position: fixed;

    width: 8px;

    height: 8px;

    background: var(--primary-yellow);

    border-radius: 50%;

    pointer-events: none;

    z-index: 10000;

    transform: translate(-50%, -50%);

    transition: all 0.1s ease;

}

.custom-cursor.cursor-hover {

    width: 60px;

    height: 60px;

    background: rgba(255, 215, 0, 0.1);

    border-color: var(--primary-yellow);

}

.custom-cursor-dot.cursor-hover {

    width: 12px;

    height: 12px;

    background: var(--primary-yellow);

}

.program-card,

.training-card,

.value-card {

    position: relative;

    transition: all 0.3s ease;

    background: transparent !important;

}

.program-card::before,

.training-card::before,

.value-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background: #FFFFFF;

    border-radius: inherit;

    z-index: -1;

}

.program-card > *,

.training-card > *,

.value-card > * {

    position: relative;

    z-index: 1;

}

.card-glow {

    position: absolute;

    width: 150px;

    height: 150px;

    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);

    border-radius: 50%;

    pointer-events: none;

    transform: translate(-50%, -50%);

    filter: blur(20px);

    z-index: 0;

}

.shine-effect {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, 

        transparent 0%, 

        rgba(255, 255, 255, 0.3) 50%, 

        transparent 100%

    );

    pointer-events: none;

    transform: translateX(-100%);

}

.cta-button,

.button-primary,

.button-secondary {

    position: relative;

    overflow: hidden;

    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

}

.cta-button::before,

.button-primary::before {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    width: 0;

    height: 0;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.2);

    transform: translate(-50%, -50%);

    transition: width 0.6s ease, height 0.6s ease;

}

.cta-button:hover::before,

.button-primary:hover::before {

    width: 300px;

    height: 300px;

}

.hero-background {

    background: linear-gradient(135deg, var(--warm-cream) 0%, #F8FAFC 100%);

    position: relative;

    overflow: hidden;

}

.hero-background::before {

    content: '';

    position: absolute;

    top: -50%;

    left: -50%;

    width: 200%;

    height: 200%;

    background: radial-gradient(circle, rgba(255, 215, 0, 0.03) 0%, transparent 70%);

    animation: pulse 8s ease-in-out infinite;

    pointer-events: none;

}

@keyframes pulse {

    0%, 100% {

        transform: scale(1);

        opacity: 0.5;

    }

    50% {

        transform: scale(1.2);

        opacity: 0.3;

    }

}

.section-title,

.section-title-center,

.content-title {

    display: block;

}

@keyframes borderGlow {

    0% {

        background-position: 0% 50%;

    }

    50% {

        background-position: 100% 50%;

    }

    100% {

        background-position: 0% 50%;

    }

}

.stat-card {

    position: relative;

    overflow: hidden;

}

.stat-card::before {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 100%;

    height: 100%;

    background: linear-gradient(90deg, 

        transparent 0%, 

        rgba(255, 255, 255, 0.2) 50%, 

        transparent 100%

    );

    animation: shimmer 3s infinite;

}

@keyframes shimmer {

    0% {

        left: -100%;

    }

    100% {

        left: 100%;

    }

}

.nav-link {

    position: relative;

    overflow: hidden;

}





.image-wrapper,

.content-image {

    position: relative;

    overflow: hidden;

}

.image-wrapper::after,

.content-image::after {

    content: '';

    position: absolute;

    top: 0;

    left: -100%;

    width: 50%;

    height: 100%;

    background: linear-gradient(90deg, 

        transparent 0%, 

        rgba(255, 255, 255, 0.4) 50%, 

        transparent 100%

    );

    transform: skewX(-25deg);

}

.image-wrapper:hover::after,

.content-image:hover::after {

    animation: imageShine 1s ease;

}

@keyframes imageShine {

    0% {

        left: -100%;

    }

    100% {

        left: 200%;

    }

}

.footer {

    position: relative;

    overflow: hidden;

}

.footer::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    height: 1px;

    background: linear-gradient(90deg, 

        transparent 0%, 

        var(--primary-yellow) 50%, 

        transparent 100%

    );

    animation: footerLine 3s linear infinite;

}

@keyframes footerLine {

    0% {

        transform: translateX(-100%);

    }

    100% {

        transform: translateX(100%);

    }

}

.logo-img {

    transition: all 0.3s ease;

}

.logo-img:hover {

    transform: scale(1.05) rotate(2deg);

}

.social-links a {

    position: relative;

    overflow: hidden;

}

.social-links a::before {

    content: '';

    position: absolute;

    top: 50%;

    left: 50%;

    width: 0;

    height: 0;

    background: var(--primary-yellow);

    border-radius: 50%;

    transform: translate(-50%, -50%);

    transition: width 0.4s ease, height 0.4s ease;

    z-index: -1;

}

.social-links a:hover::before {

    width: 100%;

    height: 100%;

}

@media (prefers-reduced-motion: reduce) {

    .custom-cursor,

    .custom-cursor-dot,

    .card-glow,

    .shine-effect,

    *::before,

    *::after {

        animation: none !important;

        transition: none !important;

    }

}

.scroll-progress {

    position: fixed;

    top: 0;

    left: 0;

    width: 0;

    height: 3px;

    background: linear-gradient(90deg, var(--primary-yellow), var(--accent-coral));

    z-index: 9999;

    transition: width 0.1s ease;

}

body {

    cursor: auto;

}

a, button, input, textarea {

    cursor: pointer;

}