.muro_sensorial {
    width: 100%;
    height: 100%;
    background-color: #f2f1f0;
}

.muro_sensorial_container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
}

.muro_sensorial_header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    gap: 20px;
}

.muro_sensorial_header h2 {
    font-family: 'museo-sans', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #466075;
    margin: 0;
}

.muro_sensorial_header p {
    font-family: 'museo-sans', sans-serif;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #9da9bc;
    max-width: 800px;
    margin: 0;
}

.muro_sensorial_header .cotizar_btn {
    font-family: 'museo-sans', sans-serif;
    background: linear-gradient(135deg, #fe753b 0%, #ff8e5a 100%);
    color: white;
    border: none;
    padding: 12px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(254, 117, 59, 0.3);
    text-transform: uppercase;
    margin-top: 10px;
}

.muro_sensorial_header .cotizar_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(254, 117, 59, 0.4);
    background: linear-gradient(135deg, #ff8e5a 0%, #fe753b 100%);
}

.muro_sensorial_content {
    width: 100%;
    aspect-ratio: 1920 / 680;
    margin: 0 auto;
    background-image: url('/assets/images/products/img/sensory-wall-background.svg');
    background-size: 100% auto;
    background-position: center top;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.muro_video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: contain; /* Configuración base para mantener las proporciones del video original */
    z-index: 1;
}

.muro_lottie {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: auto;
    z-index: 2;
}
