.compare-box{
            position: relative;
            width: 800px;
            max-width: 100%;
            margin: 40px auto;
            border-radius: 12px;
            overflow: hidden;
            user-select: none;
            touch-action: none;
        }
        .compare-box img{
            display: block;
            width: 100%;
            height: auto;
            pointer-events: none;
        }
        .img-bottom{
            display: block;
        }
        .img-top{
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            clip-path: inset(0 50% 0 0);
        }
        .divider{
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: #fff;
            box-shadow: 0 0 0 1px rgba(0,0,0,.2);
            cursor: ew-resize;
            z-index: 1;
        }
        .divider::after{
            content: "↔";
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: #fff;
            color: #000;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: 0 2px 10px rgba(0,0,0,.25);
        }
        .parrafos{
            padding-top: 2em;
        }
        .header-img{
            background-image: url("../img/teatro/historia.webp");
        }
        
        /* Para las dos primeras imágenes entre los textos */
        #corral, #clarin{
            width: 100%;
            height: auto; 
            object-fit: contain;
        }
        @media(min-width: 1000px){
            #corral, #clarin{
                max-height: 700px;
            }
        }