/* Aislando el slider */
.slider-3d-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #e4e8ec 100%);
    padding: 4rem 0;
}
.slider-3d-section * {
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

/* Configuraciones Globales */




/* Espacio y Profundidad Tridimensional */
.slider-3d-section .slider-perspective {
    perspective: 1400px;
    perspective-origin: 50% 50%;
}

.slider-3d-section .slider-track {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

/* Estructura de las Tarjetas */
.slider-3d-section .slide-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.9s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    backface-visibility: hidden;
    pointer-events: none;
}

/* Estados Dinámicos en Ejes 3D */
.slider-3d-section .slide-card.active {
    transform: translateX(0) scale(1) translateZ(0) rotateY(0deg);
    opacity: 1;
    z-index: 3;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.2);
    pointer-events: auto !important;
}

.slider-3d-section .slide-card.next {
    transform: translateX(55%) scale(0.85) translateZ(-120px) rotateY(-12deg);
    opacity: 0.7;
    z-index: 2;
}

.slider-3d-section .slide-card.prev {
    transform: translateX(-55%) scale(0.85) translateZ(-120px) rotateY(12deg);
    opacity: 0.7;
    z-index: 2;
}

.slider-3d-section .slide-card.hidden-slide {
    transform: translateX(0) scale(0.7) translateZ(-300px) rotateY(0deg);
    opacity: 0;
    z-index: 1;
    pointer-events: none;
}

/* Fondos y Capas Superpuestas */
.slider-3d-section .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.9s cubic-bezier(0.23, 1, 0.32, 1);
}

.slider-3d-section .slide-card.active .slide-bg {
    transform: scale(1.05);
}

.slider-3d-section .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.1) 100%);
}

/* Textos e Intersecciones de Contenido */
.slider-3d-section .slide-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 3rem;
}

.slider-3d-section .slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.slider-3d-section .slide-card.active .slide-title {
    opacity: 1;
    transform: translateY(0);
}

/* Botones de Acción Internos (CTA) */
.slider-3d-section .slide-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.4);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    width: fit-content;
}

.slide-card.active .slide-btn,
.slider-3d-section .slide-card.active a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
    pointer-events: auto !important;
    position: relative;
    z-index: 50;
}

.slider-3d-section .slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(99, 102, 241, 0.5);
}

.slider-3d-section .slide-btn:active {
    transform: translateY(0);
}

/* Flechas de Navegación del Entorno */
.slider-3d-section .nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    color: #4b5563;
}

.slider-3d-section .nav-btn:hover {
    background: #6366f1;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.slider-3d-section .nav-btn:active {
    transform: scale(0.95);
}

/* Indicadores de Puntos Inferiores */
.slider-3d-section .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    padding: 0;
}

.slider-3d-section .dot.active {
    background: #6366f1;
    width: 32px;
    border-radius: 5px;
}

.slider-3d-section .dot:hover:not(.active) {
    background: #9ca3af;
}

/* Formas Abstractas Flotantes de Fondo */
.slider-3d-section .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.08);
    pointer-events: none;
}

/* Adaptabilidad Responsiva (Mobile) */
@media (max-width: 768px) {
.slider-3d-section .slide-card.next {
        transform: translateX(40%) scale(0.8) translateZ(-100px) rotateY(-8deg);
    }
.slider-3d-section .slide-card.prev {
        transform: translateX(-40%) scale(0.8) translateZ(-100px) rotateY(8deg);
    }
.slider-3d-section .slide-title {
        font-size: 1.75rem;
    }
.slider-3d-section .slide-content {
        padding: 2rem;
    }
}