#localicacion {
            background-color: #e6e3e3;
        }

        .contenido-localizacion {
            max-width: 1176px;
            padding: 8px;
            margin-right: auto;
            margin-left: auto;
        }

        .contenido-localizacion h1 {
            font-size: 30px;
            color: #414042;
        }

        .contenido-localizacion p {
            font-size: 18px;
            line-height: 1.33em;
            color: #58595b;
            display: block;
        }

        .contenedor-principal {
            max-width: 1176px;
            padding: 8px;
            margin: 0 auto;
        }

        .layout-contenedor {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 20px;
        }

        /* Contenedor del mapa */
        .contenedor-mapa {
            max-width: 600px;
            width: 100%;
            margin: 80px 0 0 0;
            position: relative;
            height: 600px;
        }

        /* Mapa base de Perú - siempre visible */
        .mapa-base {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .mapa-base img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Regiones overlay - inicialmente ocultas */
        .region {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.3s ease;
            z-index: 2;
        }

        .region img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

        /* Estados de las regiones */
        .region.active {
            opacity: 1;
        }

        /* Panel lateral - Explorar Localizaciones */
        .explorar-locaciones {
            width: 280px;
            background-color: #fff;
            border: 1px solid #ccc;
            padding: 16px;
            border-radius: 8px;
            box-shadow: 0 1px 5px rgba(0,0,0,0.1);
            height: fit-content;
            margin-top: 80px;
        }

        .explorar-locaciones h3 {
            margin-bottom: 16px;
            font-size: 16px;
            border-bottom: 2px solid #f7b600;
            padding-bottom: 6px;
        }

        .botones-locacion {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .botones-locacion button {
            background-color: #f7f7f7;
            border: 1px solid #ccc;
            padding: 10px;
            font-size: 14px;
            cursor: pointer;
            border-radius: 20px;
            transition: all 0.3s ease;
        }

        .botones-locacion button:hover {
            background-color: #ffe082;
            border-color: #f7b600;
        }

        .botones-locacion button.active {
            background-color: #f7b600;
            border-color: #f7b600;
            color: white;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .layout-contenedor {
                flex-direction: column;
                align-items: center;
            }
            
            .contenedor-mapa {
                margin: 20px 0;
                max-width: 400px;
                height: 400px;
            }
            
            .explorar-locaciones {
                width: 100%;
                max-width: 400px;
                margin-top: 20px;
            }
        }