/* Variables Globales */
:root {
    --primary-color: #6366f1;
    --secondary-color: #4f46e5;
    --accent-color: #06b6d4;
    --success-color: #10b981;
    --background-dark: #0f172a;
    --text-light: #f8fafc;
    --card-bg: rgba(255, 255, 255, 0.05);
    --glass-effect: rgba(255, 255, 255, 0.1);
}

/* Estilos Base */
body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    background-color: var(--background-dark) !important;
    color: #ffffff !important;
    overflow-x: hidden;
    padding-top: 56px;
}

/* Override de colores generales */
p, span, div {
    color: inherit;
}

/* Colores específicos para elementos */
.course-feature-item span,
.team-card p,
.vip-feature p,
.testimonial-content p {
    color: #98FF98 !important;
}

.course-card h3,
.team-card h3,
.vip-card h3,
.display-4.fw-bold,
.testimonial-author h4 {
    color: #00ffff !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Efectos de Partículas */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Navbar Premium */
.navbar {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
    z-index: 1000;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.navbar-brand img {
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar.scrolled .navbar-brand img {
    height: 35px;
}

/* Hero Section Mejorada */
.hero-section {
    min-height: 100vh;
    background: radial-gradient(circle at center, var(--background-dark) 0%, #000 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.hero-section::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    top: -50%;
    left: -50%;
    background: url('data:image/svg+xml,<svg viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none" stroke="%23ffffff10" stroke-width="0.25"/></svg>');
    background-size: 50px 50px;
    animation: gridMove 15s linear infinite;
    opacity: 0.1;
}

@keyframes gridMove {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Tarjetas de IA Premium */
.ai-tool-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    padding: 40px;
    transform-style: preserve-3d;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ai-features, .ai-demo, .chat-preview {
    margin-bottom: 20px;
}

.ai-tool-card .btn {
    margin-top: auto;
}

.ai-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 0%, rgba(255,255,255,0.03) 100%);
    z-index: 1;
}

.ai-tool-card .btn {
    margin-top: auto;
}

/* Features Grid Mejorado */
.ai-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin: 40px 0;
}

.ai-feature {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ai-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
                transparent 0%, 
                rgba(255,255,255,0.05) 50%, 
                transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.ai-feature:hover::before {
    transform: translateX(100%);
}

.ai-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
}

/* Chat Preview Premium */
.chat-preview {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 30px;
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.chat-message .message-content {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    overflow: hidden;
}

.chat-message.ai .message-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, 
                var(--primary-color), 
                var(--accent-color));
}

/* Botones Premium */
.btn {
    position: relative;
    padding: 15px 30px;
    border-radius: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    overflow: hidden;
    z-index: 2;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
                var(--primary-color), 
                var(--accent-color));
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
                var(--accent-color), 
                var(--primary-color));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn:hover::before {
    opacity: 0;
}

.btn:hover::after {
    opacity: 1;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

/* Animaciones Globales */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out forwards;
}

/* Media Queries */
@media (max-width: 768px) {
    .ai-features {
        grid-template-columns: 1fr;
    }
    
    .ai-tool-card {
        padding: 25px;
    }
    
    .ai-icon {
        width: 80px;
        height: 80px;
    }
}

/* Efectos de Scroll */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

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

/* Trading Chart Animation */
.trading-chart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0.1;
    pointer-events: none;
}

.chart-line {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: drawLine 3s ease-in-out forwards infinite;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Floating Elements */
.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Glow Effects */
.glow {
    position: relative;
}

.glow::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, 
                rgba(99, 102, 241, 0.1) 0%, 
                transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow:hover::after {
    opacity: 1;
}

/* Estilos generales */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 56px;
    color: #2c3e50;
}

/* Hero Section */
/*.hero-section {
    background: linear-gradient(rgb(0 0 0 / 15%), rgba(0, 0, 0, 0.8)), url('../img/crypto-bg.jpg');
    background-size: cover;
    background-position: center;
   height: 100vh;
    color: white;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(52, 152, 219, 0.8), rgba(155, 89, 182, 0.8));
    opacity: 0.8;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}*/

/* Stats */
.stat-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    margin: 10px;
}

.stat-box .counter {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
    background: linear-gradient(45deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    background-color: rgba(44, 62, 80, 0.98) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    background: linear-gradient(45deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Cards */
.card {
    border: none;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
    transition: all 0.3s ease;
    border-radius: 15px;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.pricing-card {
    text-align: center;
}

.pricing-card .card-header {
    padding: 30px 20px;
    border: none;
}

.price-tag {
    color: #2c3e50;
    margin: 20px 0;
}

.price-tag .display-4 {
    font-weight: bold;
    background: linear-gradient(45deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature Cards */
.feature-card {
    padding: 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

.feature-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #3498db, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,.1);
    margin-bottom: 30px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    margin-bottom: 15px;
}

.testimonial-author h4 {
    margin: 0;
    color: #2c3e50;
}

/* Feature List */
.feature-list {
    list-style: none;
    padding-left: 0;
}

.feature-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.feature-list li i {
    margin-right: 10px;
    color: #27ae60;
}

/* Video Container */
.video-container {
    position: relative;
    cursor: pointer;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(52, 152, 219, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 2rem;
}

.play-button:hover {
    background: rgba(41, 128, 185, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Botones */
.btn {
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #3498db, #9b59b6);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #2980b9, #8e44ad);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.btn-outline-light {
    border-width: 2px;
}

.btn-outline-light:hover {
    background: white;
    color: #3498db;
    transform: translateY(-2px);
}

/* Secciones */
section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.bg-gradient {
    background: linear-gradient(135deg, #f6f9fc 0%, #f1f4f8 100%);
}

/* Accordion */
.accordion-button:not(.collapsed) {
    background-color: #3498db;
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(52, 152, 219, 0.5);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

/* Profesor IA Section */
.bg-gradient-blue {
    background: linear-gradient(135deg, #1a2a6c, #b21f1f, #fdbb2d);
    color: white;
    position: relative;
    overflow: hidden;
}

.bg-gradient-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.bg-gradient-blue .container {
    position: relative;
    z-index: 2;
}

.ai-professor-image {
    position: relative;
    text-align: center;
}

.ai-professor-image img {
    width: 400px;
    height: 400px;
    object-fit: cover;
    border: 8px solid rgba(255, 255, 255, 0.1);
}

.ai-status {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(39, 174, 96, 0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.pulse {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #2ecc71;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

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

.feature-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-item i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #3498db;
}

.feature-item h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.chat-preview {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    backdrop-filter: blur(5px);
}

.chat-message {
    margin-bottom: 15px;
    padding: 15px;
    border-radius: 10px;
}

.chat-message.user {
    background: rgba(52, 152, 219, 0.3);
    margin-right: 20%;
}

.chat-message.ai {
    background: rgba(46, 204, 113, 0.3);
    margin-left: 20%;
}

.chat-message p {
    margin: 0;
}

.chat-message ol {
    margin: 10px 0;
    padding-left: 20px;
}

.chat-message li {
    margin-bottom: 5px;
}

/* Sección IA Tools */
.bg-gradient-ai {
    background: linear-gradient(135deg, #1a2a6c 0%, #b21f1f 50%, #fdbb2d 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-ai::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.bg-gradient-ai .container {
    position: relative;
    z-index: 2;
}

.ai-tool-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-tool-card:hover {
    transform: translateY(-10px);
}

.ai-tool-header {
    text-align: center;
    color: white;
    margin-bottom: 30px;
}

.ai-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-icon i {
    font-size: 2.5rem;
    color: white;
}

.ai-tool-header h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ai-tool-header .subtitle {
    color: #ecf0f1;
    font-size: 1.1rem;
}

.ai-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.ai-feature {
    display: flex;
    align-items: flex-start;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.ai-feature:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.ai-feature i {
    font-size: 1.5rem;
    color: #3498db;
    margin-right: 15px;
    margin-top: 5px;
}

.feature-text {
    color: white;
}

.feature-text h4 {
    margin: 0 0 5px;
    font-size: 1.1rem;
}

.feature-text p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

.ai-demo {
    position: relative;
    margin: 2rem 0;
    border-radius: 1rem;
    overflow: hidden;
}

.ai-demo img {
    width: 100%;
    transition: transform 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ai-demo:hover img {
    transform: scale(1.02);
}

.demo-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 2;
}

.demo-overlay .badge {
    margin-right: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.chat-preview {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 20px;
    margin: 30px 0;
}

.chat-message {
    margin-bottom: 15px;
}

.chat-message .message-content {
    padding: 15px;
    border-radius: 10px;
    max-width: 80%;
}

.chat-message.user .message-content {
    background: rgba(52, 152, 219, 0.3);
    margin-right: auto;
}

.chat-message.ai .message-content {
    background: rgba(46, 204, 113, 0.3);
    margin-left: auto;
}

.chat-message ul {
    margin: 10px 0;
    padding-left: 20px;
}

.chat-message li {
    margin-bottom: 5px;
    color: #ecf0f1;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
        padding: 100px 0;
    }
    
    section {
        padding: 60px 0;
    }
    
    .stat-box {
        margin: 5px;
    }
    
    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    .ai-professor-image img {
        width: 300px;
        height: 300px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .chat-message.user,
    .chat-message.ai {
        margin-left: 0;
        margin-right: 0;
    }

    .ai-tool-card {
        padding: 20px;
    }

    .ai-feature {
        padding: 10px;
    }

    .ai-feature i {
        font-size: 1.2rem;
    }

    .feature-text h4 {
        font-size: 1rem;
    }

    .feature-text p {
        font-size: 0.8rem;
    }
}

/* Team Section */
.team-section {
    background: var(--dark-gradient-2);
    position: relative;
    overflow: hidden;
}

.team-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-member-img {
    width: 150px;
    height: 150px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
}

.team-member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.team-member-social .btn {
    width: 40px;
    height: 40px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.team-member-social .btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

/* Courses Section */
.course-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    height: 100%;
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
}

.course-level {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.course-features {
    margin: 2rem 0;
}

.course-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.course-feature-item i {
    color: var(--primary);
    font-size: 1.2rem;
}

/* VIP Club Section */
.vip-section {
    background: var(--dark-gradient-3);
    position: relative;
}

.vip-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    position: relative;
}

.vip-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background: var(--primary);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.vip-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.vip-feature {
    text-align: center;
}

.vip-feature i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.vip-feature h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.vip-feature p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.testimonial-content {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .vip-features {
        grid-template-columns: 1fr;
    }
    
    .team-card,
    .course-card,
    .vip-card,
    .testimonial-card {
        margin-bottom: 2rem;
    }
}

/* Team Section */
.team-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-dark) 0%, #000 100%);
}

.team-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
}

.team-member-img {
    width: 120px;
    height: 120px;
    border-radius: 60px;
    margin: 0 auto 20px;
    position: relative;
    border: 3px solid var(--primary-color);
    padding: 3px;
}

.team-member-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.team-member-social {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.team-card:hover .team-member-social {
    opacity: 1;
    transform: translateY(0);
}

/* Courses Section */
.course-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px;
    height: 100%;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;

}

.course-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    border-radius: 30px 30px 100% 100%;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.course-level {
    position: absolute;
    top: 2px;
    right: 20px;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.course-features {
    margin: 30px 0;
    position: relative;
}

.course-feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.course-feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(10px);
}

.course-feature-item i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    margin-right: 15px;
    font-size: 1.2rem;
    color: white;
}

/* VIP Club Section */

   
.vip-section {
    background: radial-gradient(circle at center, var(--background-dark) 0%, #000 100%);
    position: relative;
    overflow: hidden;
}

.vip-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
  
}

.vip-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
                rgba(99, 102, 241, 0.15) 0%, 
                transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
}

.vip-card:hover::before {
    opacity: 1;
}

.vip-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.3);
}

.vip-features {
    margin: 30px 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.vip-feature {
    padding: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.vip-feature:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.vip-feature i {
    font-size: 2rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin: 20px 10px;
    position: relative;
   
}

.testimonial-content {
    position: relative;
    padding-left: 40px;
}

.testimonial-content::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 4rem;
    font-family: serif;
    color: var(--primary-color);
    opacity: 0.5;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 25px;
    margin-right: 15px;
}

.testimonial-author-info h4 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .vip-features {
        grid-template-columns: 1fr;
    }
    
    .course-card, .vip-card {
        padding: 20px;
    }
}

/* Text utilities */
.text-light-50 {
    color: rgba(255, 255, 255, 0.85) !important;
}

.text-gradient {

.course-feature-item span,
.vip-feature p,
.testimonial-content p {
    color: rgba(255, 255, 255, 0.85) !important;
}

.container {
    position: relative;
    z-index: 1;
}

.btn {
    position: relative;
    z-index: 2;
}

/* Text colors and legibility improvements */
.lead.text-light-50,
.course-card h3,
.course-feature-item span,
.vip-feature p,
.testimonial-content p,
.team-card p,
.course-card p {
    color: rgba(255, 255, 255, 0.85) !important;
}

/* Section headings */
.display-4,
.display-3,
.display-2 {
    color: #ffffff !important;
}

/* Course cards specific */
.course-card {
    color: rgba(255, 255, 255, 0.85);
}

.course-card h3 {
    color: #ffffff !important;
}

.course-feature-item {
    color: rgba(255, 255, 255, 0.85);
}

/* VIP features */
.vip-feature h4 {
    color: #ffffff !important;
}

/* Section headings enhancement */
.display-4.fw-bold {
    color: #00ffff !important; /* Cyan brillante */
    text-shadow: 
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #0fa;
    font-size: 3.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    font-weight: 800 !important;
    margin-bottom: 1.5rem !important;
    animation: flicker 1.5s infinite alternate;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 7px #fff,
            0 0 10px #fff,
            0 0 21px #fff,
            0 0 42px #0fa,
            0 0 82px #0fa,
            0 0 92px #0fa,
            0 0 102px #0fa,
            0 0 151px #0fa;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

.display-4.fw-bold::before {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    color: #ffffff;
    z-index: -1;
    opacity: 0.1;
    filter: blur(8px);
    transform: scale(1.05);
}

/* Ensure all section titles are visible */
h2.display-4.fw-bold {
    font-size: 3.2rem !important;
    margin-bottom: 1.5rem !important;
    text-transform: uppercase;
}

/* Course cards content enhancement */
.course-card h3 {
    color: #00ffff !important; /* Cyan brillante para títulos */
    font-weight: bold;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.course-card .course-feature-item span {
    color: #98FF98 !important; /* Mint green para el contenido */
    font-size: 1.1rem;
}

.course-feature-item i {
    color: #00ffff !important; /* Cyan brillante para iconos */
}

/* Títulos pequeños */
.titulos-pequenos {
    color: #00ffff !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* Course level badge enhancement */
.course-level {
    background: linear-gradient(135deg, #00ffff 0%, #00ccff 100%);
    color: #000 !important;
    font-weight: bold;
    text-shadow: none;
}

/* Títulos principales */
.display-4.fw-bold {
    color: #00ffff !important;
    text-shadow: 
        0 0 7px #fff,
        0 0 10px #fff,
        0 0 21px #0fa;
    font-size: 3.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Títulos de las tarjetas */
.course-card h3,
.team-card h3,
.vip-card h3 {
    color: #00ffff !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
    font-weight: bold;
}

/* Contenido de las tarjetas */
.course-feature-item span,
.team-card p,
.vip-feature p {
    color: #98FF98 !important;
    font-size: 1.1rem;
}

/* Iconos */
.course-feature-item i,
.vip-feature i {
    color: #00ffff !important;
    font-size: 1.2rem;
}

/* Testimoniales */
.testimonial-content p {
    color: #98FF98 !important;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author h4 {
    color: #00ffff !important;
}

/* Trading Dashboard Styles */
.dashboard-container {
    padding: 20px;
    height: 100%;
}

.dashboard-card {
    background: linear-gradient(145deg, rgba(18, 24, 38, 0.95) 0%, rgba(28, 34, 48, 0.95) 100%);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dashboard-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.price-section {
    margin-bottom: 30px;
}

.crypto-price h3 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.price-value {
    font-size: 2rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 5px;
}

.price-change {
    color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 500;
}

.chart-section {
    height: 200px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
    background: rgba(13, 17, 28, 0.6);
    border-radius: 15px;
}

.animated-chart {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 136, 0.1) 100%);
    clip-path: path('M0,100 Q25,80 50,90 T100,80 L100,100 L0,100');
    animation: chartMove 5s infinite ease-in-out;
}

@keyframes chartMove {
    0% {
        clip-path: path('M0,100 Q25,80 50,90 T100,80 L100,100 L0,100');
    }
    50% {
        clip-path: path('M0,100 Q25,90 50,80 T100,90 L100,100 L0,100');
    }
    100% {
        clip-path: path('M0,100 Q25,80 50,90 T100,80 L100,100 L0,100');
    }
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.stat-box {
    background: rgba(13, 17, 28, 0.6);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    background: rgba(13, 17, 28, 0.8);
}

.stat-box i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    display: block;
}

.stat-box span {
    color: #fff;
    font-size: 0.9rem;
    display: block;
}

/* Efecto de brillo */
.dashboard-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        125deg,
        transparent 0%,
        rgba(255, 255, 255, 0.05) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    border-radius: 20px;
}

.dashboard-card:hover::after {
    opacity: 1;
}

/* Social Links Styles */
.social-container {
    padding: 30px 0;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    margin-top: 30px;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

/* Estilos específicos para cada red social */
.social-icons a.instagram:hover {
    background: #E1306C;
    box-shadow: 0 0 20px rgba(225, 48, 108, 0.6);
}

.social-icons a.discord:hover {
    background: #7289DA;
    box-shadow: 0 0 20px rgba(114, 137, 218, 0.6);
}

.social-icons a.youtube:hover {
    background: #FF0000;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.social-icons a.tiktok:hover {
    background: #000000;
    border-color: #00f2ea;
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.6);
}

/* Colores de iconos sociales */
.icon-instagram {
    color: #E1306C;
}

.icon-discord {
    color: #7289DA;
}

.icon-youtube {
    color: #FF0000;
}

.icon-tiktok {
    color: #00f2ea;
}

/* Efectos hover para los iconos */
.social-icons a:hover .icon-instagram {
    color: #fff;
    text-shadow: 0 0 10px rgba(225, 48, 108, 0.8);
}

.social-icons a:hover .icon-discord {
    color: #fff;
    text-shadow: 0 0 10px rgba(114, 137, 218, 0.8);
}

.social-icons a:hover .icon-youtube {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.8);
}

.social-icons a:hover .icon-tiktok {
    color: #fff;
    text-shadow: 0 0 10px rgba(0, 242, 234, 0.8);
}

/* Estilos para iconos sociales */
.social-icons i.fa-instagram {
    color: #E1306C !important;
}

.social-icons i.fa-discord {
    color: #7289DA !important;
}

.social-icons i.fa-youtube {
    color: #FF0000 !important;
}

.social-icons i.fa-tiktok {
    color: #00f2ea !important;
}

.social-icons a {
    text-decoration: none;
    margin: 0 15px;
    transition: transform 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-5px);
}

.social-icons a:hover i {
    filter: drop-shadow(0 0 8px currentColor);
}

/* Estilos del Footer */
footer {
    background: linear-gradient(to bottom, #1a1a1a, #000) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

footer h4 {
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

footer h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--accent-color);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: var(--accent-color);
}

.footer-contact i {
    color: var(--accent-color);
}

.social-icons-footer {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.social-icons-footer a:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.2);
}

.social-icons-footer i {
    font-size: 16px;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 0;
}

/* Botón de inicio de sesión en la navbar */
.navbar .nav-link.login-btn {
    background: linear-gradient(45deg, #6366f1, #7c3aed);
    color: white;
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar .nav-link.login-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
    background: linear-gradient(45deg, #7c3aed, #6366f1);
}

.navbar .nav-link.login-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
