 .collage {
            /*max-width: 1200px;*/
            width: 100%;
            grid-column: 1 / -1 !important;
        }

        .collage-container {
            position: relative;
            width: 100%;
            max-width: 900px;
            aspect-ratio: 1 / 1;
            margin: 0 auto;
            animation: fadeIn 1s ease;
        }

        .collage-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            grid-template-rows: repeat(6, 1fr);
            gap: 0;
            height: 100%;
            width: 100%;
            border: 3px solid white;
        }

        .image-box {
            position: relative;
            overflow: hidden;
            border-radius: 0;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: none;
            border: 3px solid white;
        }

        .image-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.5), rgba(118, 75, 162, 0.5));
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 1;
            pointer-events: none;
        }

        .image-box:hover {
            box-shadow: none;
        }

        .image-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: none;
        }

        .play-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 1;
            transition: all 0.4s ease;
            z-index: 2;
        }

        .image-box:hover .play-overlay {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1.1);
        }

        .play-overlay::after {
            content: '';
            width: 0;
            height: 0;
            border-left: 15px solid #003366;
            border-top: 10px solid transparent;
            border-bottom: 10px solid transparent;
            margin-left: 3px;
        }

        .image-label {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            color: white;
            padding: 25px 15px 15px;
            transform: translateY(100%);
            transition: none;
            z-index: 2;
            font-weight: 600;
            font-size: 1rem;
            pointer-events: none;
        }

        .image-number {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            color: #003366;
            width: 28px;
            height: 28px;
            border-radius: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.95rem;
            font-weight: bold;
            z-index: 3;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        .number-top-left {
            top: 15px;
            left: 15px;
        }

        .number-top-right {
            top: 15px;
            right: 15px;
        }

        .number-bottom-left {
            bottom: 15px;
            left: 15px;
        }

        .number-bottom-right {
            bottom: 15px;
            right: 15px;
        }

        .number-center-left {
            top: 50%;
            left: 15px;
            transform: translateY(-50%);
        }

        .box-1 {
            grid-column: 1 / 3;
            grid-row: 1 / 4;
        }

        .box-2 {
            grid-column: 3 / 7;
            grid-row: 1 / 4;
        }

        .box-3 {
            grid-column: 1 / 4;
            grid-row: 4 / 7;
        }

        .box-4 {
            grid-column: 4 / 7;
            grid-row: 4 / 7;
        }

        .center-circle {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 45%;
            aspect-ratio: 1 / 1;
            border-radius: 50%;
            border: 6px solid white;
            z-index: 10;
            box-shadow: none;
            animation: scaleIn 0.8s ease;
        }

        .center-circle:hover {
            transform: translate(-50%, -50%);
            box-shadow: none;
        }

        .center-circle .play-overlay {
            width: 60px;
            height: 60px;
        }

        .center-circle .play-overlay::after {
            border-left: 18px solid #003366;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
        }

        .center-circle .image-number {
            width: 28px;
            height: 28px;
            font-size: 0.95rem;
        }

        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            z-index: 1000;
            justify-content: center;
            align-items: center;
            animation: fadeIn 0.3s ease;
        }

        .modal.active {
            display: flex;
        }

        .modal-content {
            position: relative;
            width: 90%;
            max-width: 600px;
            animation: slideUp 0.4s ease;
        }

        .audio-player {
            background: white;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
            text-align: center;
        }

        .audio-info {
            margin-bottom: 30px;
        }

        .audio-info h2 {
            color: #003366;
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: bold;
            display: none;
        }

        .audio-info p {
            color: #003366;
            font-size: 1.8rem;
            margin-bottom: 10px;
            font-weight: bold;
        }

        #audioPlayer {
            width: 100%;
            outline: none;
            border-radius: 10px;
        }

        .close-btn {
            position: absolute;
            top: -50px;
            right: 0;
            background: white;
            color: #003366;
            border: none;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            font-size: 24px;
            cursor: pointer;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
            font-weight: bold;
        }

        .close-btn:hover {
            transform: rotate(90deg);
            background: #003366;
            color: white;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.5);
            }
            to {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1);
            }
        }

        @media (max-width: 1024px) {
            .collage-container {
                max-width: 700px;
            }
        }

        @media (max-width: 768px) {
            h1 {
                font-size: 1.8rem;
                margin-bottom: 30px;
            }

            .collage-container {
                max-width: 600px;
            }

            .center-circle {
                border: 6px solid white;
            }

            .center-circle .play-overlay {
                width: 50px;
                height: 50px;
            }

            .center-circle .play-overlay::after {
                border-left: 15px solid #003366;
                border-top: 10px solid transparent;
                border-bottom: 10px solid transparent;
            }

            .center-circle .image-number {
                width: 28px;
                height: 28px;
                font-size: 0.95rem;
            }

            .image-number {
                width: 28px;
                height: 28px;
                font-size: 0.95rem;
            }

            .modal-content {
                max-width: 500px;
            }

            .audio-player {
                padding: 30px 20px;
            }

            .audio-info h2 {
                font-size: 1.5rem;
            }

            .audio-info p {
                font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            h1 {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            .collage-container {
                max-width: 100%;
                padding: 0 10px;
            }

            .collage-grid {
                border: 3px solid white;
            }

            .center-circle {
                border: 6px solid white;
            }

            .play-overlay {
                width: 20px;
                height: 20px;
            }

            .play-overlay::after {
                border-left: 6px solid #003366;
                border-top: 4px solid transparent;
                border-bottom: 4px solid transparent;
                margin-left: 2px !important;
            }

            .center-circle .play-overlay {
                width: 20px;
                height: 20px;
            }

            .center-circle .play-overlay::after {
                border-left: 6px solid #003366;
                border-top: 4px solid transparent;
                border-bottom: 4px solid transparent;
            }

            .center-circle .image-number {
                width: 25px;
                height: 25px;
                font-size: 0.85rem;
            }

            .image-number {
                width: 25px;
                height: 25px;
                font-size: 0.85rem;
            }

            .number-top-left,
            .number-bottom-left,
            .number-center-left {
                left: 10px;
            }

            .number-top-right,
            .number-bottom-right {
                right: 10px;
            }

            .number-top-left,
            .number-top-right {
                top: 10px;
            }

            .number-bottom-left,
            .number-bottom-right {
                bottom: 10px;
            }

            .image-label {
                font-size: 0.9rem;
                padding: 20px 12px 12px;
            }

            .close-btn {
                top: -45px;
                width: 35px;
                height: 35px;
                font-size: 20px;
            }

            .modal-content {
                max-width: 90%;
            }

            .audio-player {
                padding: 25px 15px;
            }

            .audio-info h2 {
                font-size: 1.3rem;
            }

            .audio-info p {
                font-size: 0.9rem;
            }
        }


/* play siempre visible en moviles */

@media (max-width: 768px) {

    .play-overlay {
        opacity: 1;  /* Siempre visible */
    }
    
    .image-box:hover .play-overlay {
        transform: translate(-50%, -50%) scale(1.1);  /* Solo crece al tocar */
    }

    .box-2 .play-overlay {
    left: 75% !important;
}
}

@media (max-width: 480px) {

    .play-overlay {
        opacity: 1;  /* Siempre visible */
    }
    
    .image-box:hover .play-overlay {
        transform: translate(-50%, -50%) scale(1.1);  /* Solo crece al tocar */
    }
        .box-2 .play-overlay {
    left: 75% !important;
}
}