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

        /* ===== CARRUSEL SECCIÓN - RESPETANDO HEADER ===== */
        .speakers-section {
            position: relative;
            width: 100%;
            height: calc(100vh - 80px); /* Restar altura del header */
            margin-top: 80px; /* Espacio para el header */
            overflow: hidden;
            padding: 0;
            z-index: 1;
        }

        /* Asegurar que el header esté por encima */
        .header-section {
            position: relative;
            z-index: 1000 !important;
        }

        .speakers-carousel-container {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .speakers-carousel-track {
            width: 100%;
            height: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* CONFIGURACIÓN PRINCIPAL DE LAS CARDS */
        .speaker-card {
            position: absolute;
            width: 100%;
            height: 100%;
            border-radius: 0;
            overflow: hidden;
            transition: all 0.6s ease;
            cursor: pointer;
            /* POR DEFECTO: TODAS OCULTAS */
            opacity: 0;
            pointer-events: none;
            transform: translateX(100px) scale(0.8);
            z-index: 1;
        }

        /* IMAGEN PRINCIPAL - FORZAR VISIBILIDAD */
        .speaker-card img {
            width: 100% !important;
            height: 100% !important;
            object-fit: cover;
            object-position: center;
            display: block !important;
            opacity: 1 !important;
            transition: all 0.3s ease;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 1;
        }

        /* OVERLAY PARA MEJORAR LEGIBILIDAD */
        .speaker-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(0, 0, 0, 0.4);
            z-index: 2;
            opacity: 1;
        }

        .speaker-card:hover::before {
            background: rgba(0, 0, 0, 0.6);
        }

        .speaker-card:hover img {
            transform: scale(1.05);
        }

        /* INFORMACIÓN SUPERPUESTA */
        .speaker-info {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            color: white;
            z-index: 10;
            width: 90%;
            max-width: 700px;
            background: rgba(0, 0, 0, 0.8);
            padding: 30px;
            border-radius: 15px;
            backdrop-filter: blur(15px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .speaker-info h1 {
            color: white;
            font-size: 3.5rem;
            margin-bottom: 15px;
            font-weight: 900;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
            letter-spacing: 2px;
        }

        .speaker-info .subtitle {
            color: rgba(255, 255, 255, 0.95);
            font-size: 1.2rem;
            font-weight: 500;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            line-height: 1.4;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .inscripcion-btn {
            background: linear-gradient(45deg, #4CAF50, #45a049);
            color: white;
            padding: 12px 30px;
            border: none;
            border-radius: 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
        }

        .inscripcion-btn:hover {
            background: linear-gradient(45deg, #45a049, #3d8b40);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
        }

        /* ===== ESTADOS DE POSICIONAMIENTO ===== */
        
        /* CARD ACTIVA (CENTRO) */
        .speaker-card.active {
            opacity: 1 !important;
            pointer-events: auto;
            transform: translateX(0) scale(1) !important;
            z-index: 10;
        }

        /* CARD SIGUIENTE (DERECHA) */
        .speaker-card.next {
            opacity: 0.6 !important;
            pointer-events: auto;
            transform: translateX(80%) scale(0.9) !important;
            z-index: 5;
        }

        /* CARD ANTERIOR (IZQUIERDA) */
        .speaker-card.prev {
            opacity: 0.6 !important;
            pointer-events: auto;
            transform: translateX(-80%) scale(0.9) !important;
            z-index: 5;
        }

        /* CARDS OCULTAS */
        .speaker-card.hidden {
            opacity: 0 !important;
            pointer-events: none;
            transform: translateX(200px) scale(0.7) !important;
            z-index: 1;
        }

        /* ===== NAVEGACIÓN ===== */
        .speakers-nav-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(76, 175, 80, 0.9);
            color: white;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 100;
            transition: all 0.3s ease;
            font-size: 1.8rem;
            font-weight: bold;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .speakers-nav-arrow:hover {
            background: rgba(76, 175, 80, 1);
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
        }

        .speakers-nav-arrow.left {
            left: 30px;
        }

        .speakers-nav-arrow.right {
            right: 30px;
        }

        /* ===== INDICADORES ===== */
        .speaker-dots {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            justify-content: center;
            gap: 12px;
            z-index: 100;
        }

        .speaker-dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .speaker-dot.active {
            background: #4CAF50;
            border-color: rgba(255, 255, 255, 0.6);
            transform: scale(1.3);
            box-shadow: 0 0 10px rgba(76, 175, 80, 0.6);
        }

        .speaker-dot:hover {
            background: rgba(76, 175, 80, 0.7);
            transform: scale(1.1);
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .speaker-info {
                padding: 20px;
                max-width: 95%;
            }
            .speaker-info h1 {
                font-size: 2.5rem;
            }
            .speaker-info .subtitle {
                font-size: 1rem;
            }
            .inscripcion-btn {
                padding: 10px 25px;
                font-size: 0.9rem;
            }
            .speakers-nav-arrow {
                width: 50px;
                height: 50px;
                font-size: 1.5rem;
            }
            .speakers-nav-arrow.left {
                left: 20px;
            }
            .speakers-nav-arrow.right {
                right: 20px;
            }
        }

        @media (max-width: 480px) {
            .speaker-info h1 {
                font-size: 2rem;
            }
            .speaker-info .subtitle {
                font-size: 0.9rem;
            }
            .inscripcion-btn {
                padding: 8px 20px;
                font-size: 0.8rem;
            }
        }
